Question
A die is thrown 5 times. If getting a number greater than 4 is considered a “success,” find the probability of getting exactly 3 successes.
(CBSE 2023)
Solution — Step by Step
A “success” is getting 5 or 6 on a die. So:
p=P(success)=62=31
q=P(failure)=1−31=32
Number of trials: n=5, Required successes: k=3.
P(X=k)=(kn)pkqn−k
P(X=3)=(35)(31)3(32)2
(35)=10
(31)3=271
(32)2=94
P(X=3)=10×271×94=10×2434=24340
The answer is 24340 ≈0.165.
Why This Works
Each die throw is independent, with the same probability of success (1/3). This makes it a sequence of Bernoulli trials — repeated independent experiments with exactly two outcomes (success/failure) and constant probability.
The binomial formula counts it this way: (35) is the number of ways to choose which 3 of the 5 throws are successes. For each such arrangement, the probability is p3q2 (3 successes at 1/3 each, 2 failures at 2/3 each). Multiplying gives the total probability.
The term 24340 means roughly a 16.5% chance — getting 3 out of 5 when your success probability is only 1/3 is not very likely, which matches our intuition.
Alternative Method — Check with complementary approach
We can verify by computing ∑k=05P(X=k)=1:
P(0)=24332, P(1)=24380, P(2)=24380, P(3)=24340, P(4)=24310, P(5)=2431
Sum: 24332+80+80+40+10+1=243243=1 ✓
For CBSE and JEE, always simplify the fraction — don’t leave it as 10×4/243. Also, a common question variation: “find the probability of at least 3 successes.” Then you’d compute P(3)+P(4)+P(5)=24340+10+1=24351=8117. Know the difference between “exactly” and “at least.”
Common Mistake
Students sometimes define p=4/6 instead of 2/6, misreading “greater than 4” as “4 or greater.” The phrase “greater than 4” means strictly greater — so only 5 and 6 qualify, giving p=2/6=1/3. “Greater than or equal to 4” would include 4, 5, 6, giving p=3/6=1/2. Read the problem statement carefully.