Probability
NCERT Class 11 introduction to probability — sample spaces, events, axiomatic probability, and how chance is measured.
Start with the simplest version: this lesson is about Probability. If you can explain the core idea to a friend using everyday language, examples, and one clear reason why it matters, you have moved from memorising to understanding.
NCERT Class 11 introduction to probability — sample spaces, events, axiomatic probability, and how chance is measured. When you flip a coin or roll a die, you can't predict the outcome with certainty, but probability lets you reason about what's likely. This chapter introduces the fundamental concepts of probability: sample spaces, events, conditional probability, and independent events. Probability underpins statistics (sampling and inference), decision-making under uncertainty, and theoretical models of random phenomena. From weather forecasts to medical diagnostics to gambling strategy, probability provides rational tools for navigating a world of uncertainty.
Random Experiments and Sample Spaces
A random experiment is a process with uncertain outcomes. Examples: flipping a coin, rolling a die, drawing a card from a deck.
The sample space (S) is the set of all possible outcomes. For a single coin flip, S = {H, T}. For rolling a die, S = {1, 2, 3, 4, 5, 6}. For flipping two coins, S = {HH, HT, TH, TT}.
An event is a subset of the sample space. For a die roll, "getting an even number" is the event {2, 4, 6}. "Getting a number greater than 4" is {5, 6}.
Classical Probability
If all outcomes are equally likely, the probability of an event E is:
P(E) = (Number of favorable outcomes) / (Total number of possible outcomes)
For rolling a fair die, P(even) = 3/6 = 1/2, because three outcomes (2, 4, 6) are favorable out of six equally likely outcomes.
Key properties:
- 0 ≤ P(E) ≤ 1 for any event
- P(S) = 1 (something must happen)
- P(∅) = 0 (nothing can happen with an impossible event)
- P(E) + P(E') = 1, where E' is the complement (E not occurring)
Compound Events
Events can be combined using set operations.
Union (A ∪ B): "A or B occurs" (or both)
Addition Rule: P(A ∪ B) = P(A) + P(B) - P(A ∩ B)
We subtract P(A ∩ B) to avoid double-counting outcomes in both events.
Intersection (A ∩ B): "A and B both occur"
For independent events A and B (one doesn't affect the other):
P(A ∩ B) = P(A) × P(B)
Example: Probability of two coins both showing heads = 1/2 × 1/2 = 1/4.
Conditional Probability
Often we want probability given that something has already occurred.
Conditional Probability: P(A|B) = P(A ∩ B) / P(B)
This reads "probability of A given B" and answers: "Given that B occurred, what's the probability of A?"
Example: A bag contains 3 red balls and 2 blue balls. You draw one ball (red), set it aside, then draw again. What's P(red on 2nd draw)?
P(red 2nd | red 1st) = 2/4 = 1/2 (now 2 red and 2 blue remain)
Compare this to P(red 2nd | blue 1st) = 3/4 (now 3 red and 1 blue remain).
The first outcome changes the probabilities for the second—these are dependent events.
Independent Events
Events are independent if one's occurrence doesn't affect the other's probability.
Flipping a coin twice: The first flip doesn't affect the second. P(H on 2nd | H on 1st) = P(H on 2nd) = 1/2.
For independent events: P(A|B) = P(A) and P(A ∩ B) = P(A) × P(B).
The Binomial Distribution
If you repeat a trial n times, each with probability p of success, what's the probability of exactly k successes?
Binomial Probability: P(X = k) = C(n,k) × pᵏ × (1-p)ⁿ⁻ᵏ
This combines:
- C(n,k): Ways to choose which k of n trials succeed (from chapter-06-permutations-and-combinations)
- pᵏ: Probability of k successes
- (1-p)ⁿ⁻ᵏ: Probability of (n-k) failures
Example: Flip a fair coin 5 times. P(exactly 3 heads)?
P(X = 3) = C(5,3) × (1/2)³ × (1/2)² = 10 × 1/32 = 10/32 = 5/16 ≈ 0.3125
Bayes' Theorem
This powerful theorem relates conditional probabilities in different directions:
P(A|B) = [P(B|A) × P(A)] / P(B)
Application: Medical testing. A test is 99% accurate. If 1% of people have a disease, what's the probability someone who tests positive actually has it?
Let D = disease, + = positive test.
- P(+|D) = 0.99 (accurate test; catches disease)
- P(D) = 0.01 (disease prevalence)
- P(+) = P(+|D) × P(D) + P(+|¬D) × P(¬D) = 0.99 × 0.01 + 0.01 × 0.99 ≈ 0.0198
P(D|+) = [0.99 × 0.01] / 0.0198 ≈ 0.50
Despite 99% accuracy, only 50% of positive tests indicate actual disease! This reveals why base rate matters.
Real-World Applications
Insurance: Premiums are based on probability of claims.
Quality Control: Sampling tests products with probability-based acceptance rules.
Weather: Forecasts give probabilities (30% chance of rain means if conditions like today occurred 100 times, rain followed 30).
Epidemiology: Disease spread models use probability to project infection rates.
Machine Learning: Algorithms assign probabilities to outcomes for decision-making.
Key Formulas
- Classical Probability: P(E) = favorable outcomes / total outcomes
- Addition Rule: P(A ∪ B) = P(A) + P(B) - P(A ∩ B)
- Multiplication Rule (independent): P(A ∩ B) = P(A) × P(B)
- Conditional Probability: P(A|B) = P(A ∩ B) / P(B)
- Binomial Probability: P(X = k) = C(n,k) × pᵏ × (1-p)ⁿ⁻ᵏ
- Bayes' Theorem: P(A|B) = [P(B|A) × P(A)] / P(B)
Socratic Questions
- Classical probability assumes equally likely outcomes. When does this assumption fail? How would you assign probabilities to unequally likely outcomes?
- In the medical testing example, why does a 99% accurate test give only 50% confidence in a positive result for a rare disease? What does this reveal about the relationship between accuracy and prevalence?
- Conditional probability P(A|B) asks: "Given B, what's P(A)?" Why is this different from P(A ∩ B)? Can you construct an example where both are small but P(A|B) is large?
- Independent events satisfy P(A ∩ B) = P(A) × P(B). What makes events independent? Can you think of events that seem independent but actually aren't?
- The Binomial Distribution applies when repeating identical independent trials. Why is the independence assumption crucial? What happens to the probabilities if the trials aren't independent?
