0% found this document useful (0 votes)
3 views22 pages

Probability_Masterclass

This document serves as a comprehensive guide to mastering probability, covering core concepts, essential formulas, and problem-solving techniques. It includes detailed explanations of probability rules, counting methods, conditional probability, and distributions, along with worked examples and practice questions. The 5-step universal problem-solving framework is emphasized to assist learners in tackling any probability question effectively.

Uploaded by

panduastp
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views22 pages

Probability_Masterclass

This document serves as a comprehensive guide to mastering probability, covering core concepts, essential formulas, and problem-solving techniques. It includes detailed explanations of probability rules, counting methods, conditional probability, and distributions, along with worked examples and practice questions. The 5-step universal problem-solving framework is emphasized to assist learners in tackling any probability question effectively.

Uploaded by

panduastp
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

MASTERING PROBABILITY

Full Topic Analysis • Formulas Explained • Easy Solving Techniques

Complete Guide • Formulas Analyzed • Problem-Solving Techniques


Agenda – What You'll Master Today
1. Core Concepts & Terminology
2. All Essential Probability Formulas – Analyzed
3. Counting Techniques: Permutations & Combinations
4. Conditional Probability & Bayes' Theorem
5. Probability Distributions: Binomial & Normal
6. The 5-Step UNIVERSAL Problem-Solving Framework
7. 4 Fully Worked Examples
8. Cheat Sheet & Practice Questions
1. What is Probability?
The foundation of statistics, risk, AI, and decision science
Probability is the measure of how likely an event is to occur.
Range: 0 to 1 | or 0% to 100%
P=0 → Impossible event
P = 0.5 → Equally likely
P = 1 → Certain event

KEY IDEA: Probability = What we WANT / What is POSSIBLE


Key Terminology You MUST Know
Learn these 5 words and 80% of probability becomes easy
Experiment: An action with uncertain results. e.g., Rolling a die
Outcome: One possible result. e.g., getting a '4'
Sample Space (S): ALL possible outcomes
Die roll: S = {1,2,3,4,5,6} → n(S) = 6
Event (A): A specific set of outcomes we care about
Event 'Even number': A = {2,4,6} → n(A) = 3
Favorable Outcomes: Outcomes that make the event happen
The FUNDAMENTAL Probability Formula
Analyzed: This is the master formula. All others are derived from it.
P(A) = n(A) / n(S)
P(A) = Number of Favorable Outcomes / Total Number of Possible Outcomes

Example: Probability of rolling an even number


n(S) = 6, n(A) = 3
P(Even) = 3/6 = 1/2 = 0.5 = 50%

This formula works ONLY if all outcomes are EQUALLY LIKELY


