Probability is the mathematics of chance, quantifying how likely events are to occur. Class 11 introduced the classical definition of probability for equally likely outcomes. This chapter generalises the theory to conditional probability, where the likelihood of one event is recalculated given that another event has already occurred, and builds the machinery of the multiplication rule, the law of total probability, and Bayes' theorem.
The chapter then introduces random variables and their probability distributions, the concept of the mean and variance of a distribution, and concludes with the binomial distribution, which models the number of successes in a fixed number of independent trials. These tools are indispensable for statistics, genetics, quality control, decision theory, and game theory.
In the board examination, this chapter typically carries one of the highest weightages, with both short objective questions and long-answer problems involving Bayes' theorem and binomial distributions. The concepts are subtle, and the errors are characteristically conceptual rather than computational: mislabelling conditional probabilities, swapping P(A|B) and P(B|A), and misidentifying the parameters of the binomial distribution. Careful reading of the problem statement is half the battle in this chapter.
If E and F are events associated with a random experiment, the conditional probability of E given F, written P(E|F), is the probability that E occurs given that F has already occurred:
$$P(E|F) = \frac{P(E \cap F)}{P(F)}, \quad P(F) > 0$$
$$P(E \cap F) = P(E) \cdot P(F|E) = P(F) \cdot P(E|F)$$
For three events, $P(E \cap F \cap G) = P(E) \cdot P(F|E) \cdot P(G|E \cap F)$.
Two events E and F are independent if
$$P(E \cap F) = P(E) \cdot P(F)$$
which is equivalent to $P(E|F) = P(E)$ (when P(F) > 0): knowing F does not change the probability of E. Independent events satisfy the important closure properties:
$$P(E \cap F') = P(E) - P(E \cap F) = P(E)P(F')$$
Events $E_1, E_2, \ldots, E_n$ form a partition of the sample space S if they are pairwise disjoint and their union is S. Then for any event A:
$$P(A) = \sum_{i=1}^{n} P(E_i) \cdot P(A|E_i)$$
This is the law of total probability: the probability of A is the weighted average of the conditional probabilities over the partition.
Given a partition $E_1, \ldots, E_n$ of the sample space and an event A with P(A) > 0:
$$P(E_i|A) = \frac{P(E_i) \cdot P(A|E_i)}{\sum_{j=1}^{n} P(E_j) \cdot P(A|E_j)}$$
The probabilities $P(E_i)$ are called the prior probabilities, and $P(E_i|A)$ the posterior probabilities. Bayes' theorem updates our belief about which event of the partition actually occurred after observing the evidence A.
A random variable X is a real-valued function defined on the sample space. It can be discrete (taking finitely or countably many values) or continuous. This chapter focuses on discrete random variables.
The probability distribution of a discrete random variable lists each value $x_i$ with its probability $p_i = P(X = x_i)$, where $p_i \geq 0$ and $\sum p_i = 1$.
$$E(X) = \mu = \sum x_i p_i$$
$$Var(X) = \sigma^2 = \sum (x_i - \mu)^2 p_i = \sum x_i^2 p_i - \mu^2$$
$$\sigma = \sqrt{Var(X)}$$
A binomial experiment consists of n independent trials, each with two outcomes (success/failure), where the probability of success p is the same in every trial. If X is the number of successes, then X follows the binomial distribution with parameters n and p:
$$P(X = r) = \binom{n}{r} p^r q^{n-r}, \quad r = 0, 1, \ldots, n$$
where $q = 1 - p$.
$$\mu = np, \qquad \sigma^2 = npq$$
The conditions for a binomial experiment: fixed number of trials n, each trial independent, each trial has exactly two outcomes, and p is constant.
| Concept | Formula |
|---|---|
| Conditional probability | P(E |
| Multiplication rule | P(E and F) = P(E) P(F |
| Independence | P(E and F) = P(E) P(F) |
| Law of total probability | P(A) = sum P(Ei) P(A |
| Bayes' theorem | P(Ei |
| Mean of random variable | E(X) = sum xi pi |
| Variance | sum xi^2 pi - (E(X))^2 |
| Binomial probability | C(n,r) p^r q^(n-r) |
| Binomial mean and variance | np and npq |
| Property | Independent | Mutually exclusive |
|---|---|---|
| Both can occur | Yes | No |
| P(E and F) | P(E) P(F) | 0 |
| P(E | F) | P(E) |
| Relation | May overlap | Cannot overlap |
| Property | Value |
|---|---|
| Number of trials | n |
| Success probability | p |
| Failure probability | q = 1 - p |
| P(X = r) | C(n, r) p^r q^(n-r) |
| Mean | np |
| Variance | npq |
| Standard deviation | sqrt(npq) |
Probability generalises intuition about chance into a rigorous calculus of uncertainty. Conditional probability refines likelihood in the light of new information, the multiplication rule and independence structure the joint behaviour of events, and the law of total probability and Bayes' theorem reverse the flow of conditioning to update beliefs from evidence. Random variables turn experiments into numerical data, with the mean and variance summarising a distribution, and the binomial distribution models the counting of successes in repeated trials with remarkable accuracy and elegance. These tools extend far beyond the classroom into statistics, science, and decision-making. Because the concepts are subtle but the methods are formulaic once the problem is correctly interpreted, careful labelling of events and systematic application of the standard formulas guarantee strong performance in this highest-weightage chapter.