Analyzing repeated independent trials with two possible outcomes
If X represents the number of successes in n independent Bernoulli trials, then X follows a binomial distribution with parameters n and p, denoted as X ~ B(n, p) or X ~ Binomial(n, p).
Problem: A fair coin is tossed 5 times. Find the probability of getting exactly 3 heads.
Solution:
n = 5, r = 3, p = 1/2, q = 1/2
P(X = 3) = ⁵C₃ × (1/2)³ × (1/2)²
⁵C₃ = 5!/(3!2!) = 10
P(X = 3) = 10 × (1/8) × (1/4) = 10/32 = 5/16
Problem: A die is rolled 4 times. Success = getting an even number (p = 1/2). Find P(X ≤ 2).
Solution:
P(X ≤ 2) = P(X = 0) + P(X = 1) + P(X = 2)
P(X = 0) = ⁴C₀ × (1/2)⁰ × (1/2)⁴ = 1 × 1 × 1/16 = 1/16
P(X = 1) = ⁴C₁ × (1/2)¹ × (1/2)³ = 4 × 1/2 × 1/8 = 4/16
P(X = 2) = ⁴C₂ × (1/2)² × (1/2)² = 6 × 1/4 × 1/4 = 6/16
P(X ≤ 2) = 1/16 + 4/16 + 6/16 = 11/16
Problem: A student has 70% probability of answering a question correctly. Find the probability of getting exactly 4 correct in 5 questions.
Solution:
n = 5, r = 4, p = 0.7, q = 0.3
P(X = 4) = ⁵C₄ × (0.7)⁴ × (0.3)¹
⁵C₄ = 5
P(X = 4) = 5 × 0.2401 × 0.3 = 5 × 0.07203 = 0.36015 ≈ 0.360
Problem: If a coin is tossed 10 times, find the mean and variance.
Solution:
n = 10, p = 1/2, q = 1/2
Mean (μ) = np = 10 × 1/2 = 5
Variance (σ²) = npq = 10 × 1/2 × 1/2 = 2.5
Standard Deviation (σ) = √2.5 ≈ 1.58
Q: Define Bernoulli trials and conditions
Q: Apply binomial formula for specific values
Q: Calculate mean and variance
Common Mistake: Forgetting to use ⁿCᵣ in calculations
Helpful Tip: Always verify that p + q = 1
Quick Calculation: Use binomial coefficient table for speed in exams
Common Pattern: "At least" and "at most" questions require careful summation
Speed Technique: P(X = r) = (n choose r) × p^r × q^(n-r) - memorize this
Integration: Binomial distribution connects to normal distribution for large n