Probability
🎲 Chapter 13: Probability
1. Introduction
This chapter builds on the basic probability concepts learnt in Class 11 and introduces conditional probability — the probability of an event given that another event has already occurred. This leads to important results like the Multiplication Theorem, Independence of events, Bayes' Theorem, and Probability Distributions.
2. Conditional Probability
The conditional probability of event E, given that event F has already occurred, is denoted P(E|F) and defined as:
P(E|F) = P(E ∩ F) / P(F), provided P(F) ≠ 0
Properties of conditional probability:
- 0 ≤ P(E|F) ≤ 1
- P(S|F) = P(F|F) = 1
- P((A∪B)|F) = P(A|F) + P(B|F) − P((A∩B)|F)
- P(E′|F) = 1 − P(E|F)
3. Multiplication Theorem on Probability
From the definition of conditional probability, we get the multiplication rule:
P(E ∩ F) = P(E) · P(F|E) = P(F) · P(E|F), where P(E) ≠ 0, P(F) ≠ 0
For three events E, F, G:
P(E ∩ F ∩ G) = P(E) · P(F|E) · P(G|E∩F)
4. Independent Events
Two events E and F are said to be independent if the occurrence of one does not affect the probability of occurrence of the other:
P(E ∩ F) = P(E) · P(F)
Equivalently, P(E|F) = P(E) and P(F|E) = P(F), provided the conditional probabilities are defined.
Note: Independent events and mutually exclusive events are different concepts — two events with nonzero probabilities cannot be both mutually exclusive and independent.
5. Total Probability Theorem
Let {E₁, E₂, ..., Eₙ} be a partition of the sample space S (mutually exclusive and exhaustive events, each with nonzero probability), and let A be any event associated with S. Then:
P(A) = P(E₁)P(A|E₁) + P(E₂)P(A|E₂) + ... + P(Eₙ)P(A|Eₙ)
6. Bayes' Theorem
If E₁, E₂, ..., Eₙ are mutually exclusive and exhaustive events with nonzero probabilities forming a partition of sample space S, and A is any event with P(A) > 0, then:
P(Eᵢ|A) = [P(Eᵢ)·P(A|Eᵢ)] / [Σ P(Eⱼ)·P(A|Eⱼ)]
Here, P(Eᵢ) are called priori probabilities (known before the experiment), and P(Eᵢ|A) are called posteriori probabilities (computed after event A has occurred). Bayes' theorem is widely used to "reverse" conditional probabilities.
7. Random Variable and Probability Distribution
Random variable: A real-valued function whose domain is the sample space of a random experiment. Usually denoted X.
Probability distribution: A description that gives the values a random variable can take, along with their corresponding probabilities. If X takes values x₁, x₂, ..., xₙ with probabilities p₁, p₂, ..., pₙ, then:
- pᵢ > 0 for all i
- Σ pᵢ = 1 (sum of all probabilities is 1)
8. Mean and Variance of a Random Variable
Mean (Expectation):
E(X) = μ = Σ xᵢpᵢ
Variance:
Var(X) = σ² = Σ xᵢ²pᵢ − (Σ xᵢpᵢ)² = E(X²) − [E(X)]²
Standard deviation:
σ = √Var(X)
9. Bernoulli Trials and Binomial Distribution
Bernoulli trials: A sequence of trials is called Bernoulli trials if:
- There are a finite number of trials.
- The trials are independent of each other.
- Each trial has exactly two outcomes: success or failure.
- The probability of success remains the same in every trial.
Binomial distribution: For n Bernoulli trials with probability of success p and failure q = 1 − p, the probability of exactly x successes is:
P(X = x) = ⁿCₓ · pˣ · qⁿ⁻ˣ, x = 0, 1, 2, ..., n
Mean = np, Variance = npq
10. Important Formula Summary
| Concept | Formula |
|---|---|
| Conditional probability | P(E|F) = P(E∩F)/P(F) |
| Multiplication rule | P(E∩F) = P(E)·P(F|E) |
| Independent events | P(E∩F) = P(E)·P(F) |
| Total probability | P(A) = ΣP(Eᵢ)P(A|Eᵢ) |
| Bayes' theorem | P(Eᵢ|A) = P(Eᵢ)P(A|Eᵢ) / ΣP(Eⱼ)P(A|Eⱼ) |
| Mean of random variable | E(X) = Σxᵢpᵢ |
| Variance | Var(X) = E(X²) − [E(X)]² |
| Binomial probability | P(X=x) = ⁿCₓ pˣ qⁿ⁻ˣ |
11. Solved Examples
✏️ Example 1: A die is thrown. Find P(number is even | number is greater than 3).
Solution: Let E = even number = {2,4,6}, F = number > 3 = {4,5,6}
E ∩ F = {4,6}, so P(E∩F) = 2/6, P(F) = 3/6
P(E|F) = (2/6)/(3/6) = 2/3
✏️ Example 2: Bag A has 3 red, 2 black balls; Bag B has 2 red, 4 black balls. A bag is chosen at random and a ball drawn — it turns out red. Find the probability it came from Bag A.
Solution: P(A) = P(B) = 1/2
P(Red|A) = 3/5, P(Red|B) = 2/6 = 1/3
By Bayes' theorem: P(A|Red) = [P(A)P(Red|A)] / [P(A)P(Red|A) + P(B)P(Red|B)]
= (1/2 × 3/5) / [(1/2×3/5) + (1/2×1/3)] = (3/10) / (3/10 + 1/6)
= (3/10) / (14/30) = (9/30)/(14/30) = 9/14
✏️ Example 3: A coin is tossed 4 times. Find the probability of getting exactly 3 heads.
Solution: n = 4, p = 1/2, q = 1/2, x = 3
P(X=3) = ⁴C₃ (1/2)³(1/2)¹ = 4 × (1/16) = 4/16
P(X=3) = 1/4
12. Quick Revision Points
- Conditional probability P(E|F) needs P(F) ≠ 0.
- Independent ≠ mutually exclusive — don't confuse the two.
- Bayes' theorem is used to find the probability of a "cause" given an observed "effect."
- Total probability theorem needs a proper partition of the sample space (mutually exclusive + exhaustive).
- For a valid probability distribution, all probabilities must be positive and must sum to 1.
- Binomial distribution requires independent trials with a constant probability of success.
- Mean of binomial distribution = np; Variance = npq (always npq ≤ np since q ≤ 1).
Post a Comment