Given Data
First Scenario: A fair coin is tossed 3 times. We need the probability of getting exactly 2 heads (faceup).
Total possible outcomes = 2^3 = 8
Favorable outcomes (getting 2 heads) = 3 (HHT, HTH, THH)
Probability = 3/8
Second Scenario: A fair coin is tossed n times (where n > 3). We need the probability of getting exactly m heads to equal 3/8.
Formula Setup
The probability of getting exactly m heads in n flips is given by the binomial formula:
Probability = nCm / (2^n)
Where nCm is the combination formula representing "n choose m":
nCm = n! / [m! * (n - m)!]
Setting the two probabilities equal:
nCm / (2^n) = 3/8
Rearranging to solve for nCm:
nCm = 3 * (2^n) / 8
nCm = 3 * 2^(n - 3)
Testing Options for n (where n > 3)
Since n must be greater than 3, we test the given options for n: 4, 5, and 6.
Option 1: Try n = 4
4Cm = 3 * 2^(4 - 3)
4Cm = 3 * 2^1 = 6
Now we test values for m to see which gives 4Cm = 6:
4C0 = 1
4C1 = 4
4C2 = 6
4C3 = 4
4C4 = 1
For m = 2, 4C2 = 6. This works!
Option 2: Try n = 5
5Cm = 3 * 2^(5 - 3)
5Cm = 3 * 4 = 12
Possible values for 5Cm are 1, 5, 10, 10, 5, 1. None of these equal 12. (Invalid)
Option 3: Try n = 6
6Cm = 3 * 2^(6 - 3)
6Cm = 3 * 8 = 24
Possible values for 6Cm are 1, 6, 15, 20, 15, 6, 1. None of these equal 24. (Invalid)
Final Answer
m = 2
n = 4