Probability — Basics to Bayes Theorem for CBSE & JEE

Probability concepts from basic to advanced: classical, conditional, Bayes theorem. CBSE, JEE, SAT.

CBSE-10CBSE-12JEE-MAINSAT-MATH11 min readClasses 10, 11, 12

Probability is one of those topics where students either love it or hate it. The ones who hate it usually tried to memorise formulas without understanding the underlying logic. Once the logic clicks, this becomes a reliable scoring topic across CBSE Class 10, Class 12, and JEE.

What Is Probability?

Probability measures how likely an event is to occur. Formally, it's a number between 0 and 1.

  • P = 0 means the event is impossible.
  • P = 1 means the event is certain.
  • Anything in between is a likelihood.

Classical Definition of Probability

P(A) = Number of favourable outcomes / Total number of outcomes

This formula assumes all outcomes are equally likely. That's an important assumption — a fair coin, an unbiased die, well-shuffled cards.

Key Vocabulary You Must Know

Sample Space (S): The set of all possible outcomes. Rolling a die: S = .

Event: A subset of the sample space. "Getting an even number" = .

Complementary Event: If P(A) is the probability of event A, then P(A') = 1 − P(A). This is the probability that A does NOT happen.

Mutually Exclusive Events: Two events are mutually exclusive if they can't happen simultaneously. Getting a Head and getting a Tail on one coin flip are mutually exclusive.

Exhaustive Events: Events that cover the entire sample space. Getting H or T on a coin flip — one of these must happen.

Addition Rule of Probability

Addition Rule

P(A ∪ B) = P(A) + P(B) − P(A ∩ B)

The subtraction of P(A ∩ B) prevents double-counting outcomes that belong to both A and B.

Special case: If A and B are mutually exclusive, P(A ∩ B) = 0, so: P(A ∪ B) = P(A) + P(B)

Example: A card is drawn from a standard deck of 52. What is the probability that it is a King or a Heart?

P(King) = 4/52. P(Heart) = 13/52. P(King AND Heart) = 1/52 (King of Hearts). P(King OR Heart) = 4/52 + 13/52 − 1/52 = 16/52 = 4/13

Multiplication Rule of Probability

Multiplication Rule

P(A ∩ B) = P(A) × P(B|A) = P(B) × P(A|B)

Special case: If A and B are independent (one event doesn't affect the other), then: P(A ∩ B) = P(A) × P(B)

Example: A bag has 3 red and 2 blue balls. Two balls are drawn with replacement. Find the probability both are red.

P(first red) = 3/5. P(second red) = 3/5 (with replacement, so independent). P(both red) = 3/5 × 3/5 = 9/25

📌 Note

"With replacement" → independent events → just multiply probabilities directly. "Without replacement" → dependent events → use conditional probability.

Conditional Probability

This is where Class 12 probability begins. The conditional probability P(A|B) means: "Given that B has already occurred, what is the probability of A?"

Conditional Probability

P(A|B) = P(A ∩ B) / P(B), provided P(B) ≠ 0

Why this formula makes sense: When we know B has occurred, the sample space shrinks from S to B. We want to find what fraction of B also contains A. That's exactly P(A ∩ B) / P(B).

Example: Two cards are drawn without replacement from a deck. Given that the first card is a King, what is the probability that the second is also a King?

After drawing one King, there are 3 Kings left out of 51 remaining cards. P(second King | first King) = 3/51 = 1/17

Independence vs. Mutual Exclusivity

Students confuse these two. They are almost opposite concepts.

PropertyMeaningFormula
IndependentOne doesn't affect the otherP(A ∩ B) = P(A)·P(B)
Mutually exclusiveBoth can't happen togetherP(A ∩ B) = 0

If two events have non-zero probability and are mutually exclusive, they cannot be independent. Because if A happens, B definitely doesn't — so they affect each other.

⚠️ Common Mistake

Don't say "A and B are independent because they are mutually exclusive." That's backwards. Mutually exclusive events with positive probabilities are actually dependent.

Total Probability Theorem

When you can't directly compute P(A) but you can compute it across different cases (a "partition"), the Total Probability Theorem helps.

If B₁, B₂, ..., Bₙ partition the sample space (mutually exclusive, exhaustive), then:

Total Probability Theorem

P(A) = P(A|B₁)P(B₁) + P(A|B₂)P(B₂) + ... + P(A|Bₙ)P(Bₙ)

Example: Factory A produces 60% of items, Factory B produces 40%. 2% of A's items are defective, 3% of B's are defective. What is the probability that a randomly chosen item is defective?

P(Defective) = P(D|A)·P(A) + P(D|B)·P(B) = 0.02 × 0.60 + 0.03 × 0.40 = 0.012 + 0.012 = 0.024 = 2.4%

Bayes' Theorem

Bayes' theorem answers the reverse question: given that A has occurred, what is the probability it came from cause Bᵢ?

Bayes' Theorem

P(Bᵢ|A) = [P(A|Bᵢ) × P(Bᵢ)] / P(A)

where P(A) is found using the Total Probability Theorem

Terminology:

  • P(Bᵢ) = Prior probability (before seeing the evidence)
  • P(A|Bᵢ) = Likelihood (probability of evidence given the cause)
  • P(Bᵢ|A) = Posterior probability (updated probability after evidence)

Example using the factory problem above: A defective item is found. What is the probability it came from Factory A?

P(A|Defective) = P(Defective|A) × P(A) / P(Defective) = (0.02 × 0.60) / 0.024 = 0.012 / 0.024 = 0.5 = 50%

Even though Factory A produces more items, both factories contribute equally to the defective pile.

Solved Examples

Example 1 (Easy): Two dice are rolled. Find P(sum = 7).

Total outcomes = 36. Favourable pairs: (1,6), (2,5), (3,4), (4,3), (5,2), (6,1) — that's 6 pairs. P(sum = 7) = 6/36 = 1/6

Example 2 (Medium): A bag has 5 red, 3 blue, 2 green balls. One ball is drawn. Find P(not red).

P(red) = 5/10 = 1/2. P(not red) = 1 − 1/2 = 1/2.

Or directly: 5 non-red balls out of 10. P = 5/10 = 1/2.

Example 3 (Hard): Three coins are tossed. Find P(at least one head).

Complement method: P(at least one H) = 1 − P(no heads) = 1 − P(all tails). P(all tails) = 1/2 × 1/2 × 1/2 = 1/8. P(at least one H) = 1 − 1/8 = 7/8

Example 4 (Medical Test — Bayes): A test for a disease is 95% accurate. The disease affects 1% of the population. If you test positive, what is the probability you have the disease?

Let D = has disease, D' = no disease, T = test positive.

P(D) = 0.01, P(D') = 0.99 P(T|D) = 0.95 (true positive rate) P(T|D') = 0.05 (false positive rate)

P(T) = P(T|D)·P(D) + P(T|D')·P(D') = 0.95 × 0.01 + 0.05 × 0.99 = 0.0095 + 0.0495 = 0.059

P(D|T) = (0.95 × 0.01) / 0.059 = 0.0095 / 0.059 ≈ 0.161 = 16.1%

This counterintuitive result is Bayes' theorem in action. A 95% accurate test still has only a ~16% chance of a true positive when the disease is rare. This is why medical screening requires multiple tests.

Exam-Specific Tips

CBSE Class 10:

  • Classical probability from dice, cards, and bags are the standard question types.
  • Always list or count the sample space for dice and coin problems.
  • Complementary probability (1 − P) is a 2-mark question that shows up every year.

CBSE Class 12:

  • Conditional probability, independence, Bayes theorem, and random variables form the bulk of the probability chapter.
  • For Bayes theorem questions, set up a neat table with prior, likelihood, and joint probability columns. It reduces errors.
  • Random variables and binomial distribution are related topics in the same unit.

JEE Main:

  • Combinatorics and probability interlink heavily. Counting techniques (permutations, combinations) feed into probability calculations.
  • Questions often involve "at least" or "at most" conditions — always think about the complement.
  • Geometric probability occasionally appears — length or area as the sample space.

5 Common Mistakes

⚠️ Common Mistake

Mistake 1: Not listing outcomes carefully for two dice The sample space for two dice has 36 outcomes, not 11 (the possible sums from 2 to 12). Always count ordered pairs: (1,6) and (6,1) are different outcomes.

⚠️ Common Mistake

Mistake 2: Treating dependent events as independent Drawing without replacement changes the probabilities at each step. P(second red ball) ≠ P(first red ball) when there's no replacement.

⚠️ Common Mistake

Mistake 3: Forgetting the complement is powerful "At least one" and "more than zero" questions are almost always easier with the complement: P = 1 − P(none at all).

⚠️ Common Mistake

Mistake 4: Writing P(A) > 1 Probability is always between 0 and 1, inclusive. If your calculation gives 1.2 or −0.3, something is wrong. Check your sample space and favourable outcome counts.

⚠️ Common Mistake

Mistake 5: Misidentifying P(A|B) and P(B|A) These are completely different. P(Rain|Dark clouds) ≠ P(Dark clouds|Rain). In Bayes' theorem, clearly label what is given and what you're finding before substituting.

Practice Questions

Q1. A die is rolled. Find the probability of getting a number greater than 4.

Q2. Two dice are rolled. Find P(sum is even).

Q3. A card is drawn from a deck. Find P(Jack or Black card).

Q4. If P(A) = 1/3, P(B) = 1/4, and A, B are independent. Find P(A ∪ B).

Q5. A bag has 4 white and 6 black balls. Two balls are drawn without replacement. Find P(both white).

Q6. Three coins are tossed. Find P(exactly 2 heads).

Q7. P(A) = 0.6, P(B) = 0.5, P(A ∩ B) = 0.3. Are A and B independent?

Q8. Bag 1 has 3 red, 2 blue. Bag 2 has 2 red, 4 blue. One bag is chosen randomly, then one ball is drawn. Find P(red ball).

Frequently Asked Questions

What is the difference between theoretical and experimental probability? Theoretical probability is calculated mathematically (assuming ideal conditions). Experimental probability is based on actual trials. As the number of trials increases, experimental probability approaches theoretical probability — this is the Law of Large Numbers.

When should I use combinations vs. direct counting for probability? When the problem involves selecting objects from a group and order doesn't matter, combinations (ⁿCᵣ) are cleaner. For dice, coins, and sequences where order matters, direct counting is usually simpler.

Is Bayes theorem in CBSE Class 10? No. Class 10 covers only basic/classical probability. Conditional probability and Bayes theorem are Class 12 topics. Don't mix them up.

How do I verify my answer in probability? The sum of probabilities of all outcomes must equal 1. For complementary events, P(A) + P(A') = 1. Use these as a sanity check.

What is a probability distribution? A probability distribution lists all possible values of a random variable and their associated probabilities. This is a Class 12 / JEE topic — binomial distribution being the most commonly tested.

Can two events both be independent AND mutually exclusive? Only if at least one of them has probability 0. If P(A) > 0 and P(B) > 0, then mutually exclusive events cannot be independent (because knowing one occurred tells you the other didn't).

Practice Questions