Back to ShikshaPal ExplainerClass 11 / Math
ShikshaPal
Class 11 · Math

Probability

NCERT Class 11 introduction to probability — sample spaces, events, axiomatic probability, and how chance is measured.

Feynman Lens

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:

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:

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 × 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

Socratic Questions

  1. Classical probability assumes equally likely outcomes. When does this assumption fail? How would you assign probabilities to unequally likely outcomes?
  1. 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?
  1. 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?
  1. 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?
  1. 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?

Term / Concept
Sample space
tap to flip
The set S of all possible outcomes of a random experiment. For tossing two coins, S = {HH, HT, TH, TT}.
Term / Concept
Event
tap to flip
Any subset E of the sample space S. The empty set ∅ is the impossible event and S itself is the sure event.
Term / Concept
Mutually exclusive events
tap to flip
Events A and B are mutually exclusive when A ∩ B = ∅, so they cannot occur simultaneously. Simple events of a sample space are always mutually exclusive.
Term / Concept
Exhaustive events
tap to flip
Events E₁, E₂, …, Eₙ are exhaustive when E₁ ∪ E₂ ∪ … ∪ Eₙ = S — at least one of them must occur every time the experiment is performed.
Term / Concept
Axioms of probability
tap to flip
(i) P(E) ≥ 0 for every event E; (ii) P(S) = 1; (iii) for mutually exclusive E and F, P(E ∪ F) = P(E) + P(F).
Term / Concept
Equally likely outcomes formula
tap to flip
If a sample space has n equally likely outcomes and event A contains m of them, P(A) = n(A)/n(S) = m/n.
Term / Concept
Addition rule
tap to flip
P(A ∪ B) = P(A) + P(B) − P(A ∩ B). Subtracting P(A ∩ B) avoids double-counting outcomes in both events.
Term / Concept
Mutually exclusive addition
tap to flip
If A and B are mutually exclusive (A ∩ B = ∅) then P(A ∪ B) = P(A) + P(B), recovering Axiom (iii).
Term / Concept
Probability of complement
tap to flip
P(not A) = P(A′) = 1 − P(A), since A and A′ are mutually exclusive and exhaustive.
Term / Concept
Valid probability assignment
tap to flip
An assignment {p(ωᵢ)} is valid only if every p(ωᵢ) lies in [0, 1] and ∑ p(ωᵢ) = 1. Negative values or a sum ≠ 1 invalidate it.
A card is drawn from a well-shuffled pack of 52. The probability that it is a black card is:
  • A 1/13
  • B 1/4
  • C 1/2
  • D 13/52
A and B are events with P(A) = 0.42, P(B) = 0.48 and P(A ∩ B) = 0.16. Then P(A ∪ B) equals:
  • A 0.74
  • B 0.90
  • C 0.58
  • D 0.06
Three coins are tossed once. The probability of getting at least two heads is:
  • A 3/8
  • B 1/2
  • C 7/8
  • D 1/8
In a class of 60, 30 opted for NCC, 32 for NSS and 24 for both. The probability that a student opted for NCC or NSS is:
  • A 38/60
  • B 56/60
  • C 24/60
  • D 38/60 (= 19/30)
Which of the following is NOT a valid probability assignment for a sample space of seven equally listed outcomes?
  • A 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7
  • B 1/7, 1/7, 1/7, 1/7, 1/7, 1/7, 1/7
  • C 0.1, 0.01, 0.05, 0.03, 0.01, 0.2, 0.6
  • D 1/14, 2/14, 3/14, 4/14, 1/14, 2/14, 1/14