📚 20 Questions⭐ Beginner → Exam Level🎯 Self-Study✍️ With Notes Space
0 / 20 answered
Score
0 / 20
✅ Correct: 0 ❌ Wrong: 0
Basic Prob
\(P(A)=\frac{n(A)}{n(S)}\)
Complement
\(P(A')=1-P(A)\)
Addition
\(P(A\cup B)=P(A)+P(B)-P(A\cap B)\)
Conditional
\(P(A|B)=\frac{P(A\cap B)}{P(B)}\)
Independent
\(P(A\cap B)=P(A)\cdot P(B)\)
SECTION 1 — Basics
ExperimentOutcomeSample Space (S)Event (A)Favorable / Total0 ≤ P ≤ 1Impossible = 0Certain = 1
1
Q1.⭐ Very Easy
A fair six-sided die is rolled once.
What is the probability of rolling a number greater than 4?
The sample space is \(S = \{1, 2, 3, 4, 5, 6\}\), so \(n(S) = 6\).
Numbers greater than 4 are \(\{5, 6\}\), so the event has 2 outcomes.
\(P = \dfrac{2}{6} = \dfrac{1}{3}\)
⚠️ Choice D (1.1) is a trap — forgetting to subtract the intersection!
7
Q7.⭐⭐⭐ Medium
The table shows survey results about pets:
Has Dog
No Dog
Total
Has Cat
8
12
20
No Cat
15
5
20
Total
23
17
40
A person is chosen at random. Find \(P(\text{has cat} \mid \text{has dog})\).
Conditional probability: \(P(A \mid B) = \dfrac{P(A \cap B)}{P(B)}\)
Or simply: restrict your sample space to ONLY the given condition (dog owners = 23).
Given "has dog" → restrict to dog owners only: total = 23
Among dog owners, has cat = 8
⚠️ Mistake: using 40 (whole group) instead of 23 (restricted group). With conditional probability, your denominator ALWAYS shrinks!
SECTION 3 — Combined Events
Independent: P(A∩B) = P(A)×P(B)Dependent: use tree diagramWith replacement → IndependentWithout replacement → DependentMultiply DOWN branchesAdd ACROSS branches
8
Q8.⭐⭐ Easy
A coin is flipped and a die is rolled.
What is the probability of getting Heads AND a 6?
These are independent events — the coin flip does NOT affect the die roll.
\(P(\text{H} \cap 6) = P(\text{H}) \times P(6) = \dfrac{1}{2} \times \dfrac{1}{6} = \dfrac{1}{12}\)
Coin and die are independent events.
\(P(\text{Heads}) = \dfrac{1}{2}\), \(P(6) = \dfrac{1}{6}\)
\(P(\text{Heads AND 6}) = \dfrac{1}{2} \times \dfrac{1}{6} = \dfrac{1}{12}\) ✓
9
Q9.⭐⭐⭐ Medium
A bag has 4 red and 6 blue balls. Two balls are drawn WITHOUT replacement.
What is \(P(\text{both red})\)?
Tree diagram approach (WITHOUT replacement = dependent!):
1st draw: \(P(R) = \dfrac{4}{10}\)
2nd draw (given 1st was red): \(P(R) = \dfrac{3}{9}\) ← one less red AND one less total!
\(P(\text{both red}) = \dfrac{4}{10} \times \dfrac{3}{9}\)
Without replacement → dependent events (denominator decreases!)
⚠️ Classic mistake: using \(\dfrac{4}{10} \times \dfrac{4}{10} = \dfrac{16}{100}\) — this is WITH replacement!
When WITHOUT replacement: both numerator AND denominator decrease.
10
Q10.⭐⭐⭐ Medium
\(P(A) = 0.3\), \(P(B) = 0.4\). Events A and B are independent.
Find \(P(A \cup B)\).
Since independent: \(P(A \cap B) = P(A) \times P(B) = 0.3 \times 0.4 = 0.12\)
Independence means knowing B gives NO extra information about A.
12
Q12.⭐⭐⭐ Medium
In a school, 60% of students study French (F) and 40% study Spanish (S).
20% study both. A student is chosen at random.
Given they study French, what is the probability they also study Spanish?
⚠️ Without complement, you'd need to list: H, HH, HHH for 1, 2, or 3 heads — very slow! Always use the complement for "at least one."
14
Q14.⭐⭐⭐⭐ Hard
Box A has 3 red, 2 white balls. Box B has 1 red, 4 white balls.
A box is chosen at random, then one ball is drawn.
What is the probability the ball is red?
This requires the Total Probability Rule (tree diagram)!
\(P(\text{Red}) = P(\text{Box A}) \cdot P(\text{R}|\text{A}) + P(\text{Box B}) \cdot P(\text{R}|\text{B})\)
⚠️ Remember: two events CAN'T be both mutually exclusive AND independent (unless one has probability 0).
18
Q18.⭐⭐⭐⭐⭐ Exam
A medical test for a disease has:
• Probability the test is Positive given disease: \(P(+|D) = 0.95\)
• Probability the test is Positive given no disease: \(P(+|D') = 0.08\)
• Probability of having the disease: \(P(D) = 0.01\)
A person tests positive. What is \(P(D \mid +)\)?
This is Bayes' Theorem!
\(P(D|+) = \dfrac{P(+|D) \cdot P(D)}{P(+|D) \cdot P(D) + P(+|D') \cdot P(D')}\)
💡 Surprising result! Even with a 95% accurate test, if the disease is rare (1%), only ~10.7% of positive tests are true positives. This is why doctors test again!
19
Q19.⭐⭐⭐⭐⭐ Exam
Three students A, B, C independently solve a problem.
\(P(\text{A solves}) = \dfrac{1}{2}\), \(P(\text{B solves}) = \dfrac{1}{3}\), \(P(\text{C solves}) = \dfrac{1}{4}\).
What is the probability that the problem is solved by at least one student?
Use complement: \(P(\text{at least one}) = 1 - P(\text{none solve it})\)
\(P(\text{at least one}) = 1 - \dfrac{1}{4} = \dfrac{3}{4}\) ✓
⚠️ Always use complement for "at least one" — trying to add all cases directly is a nightmare!
20
Q20.⭐⭐⭐⭐⭐ IB Exam Level
A biased coin has \(P(\text{H}) = 0.6\). It is tossed twice.
Given that at least one Head occurred, what is the probability that both tosses were Heads?
This is a CONDITIONAL probability on a restricted sample space!
\(P(\text{HH} \mid \text{at least 1 H}) = \dfrac{P(\text{HH} \cap \text{at least 1 H})}{P(\text{at least 1 H})}\)
Note: HH ⊂ "at least 1 H" so the intersection is just HH itself.