By the end of this chapter you'll be able to…

  • 1Construct a sample space in which the listed outcomes are genuinely equally likely, and compute probabilities as ratios of matching counts
  • 2Apply the addition rule and distinguish mutually exclusive events from independent ones
  • 3Compute conditional probabilities and build sequential experiments with the multiplication rule
  • 4Use total probability along a partition and reverse the conditioning with Bayes' theorem
  • 5Test mutual independence of three or more events, not merely pairwise independence
  • 6Compute expectation and variance of a random variable, and apply the binomial distribution including its mean and variance
💡
Why this chapter matters in JEE Advanced
Probability is where a correct calculation on the wrong sample space produces a confident wrong answer, and Advanced sets its questions on exactly that. A conditional probability supplied in one direction is not the one being asked for; two events that cannot occur together are the opposite of independent; and a partition with one very large branch can let that branch's errors outnumber the other's successes. The chapter also depends entirely on the counting techniques of Permutations and Combinations, so an error there costs marks twice.

Before you start — revise these

🔗
Permutations and combinations, including selections from a multiset
🔗
Inclusion and exclusion for two and three sets
🔗
Manipulation of fractions and ratios
🔗
The binomial theorem for a positive integral index

Probability

A screening test is accurate in both directions, and the disease it looks for affects person in . You test positive. What is the probability that you have the disease?

Almost everyone answers . The correct answer is about .

Imagine a million people. About of them have the disease, and the test catches of those. The other are healthy, and the test wrongly flags of them — nearly people. So of roughly positive results, only are genuine:

The accuracy of the test was never in question. What the naive answer ignores is the base rate: healthy people are so much more numerous that even a small error rate among them swamps the true positives.

This is the shape of nearly every hard probability question at Advanced level. The information given is a conditional probability in one direction, and the question asks for it in the other. Those two are not the same number, and Bayes' theorem is the only bridge between them.

false positives: 1% of a very large group healthy: 9,999 in every 10,000 diseased strip a positive result lands almost always in the orange band, not the red strip

1. Sample spaces and the assumption inside them

A probability model is a sample space together with a rule assigning probabilities that are non-negative and sum to . Counting favourable outcomes and dividing by the total is legitimate only when the outcomes listed are equally likely, and choosing a sample space in which they are is half the work.

Rolling two dice illustrates the point. If the sample space is the unordered pairs, they are not equally likely: arises two ways and only one. Using the ordered pairs restores equal likelihood, and every standard result about two dice assumes that space.

Illustration 1

Two dice are thrown. Find the probability that the sum is , and that the sum is .

In the -outcome space, six ordered pairs sum to , giving , and one sums to , giving . In the -outcome space the naive counts would give and , both wrong. The arithmetic was never the difficulty; the sample space was.

2. Adding, multiplying, and two words that are not synonyms

For any two events, , and for three the inclusion-exclusion pattern of the counting chapter reappears unchanged.

Two events are mutually exclusive when and independent when . These are not the same idea, and they are close to opposites: if two events both have positive probability, then being mutually exclusive makes them dependent, because knowing that one occurred tells you the other did not.

A B mutually exclusive: no overlap A B independent: overlap of exactly P(A)P(B) both at once is impossible unless one has probability zero

Illustration 2

and satisfy , and . Are they independent? Are they mutually exclusive?

From the addition rule, . Since as well, they are independent. They are certainly not mutually exclusive, since the intersection has positive probability — and indeed no pair of events with positive probabilities can be both.

3. Conditional probability

The conditional probability is simply probability computed inside a shrunken sample space: becomes the new universe, and everything is rescaled so that it has probability .

Rearranged, this gives the multiplication rule , which is how sequential experiments — drawing cards without replacement, choosing a bag then a ball — are built up one stage at a time.

Illustration 3

Two cards are drawn without replacement from a standard pack. Find the probability that both are kings, and the probability that the second is a king.

For both, .

For the second alone, condition on the first: .

The second answer equals the probability that the first is a king. That is not a coincidence: before any card is seen, every position in the shuffled pack is equally likely to hold a king, so the order of drawing is irrelevant. Recognising this symmetry answers many questions without any conditioning at all.