The 7 Essential Probability Rules
OR = Add, AND = Multiply
1. Complement Rule: P(A') = 1 - P(A)
Use when 'NOT' / 'at least one' appears – saves huge time
2. Addition Rule – OR: P(A ∪ B) = P(A) + P(B) - P(A ∩ B)
If Mutually Exclusive: P(A ∪ B) = P(A) + P(B)
3. Multiplication Rule – AND: P(A ∩ B) = P(A) × P(B|A)
If Independent: P(A ∩ B) = P(A) × P(B)
4. Conditional: P(A|B) = P(A ∩ B) / P(B)
Addition Rule – Analyzed
Venn Diagrams make this visual and easy
P(A OR B) = P(A ∪ B) = P(A) + P(B) - P(A ∩ B)

WHY subtract P(A B)? To avoid double-counting.
Example: Card drawn. P(King OR Heart) = ?
P(King) = 4/52, P(Heart) = 13/52
P(King ∩ Heart) = 1/52 [King of Hearts]
Answer: 4/52 + 13/52 - 1/52 = 16/52 = 4/13

If MUTUALLY EXCLUSIVE (cannot happen together): P(A ∩ B) = 0


Multiplication Rule & Independence
WITH replacement = Independent. WITHOUT replacement = Dependent
P(A AND B) = P(A ∩ B) = P(A) × P(B|A)
Independent Events: One does NOT affect the other
Coin toss 1 does not affect Coin toss 2
Formula: P(A ∩ B) = P(A) × P(B)
Dependent Events: WITHOUT replacement
Drawing 2 cards without replacement – 2nd probability changes
Formula: P(A ∩ B) = P(A) × P(B|A)
Conditional Probability – Analyzed
Read '|' as 'GIVEN'
P(A | B) = Probability of A GIVEN that B has already occurred

Formula: P(A|B) = P(A ∩ B) / P(B)


INTUITION: B happening shrinks your Sample Space.
Example: Two dice sum is 8. What is P(one die is 3 | sum is 8)?
Reduced Sample Space for sum 8: {(2,6),(3,5),(4,4),(5,3),(6,2)} → 5 outcomes
Favorable: (3,5), (5,3) → 2 outcomes
Answer: 2/5 = 0.4
Bayes' Theorem – Made Simple
Prior × Likelihood / Evidence
Use Bayes when you need to FLIP a conditional probability.

P(A|B) to find P(B|A)→
P(A | B) = [ P(B | A) × P(A) ] / P(B)

Real-world: Medical tests, Spam filters, AI


P(Disease | Positive Test) = ?
You know P(Positive | Disease), flip it with Bayes.
Counting Techniques: Permutations & Combinations
90% of student errors are here. Remember ORDER.
Use when Sample Space is too large to list.

Permutation – ORDER MATTERS


nPr = n! / (n-r)! e.g., President, VP, Secretary

Combination – ORDER DOES NOT MATTER


nCr = n! / [r! (n-r)!] e.g., Team selection, lottery

QUICK TEST: Swap two items. Does it create a NEW case? YES=Permutation, NO=Combination
Probability Distributions
Binomial = Discrete counting. Normal = Continuous measurement.
Binomial Distribution – For YES/NO trials
Conditions: n fixed trials, 2 outcomes, p constant, independent
P(X = k) = C(n,k) × p^k × (1-p)^(n-k)
Mean = np, Variance = npq

Normal Distribution – Bell Curve


Continuous, symmetric, Mean = Median = Mode
Z = (X - μ) / σ → Use Z-table
Expected Value: E(X) = Σ [x × P(x)]
THE 5-STEP UNIVERSAL PROBLEM-SOLVING FRAMEWORK
Use this for ANY probability question – from school to university
STEP 1 – READ & IDENTIFY: What is the Experiment? What is Event A?
STEP 2 – FIND n(S): Total outcomes. Use counting if needed.
STEP 3 – FIND n(A): Favorable outcomes.
STEP 4 – CHOOSE THE RIGHT FORMULA:
See AND? → Multiply. See OR? → Add.
See GIVEN? → Conditional. See WITHOUT REPLACEMENT? → Dependent.
See AT LEAST ONE? → Use Complement: 1 - P(None)
STEP 5 – CALCULATE & SANITY CHECK: Is answer between 0 and 1?
Worked Example 1: Dice
Addition Rule – Mutually Exclusive
Question: Two fair dice are rolled. Find P(sum = 7 OR sum = 11).

Step 1: n(S) = 6 × 6 = 36

Step 2: Sum 7 {(1,6),(2,5),(3,4),(4,3),(5,2),(6,1)} → 6 outcomes
Sum 11 → {(5,6),(6,5)} → 2 outcomes
Step 3: Mutually Exclusive? YES. Cannot be 7 and 11 together.
Step 4: P = 6/36 + 2/36 = 8/36 = 2/9 ≈ 0.222
Worked Example 2: Cards
Dependent Events – Without Replacement
Question: Draw 2 cards WITHOUT replacement. P(Both are Aces)?

Method 1 – Sequential:
P(1st Ace) = 4/52
P(2nd Ace | 1st Ace) = 3/51
P = 4/52 × 3/51 = 12/2652 = 1/221 ≈ 0.0045

Method 2 – Combinations:
P = C(4,2) / C(52,2) = 6 / 1326 = 1/221
Worked Example 3: Bayes' Theorem – Medical Test
This is why Bayes matters in real life
Disease affects 1% of population. Test is 99% accurate.
P(Disease) = 0.01, P(Pos | Disease) = 0.99, P(Pos | No Disease) = 0.01
Question: If you test POSITIVE, what is P(Disease | Pos)?

P(Pos) = 0.99×0.01 + 0.01×0.99 = 0.0198


P(Disease | Pos) = [0.99 × 0.01] / 0.0198 = 0.5 = 50%

Surprising! Even with a 99% test, it's only 50% – because disease is rare.
Worked Example 4: Balls in a Bag
Combination Probability – Classic exam question
Bag: 5 Red, 3 Blue, 2 Green. Draw 3 WITHOUT replacement.
Find P(1 of each color).

Total ways: n(S) = C(10,3) = 120


Favorable: C(5,1) × C(3,1) × C(2,1) = 5 × 3 × 2 = 30

P = 30 / 120 = 0.25 = 25%

TECHNIQUE: For 'at least 1 Red' → use Complement: 1 - P(No Red)


Techniques to Solve ANY Probability Question Easily
Print this slide and keep it.
1. DRAW IT: Tree diagram, Venn diagram, or Table. Always.
2. KEYWORD DECODER:
AND / BOTH → Multiply | OR → Add
GIVEN / IF → Conditional | AT LEAST ONE → 1 - P(None)
WITHOUT REPLACEMENT → Dependent, probability changes
3. COMPLEMENT TRICK: P(At least 1) = 1 - P(Zero). Saves 90% of work.
4. CHECK INDEPENDENCE: With replacement? Independent. Without? Dependent.
5. SANITY CHECK: Answer must be 0 to 1. Probabilities of all outcomes sum to 1.
Common Mistakes to AVOID
❌ Confusing Permutation vs Combination → Ask: Does ORDER matter?
❌ Adding for AND, Multiplying for OR → It's the OPPOSITE.
❌ Forgetting 'Without Replacement' → Denominator decreases!
❌ Double counting in OR problems → Always subtract the overlap.
❌ P(A|B) = P(B|A) → NO. Use Bayes to flip.
❌ Answer > 1 or < 0 → Impossible. Recalculate.
✅ Always define your Event A first. Then count.
Probability CHEAT SHEET – All Formulas
Screenshot this slide!
Basic: P(A) = n(A) / n(S) | P(A') = 1 - P(A)

Addition: P(A B) = P(A)+P(B)-P(A B) ∩

Multiplication: P(A B) = P(A) × P(B|A)

Independent: P(A B) = P(A) × P(B)

Conditional: P(A|B) = P(A B) / P(B)
Bayes: P(A|B) = P(B|A)P(A) / P(B)
Permutation: nPr = n!/(n-r)! | Combination: nCr = n! / r!(n-r)!
Binomial: P(X=k) = C(n,k) p^k q^(n-k)
Expected Value: E(X) = Σ x·P(x) | Z-score: Z = (X-μ)/σ
Practice Questions
Q1. A coin is tossed 3 times. P(At least 2 Heads)?
Q2. P(Prime number) on a fair die?
Q3. Two cards drawn with replacement. P(Both Kings)?
Q4. Bag: 4W, 6B. Draw 2 without replacement. P(Different colors)?

Q5. P(A)=0.4, P(B)=0.5, P(A B)=0.2. Find P(A ∪ B).
Answers: 1) 0.5 2) 0.5 3) 1/169 4) 24/45 ≈ 0.533 5) 0.7
Thank You
Master Probability – Practice with the 5-Step Framework

You might also like