Probability, Random Variables, and Probability Distributions
Unit 2 of AP Statistics, worth 15–25% of the exam. 14 questions below, each with the working. Every answer was checked by a second pass before it was published.
Probability rules, conditional probability and independence, random variables, binomial and geometric distributions, sampling distributions.
How this unit is tested
What you have to know
14 practice questions
-
At a school, 40% of students play a sport, 30% play an instrument, and 15% do both. What is the probability a randomly chosen student plays a sport or an instrument?
Show the answer
Answer. 0.55
Use the general addition rule since the events overlap: P(sport or instrument) = P(sport) + P(instrument) − P(both) = 0.40 + 0.30 − 0.15 = 0.55. Subtracting the overlap avoids double-counting students who do both. -
In a survey of 200 students, 120 are girls and 80 are boys. Of the girls, 90 passed an exam; of the boys, 50 passed. What is P(passed | girl)?
Show the answer
Answer. 0.75
Conditional probability restricts attention to the given group. P(pass | girl) = (number of girls who passed) / (total girls) = 90/120 = 0.75. -
Using the same survey (200 students, 120 girls with 90 passing, 80 boys with 50 passing), are 'being a girl' and 'passing the exam' independent? Justify with numbers.
Show the answer
Answer. No, they are not independent
Overall P(pass) = 140/200 = 0.70. But P(pass | girl) = 90/120 = 0.75. Since 0.75 ≠ 0.70, knowing a student is a girl changes the probability of passing, so the events are dependent. -
A bag contains 5 red and 3 blue marbles. Two marbles are drawn without replacement. What is the probability both are red?
Show the answer
Answer. 5/14 (approximately 0.357)
Use the general multiplication rule for dependent events: P(both red) = P(first red) × P(second red | first red) = (5/8)(4/7) = 20/56 = 5/14. -
A discrete random variable X has distribution: P(X=0)=0.1, P(X=1)=0.3, P(X=2)=0.4, P(X=3)=0.2. Find E(X).
Show the answer
Answer. 1.7
E(X) = Σ x·P(x) = 0(0.1) + 1(0.3) + 2(0.4) + 3(0.2) = 0 + 0.3 + 0.8 + 0.6 = 1.7. -
For the same distribution (P(X=0)=0.1, P(X=1)=0.3, P(X=2)=0.4, P(X=3)=0.2, with μ = 1.7), find the standard deviation of X.
Show the answer
Answer. 0.9
Compute Var(X) = Σ(x−μ)²P(x) = (0−1.7)²(0.1)+(1−1.7)²(0.3)+(2−1.7)²(0.4)+(3−1.7)²(0.2) = 0.289+0.147+0.036+0.338 = 0.81. Then SD(X) = sqrt(0.81) = 0.9. -
If X has mean 1.7 and standard deviation 0.9, and Y = 3X + 5, what are the mean and standard deviation of Y?
Show the answer
Answer. Mean = 10.1, SD = 2.7
For a linear transformation, E(aX+b) = a·E(X)+b and SD(aX+b) = |a|·SD(X). So E(Y) = 3(1.7)+5 = 10.1, and SD(Y) = 3(0.9) = 2.7. Adding a constant shifts the mean but never changes the spread. -
Test 1 scores have mean 75 and standard deviation 8. Test 2 scores (independent of Test 1) have mean 80 and standard deviation 6. Find the mean and standard deviation of the total score T = Test1 + Test2.
Show the answer
Answer. Mean = 155, SD = 10
Means always add: E(T) = 75+80 = 155. For independent random variables, variances add (not standard deviations): Var(T) = 8² + 6² = 64+36 = 100, so SD(T) = sqrt(100) = 10. -
Which scenario describes a binomial random variable?
Show the answer
Answer. The number of successes in 10 independent trials, each with probability of success 0.3
This satisfies BINS: binary outcomes, independent trials, a fixed number of trials (10), and constant probability (0.3) each time. The other options involve counting trials until a success (geometric) or drawing without replacement, which violates independence. -
Historically, 25% of emails received by a company are spam. In a random sample of 10 emails, what is P(exactly 2 are spam)?
Show the answer
Answer. Approximately 0.282
X ~ Binomial(n=10, p=0.25). P(X=2) = C(10,2)(0.25)²(0.75)^8 = 45 × 0.0625 × 0.1001 ≈ 0.282. -
For the spam-email scenario (n = 10, p = 0.25), find the mean and standard deviation of the number of spam emails in the sample.
Show the answer
Answer. Mean = 2.5, SD ≈ 1.369
For a binomial random variable, μ = np = 10(0.25) = 2.5, and σ = sqrt(np(1−p)) = sqrt(10 × 0.25 × 0.75) = sqrt(1.875) ≈ 1.369. -
A quality inspector tests items one at a time; the probability an item is defective is 0.1, and items are independent. What is the probability the first defective item is the 5th one tested?
Show the answer
Answer. Approximately 0.0656
This is a geometric setting with p = 0.1. P(X=5) = (1−p)^(5−1) × p = (0.9)^4 × 0.1 = 0.6561 × 0.1 ≈ 0.0656. The first 4 items must be non-defective, and the 5th must be defective. -
A population has proportion p = 0.6 with a characteristic of interest. A random sample of n = 50 is taken. Find the mean and standard deviation of the sampling distribution of p̂, and check whether it is approximately normal.
Show the answer
Answer. Mean = 0.6, SD ≈ 0.0693; approximately normal since conditions are met
The sampling distribution of p̂ has mean p = 0.6 and SD = sqrt(p(1−p)/n) = sqrt(0.6×0.4/50) = sqrt(0.0048) ≈ 0.0693. Checking the normal condition: np = 30 ≥ 10 and n(1−p) = 20 ≥ 10, so the sampling distribution is approximately normal. -
A population of light bulb lifetimes is strongly skewed with mean 1000 hours and standard deviation 200 hours. A random sample of n = 64 bulbs is selected and the sample mean x̄ is computed. Describe the shape, mean, and standard deviation of the sampling distribution of x̄.
Show the answer
Answer. Approximately normal, mean = 1000 hours, SD = 25 hours
The sampling distribution of x̄ always has mean μ = 1000 and SD = σ/sqrt(n) = 200/sqrt(64) = 200/8 = 25. Even though the population is skewed, the Central Limit Theorem guarantees the sampling distribution of x̄ is approximately normal because the sample size (n = 64) is large.
What people get wrong
- Writing P(A|B) when the problem gives P(B|A), or vice versa — conditional probability is not symmetric. Always identify which event is the 'given' condition before dividing.
- Assuming two events are independent because they seem unrelated in context. Instead, compute P(A), P(B), and P(A and B) (or P(B|A)) and check the independence equation numerically.
- Using the simple addition rule P(A)+P(B) for events that overlap. Instead, always subtract P(A and B) unless the problem explicitly states or a Venn diagram confirms the events are mutually exclusive.
- Applying the binomial formula to a without-replacement scenario drawn from a small population, where trials are not actually independent. Instead, check that the population is much larger than the sample (a common rule of thumb is at least 10 times the sample size) before treating it as binomial.
- Adding standard deviations directly when combining independent random variables. Instead, add variances first (Var(X+Y) = Var(X) + Var(Y) for independent X, Y), then take the square root to get the standard deviation of the sum.
- Declaring a sampling distribution 'approximately normal' without checking the relevant condition. Instead, verify np ≥ 10 and n(1−p) ≥ 10 for a proportion, or confirm a large enough sample size (or a stated normal population) before invoking the Central Limit Theorem for a mean.
Drill this unit until it sticks
These questions come back on a schedule built from what you get wrong, alongside the rest of AP Statistics. Free, and no account needed to start.