Illustration 4

A family has two children, at least one of whom is a boy. What is the probability that both are boys?

The sample space of two children in birth order is , all equally likely. Conditioning on at least one boy removes , leaving three outcomes of which one is , so the answer is .

The instinctive answer treats the information as being about a specific child. Had the question said "the elder is a boy", the space would reduce to and the answer would indeed be . Which child the information identifies changes the answer, and questions are worded to test exactly that.

4. Probability by counting

When every outcome of an experiment is equally likely, a probability is a ratio of two counts, and the whole of the previous chapter becomes available. The discipline is the same as it was there: the numerator and the denominator must be counted in the same way, either both as ordered arrangements or both as unordered selections.

Two phrasings recur. "Exactly of a kind" is a product of two binomial coefficients over one, and "at least one" is almost always shortest through the complement, since the opposite of "at least one" is the single event "none".

It is also worth knowing the language of odds, which questions occasionally use without explanation. Odds in favour of an event are the ratio of favourable to unfavourable cases, so odds of correspond to a probability of , not .

Illustration 5

A bag contains white and black balls, and three are drawn together. Find the probability that exactly two are white.

Choosing of the white and of the black, out of all ways to choose from :

Both counts are unordered, which is what makes the ratio legitimate. Counting the numerator as ordered and the denominator as unordered is the standard way to produce an answer greater than .

Illustration 6

Four people enter a lift in a building with five floors above the ground. Assuming each chooses a floor at random and independently, find the probability that they all get out at different floors.

The total number of choice patterns is , all equally likely. Those with all floors distinct number , so the probability is

Here both counts are ordered, since the people are distinguishable. The complement, that at least two share a floor, has probability about — the same surprisingly high figure that makes the classic birthday problem counterintuitive.

5. Total probability and Bayes

If partition the sample space, then any event decomposes along that partition:

Bayes' theorem reverses the conditioning by dividing one term by that whole sum:

The reliable way to apply it is a tree: branch on the partition, multiply along each path to get the probability of that path, and then compare the paths that end in .

P(E1) P(E2) P(A|E1) P(A|E2) path 1 ends in A not A path 2 ends in A not A multiply along a path; add the paths that end in A; divide to reverse the conditioning

Illustration 7

Bag I holds red and black balls; Bag II holds red and black. A bag is chosen at random and a ball drawn from it turns out to be red. Find the probability that it came from Bag I.

The two paths ending in "red" have probabilities and . So

The answer is a little below , which is right: Bag II has the higher proportion of red balls, so a red draw is weak evidence in its favour.

Illustration 8

A factory has three machines producing , and of output, with defect rates , and . A defective item is found. Which machine most probably made it?

The path probabilities are , and , totalling . So the posterior probabilities are , and , and the first machine is most likely despite having the lowest defect rate — because it makes the most items. This is the base-rate effect of the opening in a milder form.

6. Independence of three or more events

Three events are mutually independent when every pair multiplies correctly and, in addition, . The last condition does not follow from the others.

Illustration 9

Toss two fair coins. Let be "first is heads", be "second is heads" and be "the two match". Show that these are pairwise independent but not mutually independent.

Each has probability . Each pairwise intersection is a single outcome of the four, so has probability : all three pairs are independent.

But is the single outcome , with probability , while . The triple condition fails. Knowing any one of the three tells you nothing, but knowing two tells you the third exactly.

A useful consequence is worth stating on its own. If and are independent, then so are and , and so are and — independence survives complementation.

That is what licenses the standard treatment of "at least one" in repeated independent trials: the probability that none of independent events with probabilities occurs is , and one minus that is the answer. Applying the same product rule to events that are merely pairwise independent, or not independent at all, is a genuine error rather than an approximation.

7. Random variables, expectation and variance

A random variable assigns a number to each outcome. Its expectation is the probability-weighted average , and its variance is

which is almost always faster to compute than the definition as a mean squared deviation.

Expectation is linear whatever the dependence between variables: always. Variance adds only when the variables are independent.

