All concepts

13. Probability

Exactly vs at-least, complement trick. Without replacement needs actual counts, not just ratios.

P(at least one) = 1 − P(none)at least onenonewhole bar = 1subtract thiscounting the complement is easier

Core ideas

- "At least one" almost always means complement: P(at least one) = 1 - P(none).
- "Exactly k" needs the arrangement count: P(exactly k successes) = (ways to place the successes) * (probability of one specific arrangement).
- Without replacement changes the counts on every draw: update both numerator and denominator each pull.
- Probability = favorable / total only when outcomes are equally likely; otherwise multiply along the branch.

Worked example 1

A bag holds 4 red and 6 blue marbles. Two are drawn without replacement. What is the probability both are red?

Show solution

First draw: 4 red out of 10 marbles, so 4/10. After removing a red, 3 red remain out of 9, so the second draw is 3/9. Multiply: (4/10) * (3/9) = 12/90 = 2/15. The denominators shrink because nothing goes back in.

Worked example 2

A fair coin is flipped 4 times. What is the probability of getting at least one head, and separately, exactly two heads?

Show solution

At least one head: use the complement. P(no heads) = (1/2)^4 = 1/16, so P(at least one) = 1 - 1/16 = 15/16. Exactly two heads: any specific sequence has probability (1/2)^4 = 1/16, and the two heads can land in 4C2 = 6 positions. So P(exactly two) = 6/16 = 3/8. Note the split: at-least used complement, exactly used a placement count.

Practice set

Question 1

A committee of 2 people is selected at random from a group of 5 men and 3 women. What is the probability that the committee contains exactly one woman?






Question 2

A jar contains 8 blue marbles and r red marbles. If two marbles are drawn at random without replacement, the probability that both are blue is 14/33. What is the value of r?






Question 3

A fair six-sided die is rolled twice. What is the probability that at least one of the rolls shows a 6?






Question 4

A bag contains 4 red marbles and 6 blue marbles. If two marbles are drawn at random without replacement, what is the probability that both are blue?