Probability | CBSE - Wyatt's Notes
sources:
- text: Standard textbook reference
Probability
Section titled “Probability”Probability quantifies the likelihood of events. This topic covers conditional probability, Bayes’ theorem, random variables, and probability distributions.
Key Concepts
Section titled “Key Concepts”- Conditional probability:
- Multiplication rule:
- Bayes’ theorem:
- Total probability:
- Random variable: a function assigning numerical values to outcomes
- Mean (expected value):
- Variance:
- Binomial distribution: , mean , variance
Worked Example 1 — Conditional Probability
Section titled “Worked Example 1 — Conditional Probability”Problem: A bag contains 5 red and 3 blue balls. Two balls are drawn without replacement. Find the probability that both are red.
Solution:
Common mistake: Treating the draws as independent when they are without replacement. The second draw depends on the first.
Worked Example 2 — Bayes’ Theorem
Section titled “Worked Example 2 — Bayes’ Theorem”Problem: A factory has three machines. Machine A produces 30% of items with 5% defect rate, Machine B produces 45% with 3% defect rate, and Machine C produces 25% with 4% defect rate. An item is selected at random and found to be defective. Find the probability it came from Machine A.
Solution:
Let = defective, , , = machines.
By Bayes’ theorem:
Common mistake: Forgetting to use the total probability in the denominator. Using only gives the wrong answer.
Worked Example 3 — Binomial Distribution
Section titled “Worked Example 3 — Binomial Distribution”Problem: A coin is tossed 5 times. Find the probability of getting exactly 3 heads.
Solution:
This is a binomial distribution with , , , :
Mean:
Variance:
Common mistake: Using incorrectly. .
Practice Problems
Section titled “Practice Problems”- Two cards are drawn from a deck. Find the probability that both are aces given that at least one is an ace.
- A die is rolled 4 times. Find the probability of getting exactly 2 sixes.
- 60% of patients recover from a disease. If 5 patients are selected, find the probability that at least 4 recover.
Why This Matters
Section titled “Why This Matters”Probability is fundamental to statistics, data science, risk assessment, and decision-making. Bayes’ theorem underpins modern machine learning, medical diagnosis, and legal reasoning. Understanding probability distributions is essential for any quantitative field.
Intuition
Section titled “Intuition”Quantifying uncertainty with numbers: Probability assigns a number between 0 (impossible) and 1 (certain) to how likely an event is. Conditional probability is like narrowing your focus — “given that it’s raining, what’s the chance my picnic is ruined?” uses different information than “what’s the chance it rains?” Bayes’ theorem is the reverse-engineering tool: it takes an observed effect (like a positive test result) and works backward to find the most likely cause (like whether you actually have the disease). The binomial distribution counts successes in a fixed number of independent trials — like flipping a coin 10 times and counting heads.
Why it matters: Probability is the language of uncertainty — it underpins statistics, risk assessment, medical diagnosis, weather forecasting, insurance, gambling odds, and machine learning. Bayes’ theorem is the foundation of modern AI and medical testing. Without probability, we couldn’t make rational decisions under uncertainty.
The key insight: Conditional probability P(A|B) ≠ P(B|A) — “probability of rain given clouds” is very different from “probability of clouds given rain.” This asymmetry is why Bayes’ theorem is so powerful and so commonly misunderstood.
Common Exam Patterns
Section titled “Common Exam Patterns”- Bayes’ theorem problems in standard practice involve multiple stages or sources
- Conditional probability problems often involve “given that” statements
- Binomial distribution applies when there are independent trials with two outcomes
- Practice with tree diagrams for multi-stage probability problems
- Always check if events are independent before applying multiplication rule
Key Formulas
Section titled “Key Formulas”- Conditional probability: ,
- Addition rule:
- Bayes’ theorem:
- Binomial:
- Mean of binomial: , Variance:
- Variance formula:
Worked Example 4 — Conditional Probability with Cards
Section titled “Worked Example 4 — Conditional Probability with Cards”Problem: Two cards are drawn from a standard deck of 52 cards without replacement. Given that the first card is an ace, find the probability that the second card is also an ace.
Solution:
Given the first card is an ace, there are 3 aces left out of 51 remaining cards.
This is a direct application of conditional probability. The sample space reduces from 52 to 51 cards after the first draw.
Common mistake: Calculating instead of just . Since we are given the first card is an ace, we don’t multiply by its probability.
Worked Example 5 — Mean and Variance of Random Variable
Section titled “Worked Example 5 — Mean and Variance of Random Variable”Problem: A random variable has the probability distribution:
| 0 | 1 | 2 | 3 | 4 | |
|---|---|---|---|---|---|
| 0.1 | 0.2 | 0.3 | 0.25 | 0.15 |
Find , , and .
Solution:
Common mistake: Forgetting to square in the variance formula. , not .
Worked Example 6 — Binomial Distribution Application
Section titled “Worked Example 6 — Binomial Distribution Application”Problem: A survey shows that 60% of students prefer online learning. If 8 students are selected at random, find the probability that exactly 5 prefer online learning. Also find the mean and standard deviation.
Solution:
This is a binomial distribution with , , .
Mean:
Variance:
Standard deviation:
Common mistake: Confusing standard deviation with variance. The standard deviation is the square root of the variance.
Exam Tips
Section titled “Exam Tips”- For Bayes’ theorem problems, always draw a tree diagram to visualize the stages
- Conditional probability problems: identify what is “given” and reduce the sample space accordingly
- Binomial distribution requires: fixed number of trials, two outcomes, constant probability, independent trials
- When calculating variance, always use (not )
- Practice problems involving “at least one” — use the complement:
Common Mistakes
Section titled “Common Mistakes”Confusing conditional probability P(A|B) with joint probability P(A and B). P(A|B) = P(A and B) / P(B). Students often use P(A) * P(B) instead, which only works for independent events. Conditional probability requires dividing by the condition’s probability.
Forgetting that Bayes’ theorem requires the total probability in the denominator. The formula is P(Ai|B) = P(B|Ai) P(Ai) / sum(P(B|Aj) P(Aj)). Students sometimes omit the summation, using only one term in the denominator. The denominator must account for all possible ways B can occur.
Confusing the mean and variance formulas for binomial distribution. For binomial(n, p), the mean is np and the variance is npq where q = 1 - p. Students often write variance as np instead of npq, forgetting to multiply by the probability of failure. The variance is always less than the mean for binomial distributions.
Cross-References
Section titled “Cross-References”- Statistics — Probability distributions provide the theoretical foundation for statistical inference and hypothesis testing.
- Matrices — Transition matrices in Markov chains use matrix multiplication to compute state probabilities.
- Calculus — Continuous probability distributions require integration to find probabilities over intervals.