Illustration 10

A die is thrown once and is the score. Find and .

and , so

Note that is not a possible score. An expectation is a long-run average, not a prediction of any single trial.

Illustration 11

Two fair dice are thrown. Find the expected value of the sum.

By linearity, , with no need to enumerate the outcomes or their eleven possible sums. Linearity holds even for dependent variables, which is what makes it the most economical tool in the chapter.

8. The binomial distribution

If a trial with success probability is repeated times independently, the number of successes satisfies

with and . Since , the variance of a binomial variable is always less than its mean — a quick check that rules out impossible data.

mean at np 0 n variance npq is always smaller than the mean np

Illustration 12

A biased coin shows heads with probability . It is tossed times. Find the probability of at least heads.

Computing "at least " directly is shorter than the complement here, because only two terms are involved. For "at least " the complement is always shorter, since it is a single term.

Illustration 13

A binomial variable has mean and variance . Find and .

From and , dividing gives , so and .

If instead the variance had been given as , the data would be impossible: variance can never exceed the mean for a binomial variable, and noticing that saves a fruitless calculation.

Illustration 14

Six dice are thrown. Find the probability of getting at least two sixes.

With and , use the complement:

Numerically this is . The expected number of sixes is , so a result a little above a quarter for "two or more" is the right order of magnitude.

Summary

A conditional probability in one direction is not the same number as the conditional probability in the other, and Bayes' theorem is the only bridge. When one branch of a partition is far more populous than another, its errors can outnumber the other branch's successes, which is why a accurate test for a rare condition usually raises a false alarm.

Counting favourable cases over total cases is valid only in a sample space of equally likely outcomes, and constructing such a space — ordered pairs rather than unordered, for two dice — is often the whole difficulty.

Mutually exclusive and independent are close to opposite conditions: events with positive probabilities cannot be both, since disjointness makes each one informative about the other. For three events, pairwise independence does not give mutual independence, as two coins and the event that they match demonstrate.

Where outcomes are equally likely, a probability is a ratio of counts, and the numerator and denominator must be counted the same way — both ordered or both unordered. Odds of mean a probability of .

Total probability decomposes an event along a partition and Bayes reverses the conditioning; a tree makes both mechanical. Expectation is linear whatever the dependence, which frequently removes the need to enumerate anything, while variance adds only for independent variables and is computed as . For a binomial variable the mean is and the variance , so the variance is always the smaller of the two.

Key formulas & results

Everything to memorise for the exam hall, in one card. Screenshot this for revision.

Classical probability
Valid **only** when the listed outcomes are equally likely. For two dice this needs the $36$ ordered pairs, not the $21$ unordered ones.
Addition rule
For three events the inclusion-exclusion pattern of the counting chapter carries over unchanged, including the "exactly one" and "exactly two" variants.
Mutually exclusive versus independent
Close to opposites. Two events with positive probabilities cannot be both, since disjointness makes each one informative about the other.
Conditional probability
Probability inside a shrunken universe: $B$ becomes the whole space and everything is rescaled so it has probability $1$.
Multiplication rule
How sequential experiments are built one stage at a time. For independent events it reduces to the product of the two probabilities.
Total probability
Requires $E_1,\dots,E_n$ to partition the sample space. In practice, branch on the partition and multiply along each path of a tree.
Bayes' theorem
The only bridge between the two directions of conditioning. A small branch with a high rate can still lose to a large branch with a low one.
Complement and at least one
For independent events only. Independence survives complementation, which is what licenses the product; pairwise independence is not enough.
Mutual independence of three events
The last condition does not follow from the first three: two coin tosses and the event that they match are pairwise but not mutually independent.
Odds
Odds compare favourable with unfavourable cases, not favourable with total. Reading $a:b$ as $\tfrac ab$ is the usual slip.
Expectation
Linear whatever the dependence: $E(X+Y)=E(X)+E(Y)$ always. This often removes any need to enumerate outcomes at all.
Variance
Faster than the mean-squared-deviation definition. Variance adds only for independent variables, unlike expectation.
Binomial distribution
Since $q<1$, the variance is always smaller than the mean. Data giving a variance above the mean is impossible and can be rejected on sight.
⚠️

