Advanced Probability - Complete Guide for 9th Grade
Introduction: What is Probability?
Probability is the mathematics of chance and uncertainty. It helps us answer questions like:
What are the chances it will rain tomorrow?
If I flip a coin 10 times, how many heads will I get?
What's the probability of getting all red balls from a bag?
Basic Formula:
Probability = (Number of favorable outcomes) / (Total number of possible outcomes)
Always remember: Probability values range from 0 (impossible) to 1 (certain).
Part 1: Conditional Probability & Bayes' Theorem
What is Conditional Probability?
Conditional probability is the probability of an event happening given that another event has already happened. We write
this as P(A|B), which reads as "probability of A given B."
Formula:
P(A|B) = P(A and B) / P(B)
Real-Life Example
Imagine you have a deck of cards.
What's the probability of drawing a King? 4/52 = 1/13
But what if I tell you the card is red? Now you know it's one of 26 red cards.
Probability of King given it's red: 2/26 = 1/13 (since there are only 2 red Kings)
Practice Problem
Problem: In a class of 40 students, 25 play cricket, 20 play football, and 10 play both. If a student plays cricket, what's the
probability they also play football?
Solution:
Event A = plays football
Event B = plays cricket
P(A and B) = 10/40 = 1/4
P(B) = 25/40 = 5/8
P(A|B) = (1/4) / (5/8) = (1/4) × (8/5) = 2/5
Answer: 2/5 or 0.4 or 40%
Bayes' Theorem
Bayes' Theorem helps us reverse conditional probabilities. It's incredibly powerful!
Formula:
P(A|B) = [P(B|A) × P(A)] / P(B)
Bayes' Theorem Example
Problem: A disease affects 1% of the population. A test is 95% accurate (detects disease 95% of the time when present, and
correctly shows negative 95% of the time when absent). If you test positive, what's the actual probability you have the
disease?
Solution: Let D = has disease, T = tests positive
Given:
P(D) = 0.01 (1% have disease)
P(T|D) = 0.95 (test detects disease)
P(T|not D) = 0.05 (false positive rate)
First, find P(T):
P(T) = P(T|D) × P(D) + P(T|not D) × P(not D)
P(T) = 0.95 × 0.01 + 0.05 × 0.99
P(T) = 0.0095 + 0.0495 = 0.059
Now use Bayes' Theorem:
P(D|T) = [P(T|D) × P(D)] / P(T)
P(D|T) = [0.95 × 0.01] / 0.059
P(D|T) ≈ 0.161
Answer: Only about 16%! Even with a positive test, there's only a 16% chance you actually have the disease. This shows
why false positives matter.
Part 2: Probability Distributions
A probability distribution tells us how likely different outcomes are for a random variable.
2.1 Binomial Distribution
When to use: When you have a fixed number of independent trials, each with two possible outcomes (success or failure).
Key characteristics:
Fixed number of trials (n)
Each trial has only two outcomes
Probability of success (p) stays the same
Trials are independent
Formula:
P(X = k) = C(n,k) × p^k × (1-p)^(n-k)
Where:
- n = number of trials
- k = number of successes we want
- p = probability of success on each trial
- C(n,k) = combination formula = n! / [k!(n-k)!]
Mean (Expected Value): μ = n × p
Standard Deviation: σ = √[n × p × (1-p)]
Binomial Example 1: Coin Flips
Problem: You flip a fair coin 10 times. What's the probability of getting exactly 6 heads?
Solution:
n = 10 (trials)
k = 6 (successes we want)
p = 0.5 (probability of heads)
P(X = 6) = C(10,6) × (0.5)^6 × (0.5)^4
C(10,6) = 10!/(6!×4!) = 210
P(X = 6) = 210 × 0.015625 × 0.0625
P(X = 6) = 0.205
Answer: About 20.5% chance
Expected number of heads: μ = 10 × 0.5 = 5 heads
Binomial Example 2: Multiple Choice Test
Problem: A test has 20 multiple-choice questions with 4 options each. If you guess randomly, what's the probability of
getting exactly 5 correct?
Solution:
n = 20
k=5
p = 0.25 (1 out of 4 options)
P(X = 5) = C(20,5) × (0.25)^5 × (0.75)^15
C(20,5) = 15,504
P(X = 5) = 15,504 × 0.000976 × 0.0134
P(X = 5) ≈ 0.202
Answer: About 20.2% chance
Expected correct answers: μ = 20 × 0.25 = 5 questions
2.2 Poisson Distribution
When to use: When counting how many times an event occurs in a fixed interval of time or space, when events happen
independently at a constant average rate.
Key characteristics:
Events occur independently
Average rate (λ) is constant
Two events cannot occur at exactly the same instant
Formula:
P(X = k) = (λ^k × e^(-λ)) / k!
Where:
- λ = average number of events in the interval
- k = actual number of events
- e ≈ 2.71828
Mean: μ = λ
Standard Deviation: σ = √λ
Poisson Example 1: Phone Calls
Problem: A call center receives an average of 3 calls per hour. What's the probability of receiving exactly 5 calls in the next
hour?
Solution:
λ=3
k=5
P(X = 5) = (3^5 × e^(-3)) / 5!
P(X = 5) = (243 × 0.0498) / 120
P(X = 5) ≈ 0.101
Answer: About 10.1% chance
Poisson Example 2: Typos in a Book
Problem: A book averages 2 typos per 10 pages. What's the probability of finding exactly 0 typos in a 10-page chapter?
Solution:
λ=2
k=0
P(X = 0) = (2^0 × e^(-2)) / 0!
P(X = 0) = (1 × 0.1353) / 1
P(X = 0) ≈ 0.135
Answer: About 13.5% chance of a perfect chapter!
2.3 Geometric Distribution
When to use: When you want to know how many trials it takes to get the first success.
Key characteristics:
Independent trials
Each trial has two outcomes
We stop at the first success
Formula:
P(X = k) = (1-p)^(k-1) × p
Where:
- k = number of trials until first success
- p = probability of success on each trial
Mean (Expected Value): μ = 1/p
Standard Deviation: σ = √[(1-p)/p²]
Geometric Example 1: Rolling a Die
Problem: You keep rolling a die until you get a 6. What's the probability it takes exactly 4 rolls?
Solution:
p = 1/6 (probability of rolling a 6)
k = 4 (takes 4 rolls)
This means: fail, fail, fail, then success
P(X = 4) = (5/6)^3 × (1/6)
P(X = 4) = (125/216) × (1/6)
P(X = 4) = 125/1296 ≈ 0.096
Answer: About 9.6% chance
Expected number of rolls: μ = 1/(1/6) = 6 rolls
Geometric Example 2: Free Throws
Problem: A basketball player makes 70% of free throws. What's the probability they miss their first shot on the 3rd attempt?
Solution:
p = 0.3 (probability of missing)
k=3
P(X = 3) = (0.7)^2 × (0.3)
P(X = 3) = 0.49 × 0.3 = 0.147
Answer: About 14.7% chance
Part 3: Continuous Distributions
3.1 Uniform Distribution
When to use: When all outcomes in a range are equally likely.
Example: Choosing a random number between 0 and 10. Every number has the same chance.
Key properties:
Mean: μ = (a + b)/2 where a and b are the minimum and maximum values
Standard Deviation: σ = (b - a)/√12
Simple Problem: A bus arrives randomly between 2:00 PM and 2:20 PM. What's the probability it arrives between 2:05 and
2:10?
Solution:
Total time range: 20 minutes
Desired range: 5 minutes
Probability = 5/20 = 0.25 or 25%
3.2 Normal Distribution (Bell Curve)
When to use: For data that clusters around a central value with symmetrical spread.
Key properties:
Symmetric bell-shaped curve
Mean (μ) is the center
Standard deviation (σ) controls the spread
About 68% of data falls within 1 standard deviation of the mean
About 95% falls within 2 standard deviations
About 99.7% falls within 3 standard deviations
The 68-95-99.7 Rule (Empirical Rule)
This is the most important concept for normal distributions!
μ - σ to μ + σ → 68% of data
μ - 2σ to μ + 2σ → 95% of data
μ - 3σ to μ + 3σ → 99.7% of data
Normal Distribution Example: Test Scores
Problem: Test scores are normally distributed with mean μ = 75 and standard deviation σ = 10.
Questions:
1. What percentage of students score between 65 and 85?
2. What percentage score above 95?
3. What percentage score below 55?
Solutions:
1. Between 65 and 85:
65 = 75 - 10 = μ - σ
85 = 75 + 10 = μ + σ
This is within 1 standard deviation
Answer: About 68%
2. Above 95:
95 = 75 + 20 = μ + 2σ
95% of data falls within 2σ, so 5% is outside
Since the curve is symmetric, 2.5% is above and 2.5% is below
Answer: About 2.5%
3. Below 55:
55 = 75 - 20 = μ - 2σ
This is 2 standard deviations below the mean
Answer: About 2.5%
Part 4: Random Variables
What is a Random Variable?
A random variable is a variable whose value depends on the outcome of a random event. We usually denote it with a
capital letter like X or Y.
Types of Random Variables
1. Discrete Random Variable
Can only take specific, countable values
Examples: number of heads in 10 coin flips (0, 1, 2, ..., 10), number of students in a class
2. Continuous Random Variable
Can take any value within a range
Examples: height, weight, temperature, time
Expected Value (Mean)
The expected value is the average value we expect if we repeat an experiment many times.
For discrete random variables:
E(X) = Σ [x × P(x)]
(Sum of each value times its probability)
Expected Value Example
Problem: You roll a fair six-sided die. What's the expected value?
Solution:
E(X) = 1×(1/6) + 2×(1/6) + 3×(1/6) + 4×(1/6) + 5×(1/6) + 6×(1/6)
E(X) = (1+2+3+4+5+6)/6
E(X) = 21/6 = 3.5
Answer: 3.5 (even though you can never actually roll 3.5!)
Part 5: Classic Applications
Application 1: Dice Problems
Problem: Roll two dice. What's the probability their sum equals 7?
Solution:
Total outcomes: 6 × 6 = 36
Favorable outcomes: (1,6), (2,5), (3,4), (4,3), (5,2), (6,1) = 6 ways
Probability = 6/36 = 1/6
Answer: 1/6 or about 16.67%
Application 2: Card Problems
Problem: Draw 2 cards from a standard deck without replacement. What's the probability both are aces?
Solution:
Probability first card is an ace: 4/52
Probability second card is an ace (given first was ace): 3/51
Combined probability: (4/52) × (3/51) = 12/2652 = 1/221
Answer: 1/221 or about 0.45%
Application 3: Ball and Urn Problems
Problem: A bag contains 5 red balls, 3 blue balls, and 2 green balls. You draw 3 balls without replacement. What's the
probability you get exactly 2 red balls?
Solution: This is a combination problem.
Ways to choose 2 red from 5: C(5,2) = 10
Ways to choose 1 non-red from 5: C(5,1) = 5
Total ways to choose 3 from 10: C(10,3) = 120
Probability = [C(5,2) × C(5,1)] / C(10,3)
Probability = (10 × 5) / 120
Probability = 50/120 = 5/12
Answer: 5/12 or about 41.67%
Application 4: Repeated Independent Trials
Problem: A basketball player makes 60% of free throws. What's the probability she makes at least 2 out of 3 attempts?
Solution: "At least 2" means 2 or 3 makes.
Probability of exactly 2 makes:
P(X = 2) = C(3,2) × (0.6)² × (0.4)¹
P(X = 2) = 3 × 0.36 × 0.4 = 0.432
Probability of exactly 3 makes:
P(X = 3) = C(3,3) × (0.6)³ × (0.4)⁰
P(X = 3) = 1 × 0.216 × 1 = 0.216
Total probability:
P(at least 2) = 0.432 + 0.216 = 0.648
Answer: 0.648 or 64.8%
Application 5: Combining Multiple Distributions
Problem: A factory machine produces defective items at a rate of 2% (binomial). Items are inspected at an average rate of
50 per hour (Poisson). What's the expected number of defective items found per hour?
Solution:
Inspection rate: λ = 50 items/hour (Poisson)
Defect rate: p = 0.02 (Binomial characteristic)
Expected defects = 50 × 0.02 = 1 defective item per hour
For more precise probability calculations:
P(k defects in n inspections) = C(n,k) × (0.02)^k × (0.98)^(n-k)
When n is large and p is small (like here), Binomial approximates Poisson with λ = np = 1.
Quick Reference Formulas
Basic Probability
P(A or B) = P(A) + P(B) - P(A and B)
P(A and B) = P(A) × P(B) [if independent]
P(A|B) = P(A and B) / P(B)
Distributions
Distribution Formula Mean Std Dev
Binomial C(n,k) × p^k × (1-p)^(n-k) np √[np(1-p)]
Poisson (λ^k × e^(-λ)) / k! λ √λ
Geometric (1-p)^(k-1) × p 1/p √[(1-p)/p²]
Normal Distribution
68% within μ ± σ
95% within μ ± 2σ
99.7% within μ ± 3σ
Practice Problems with Solutions
Problem 1: Conditional Probability
Question: In a school, 40% of students play sports, 30% are in the music club, and 15% do both. If a student plays sports,
what's the probability they're in the music club?
Solution:
P(Music | Sports) = P(Both) / P(Sports)
P(Music | Sports) = 0.15 / 0.40 = 0.375
Answer: 37.5%
Problem 2: Binomial Distribution
Question: A archer hits the bullseye 80% of the time. In 10 shots, what's the probability of hitting exactly 8 bullseyes?
Solution:
P(X = 8) = C(10,8) × (0.8)^8 × (0.2)^2
C(10,8) = 45
P(X = 8) = 45 × 0.1678 × 0.04 = 0.302
Answer: About 30.2%
Problem 3: Poisson Distribution
Question: A website gets an average of 5 visitors per minute. What's the probability of getting exactly 3 visitors in the next
minute?
Solution:
P(X = 3) = (5^3 × e^(-5)) / 3!
P(X = 3) = (125 × 0.0067) / 6 = 0.140
Answer: About 14%
Problem 4: Geometric Distribution
Question: A machine produces a defective item 5% of the time. What's the probability the first defect occurs on the 10th
item?
Solution:
P(X = 10) = (0.95)^9 × (0.05)
P(X = 10) = 0.6302 × 0.05 = 0.0315
Answer: About 3.15%
Tips for Success
1. Identify the type of problem - Is it binomial, Poisson, geometric, or something else?
2. List what you know - Write down n, p, λ, or whatever parameters you have
3. Choose the right formula - Match the problem type to the correct distribution
4. Calculate carefully - Use a calculator for combinations and powers
5. Check if your answer makes sense - Probabilities must be between 0 and 1
6. Practice, practice, practice! - These concepts click better with experience
Conclusion
Probability is everywhere in real life - from weather forecasts to game strategies to medical diagnoses. Master these
concepts and you'll have powerful tools for understanding uncertainty and making better decisions!
Remember:
Start with basic probability rules
Learn to recognize which distribution applies
Practice with real-world problems
Check your answers for reasonability
Good luck with your JEE preparation! 🎯