gmatbd
I did not quite understand the solution. I need help in understanding the mid part of solution where P (two heads and two tails) is mentioned. Why are we squaring the X and (1-x)? In case of P (one tail and one head) the X and (1-x) are not squared. Thanks
Let's break it down simply and clearly.
First, a quick recap of what x means:
- x = probability of getting heads
- 1 - x = probability of getting tails
1. Why is P(one head and one tail) = \(2 * x * (1 - x)\)?When tossing the coin
twice, you get one head and one tail in two different ways:
- First toss heads, second toss tails - probability = \(x * (1 - x)\)
- First toss tails, second toss heads - probability = \((1 - x) * x\)
So total = \(x * (1 - x) + (1 - x) * x = 2 * x * (1 - x)\)
2. Why is P(two heads and two tails) = \(6 * x^2 * (1 - x)^2\)?Now we toss the coin
four times and want exactly two heads and two tails.
We need:
- Two of the tosses to be heads: \(x * x = x^2\)
- The other two tosses to be tails: \((1 - x) * (1 - x) = (1 - x)^2\)
And we must multiply by how many different ways we can arrange two H's and two T's in four tosses:
- This is a combinatorics problem: number of ways = \(\frac{4!}{2! * 2!} = 6\)
So total probability = \(6 * x^2 * (1 - x)^2 = 6 * (x * (1 - x))^2\)
So why is it squared now?Because we need 2 heads and 2 tails, so:
- Probability of heads happening twice: \(x * x = x^2\)
- Probability of tails happening twice: \((1 - x) * (1 - x) = (1 - x)^2\)
When you multiply: \(x^2 * (1 - x)^2 = (x * (1 - x))^2\)
That's why the expression is squared for the 4-toss scenario, but not for the 2-toss one.