Traps JEE Advanced sets — and how to dodge them

These are the exact option-traps and misreads that cost marks under negative marking.

WATCH OUT
Reading as
Use Bayes' theorem to convert. A test that is accurate for a condition affecting one in ten thousand gives a positive result that is right only about of the time.
Why it happens: Both are described in words as "the probability of one given the other", and the base rate that separates them is usually stated far from the conditional figures.
WATCH OUT
Counting favourable over total in a space of unequally likely outcomes
Build a space where the outcomes really are equally likely. For two dice this means the ordered pairs.
Why it happens: The formula is presented as the definition of probability rather than as a consequence of equal likelihood, so the hypothesis is never checked.
WATCH OUT
Treating mutually exclusive and independent as similar conditions
They are close to opposites. If both events have positive probability, disjointness makes them dependent.
Why it happens: Both words describe events that feel unconnected, and the technical meanings run in opposite directions.
WATCH OUT
Concluding mutual independence from pairwise independence
Check the triple product separately. Two coin tosses and the event that they agree are pairwise independent with .
Why it happens: Independence is introduced for two events, and the extension to three is assumed to be the obvious repetition of the same condition.
WATCH OUT
Mixing ordered and unordered counts in one ratio
Count numerator and denominator the same way. An answer greater than is the usual symptom.
Why it happens: The favourable cases and the total cases are counted at different moments, and the choice of method is made afresh each time.
WATCH OUT
Accepting binomial data with variance greater than the mean
Check that . If the given variance exceeds the given mean, the data does not describe a binomial variable.
Why it happens: The two formulas are recalled separately, so the inequality between them is never noticed as a constraint on the data.

Exam-pattern practice

PYQ-style questions with full solutions. Work through them as a readiness check — mark yourself honestly and get your gap report at the end.

Readiness check

Are you exam-ready for Probability?

12 problems from this chapter. Try each one, reveal the worked solution, mark yourself honestly — get your gap report at the end.

12 questions~8 min worth ~12 marks in JEE Advanced exams

5-minute revision

The whole chapter, distilled. Read this the night before the exam.

  • Counting favourable over total needs equally likely outcomes; build the sample space so that they are.
  • Numerator and denominator must be counted the same way, both ordered or both unordered.
  • Mutually exclusive and independent are close to opposites; positive-probability events cannot be both.
  • rescales the universe to ; the multiplication rule builds sequential experiments.
  • and are different numbers, and Bayes is the only bridge.
  • A large branch with a low rate can outweigh a small branch with a high one: that is the base-rate effect.
  • Draw a tree: branch on the partition, multiply along paths, add the paths ending in the event.
  • Independence survives complementation, which licenses for "at least one".
  • Pairwise independence of three events does not give mutual independence.
  • Expectation is always linear; variance adds only for independent variables.
  • is faster than the definition.
  • For a binomial variable the variance is always less than the mean .

JEE Advanced question blueprint

How this topic is asked, tier by tier — so you can prep to the pattern.

Typical weightage: ~2-3 questions (roughly 8-12 marks) across the two papers combined, out of the ~120 marks of Mathematics

Question styleMarks eachTypical countWhat it tests
Sample spaces, counting and the addition rule31Construction of an equally likely sample space, probability as a ratio of counts, the addition rule and inclusion-exclusion, and odds
Conditional probability, independence and Bayes41Conditional probability and the multiplication rule, independence versus mutual exclusivity, mutual independence of three events, total probability and Bayes' theorem
Random variables and the binomial distribution41Random variables, expectation and variance, linearity of expectation, and the binomial distribution including recovery of its parameters

Exam-hall strategy

Battle-tested tips from mentors and toppers for this topic under the sectional clock.

  1. Write down the sample space before computing anything, and check that its outcomes are equally likely. Most wrong answers are correct calculations on the wrong space.
  2. When a question gives a conditional probability, note which way round it points. If it points the other way from what is asked, the question is a Bayes question.
  3. Draw the tree for any staged experiment. It costs thirty seconds and makes total probability and Bayes mechanical.
  4. For "at least one", take the complement first. It is a single term where the direct sum is several.
  5. Sanity-check every answer: probabilities lie in , a binomial variance is smaller than its mean, and a posterior should move in the direction the evidence points.

Beyond the exam

Where this skill shows up in the job you're competing for — and in life.

Medical screening programmes are designed around the base…

Medical screening programmes are designed around the base-rate effect: a single test for a rare condition produces mostly false alarms, so a confirmatory test with different failure modes is always required.

Spam filters apply Bayes' theorem word by word

Spam filters apply Bayes' theorem word by word, updating the probability that a message is unwanted as each new piece of evidence arrives.

Quality control uses the binomial distribution to decide …

Quality control uses the binomial distribution to decide how large a sample must be before a batch can be accepted, balancing the risk of passing a bad batch against that of rejecting a good one.

Where else this topic is tested

Prepare once, score in every exam that asks it.

JEE Advanced
JEE Main
BITSAT
ISI Admission Test
CAT (Quantitative Ability)

Questions aspirants ask

Pulled from the Q&A community and mentor sessions.

Because accuracy is a statement about people who have the condition, and most people do not. If one in ten thousand is affected and the test errs on one per cent of healthy people, then in a million people there are about a hundred true cases and roughly ten thousand false alarms. The test is behaving exactly as advertised; the base rate is doing the damage. This is why screening programmes for rare conditions always use a second, different test to confirm.

Compute all three of , and and check whether the last is the product of the first two. Independence is never something to assume from the wording, and phrases such as "chosen at random" do not establish it. In particular, two events that cannot happen together are dependent whenever both have positive probability, because each one occurring rules the other out.

Whenever the experiment happens in stages, which covers every total-probability and Bayes question. A tree makes each path's probability a simple product and turns the theorem into a comparison of two or three numbers. The formula version is the same computation written in one line, and candidates who use it without drawing the tree tend to lose track of which conditional probability goes where.

For the probability of a single specified draw, no. Before any card is revealed, every position in a shuffled pack is equally likely to hold a king, so the second card is as likely to be a king as the first. Order does matter for joint events, such as both cards being kings, where the multiplication rule with a changing denominator is needed. Recognising the symmetry when it applies saves a full conditioning calculation.

A large part of it. Every probability computed as a ratio of equally likely outcomes is two counting problems, and the traps are the counting traps: mixing ordered with unordered, or satisfying a condition first and then filling freely. It is worth treating a probability answer greater than one, or a set of probabilities that fail to sum to one, as a counting error rather than a probability error, because that is almost always what it is.
Sources and How This Chapter Was CheckedSyllabus scope, what was derived rather than quoted, and how every answer here was checked.

Scope follows the JEE Advanced syllabus for 2026 (Mathematics, Probability and Statistics): random experiments and sample spaces, addition and multiplication rules of probability, conditional probability, independence of events, total probability, Bayes' theorem, computation of probability of events using permutations and combinations, and random variables with their mean and variance.

The treatment concentrates on what Advanced adds to Main. Main asks for a probability from a direct count; Advanced asks for a conditional probability to be reversed, for a sample space to be chosen so that outcomes are equally likely, for independence to be tested rather than assumed, and for the parameters of a distribution to be recovered from its mean and variance.

Results were derived rather than quoted. The base-rate calculation came from counting a population of one million rather than from substituting into a formula, the incompatibility of exclusivity and independence from comparing with , the failure of pairwise independence to give mutual independence from an explicit two-coin example, and the variance identity from expanding the mean squared deviation.

Every illustration was checked a second way. The card probability in Illustration 3 was confirmed by the symmetry argument that every position is equally likely to hold a king; the Bayes answer in Illustration 5 was checked against the expectation that it should fall below one half; the binomial parameters in Illustration 11 were verified by substituting back into both and ; and the answer to Illustration 12 was checked against the expected number of sixes.

The illustrations are teaching problems written for this chapter, not previous-year questions, and are not labelled as such.

Header Logo