All questions
Question 1
A weather app shows that the probability of rain on Saturday is 0.3 and the probability of rain on Sunday is 0.4. Assuming these events are independent, what is the probability that it rains on exactly one of these two days?
- 0.42
- 0.46 (correct answer)
- 0.58
- 0.70
Explanation: P(exactly one day rains) = P(rain Sat, no rain Sun) + P(no rain Sat, rain Sun) = (0.3)(0.6) + (0.7)(0.4) = 0.18 + 0.28 = 0.46. Choice A represents P(rain both days) = 0.3 × 0.4. Choice C represents P(at least one day rains) = 1 - P(no rain either day) = 1 - 0.7 × 0.6 = 0.58. Choice D incorrectly adds the individual probabilities without considering independence.
Question 2
Maya has a spinner with 4 equal sections colored red, blue, green, and yellow. She spins twice and records both colors. What is the probability that she gets at least one red in her two spins?
- 41
- 21
- 167 (correct answer)
- 83
Explanation: The probability of getting at least one red is easier to calculate using the complement: P(at least one red) = 1 - P(no reds). P(no red on first spin) = 3/4, P(no red on second spin) = 3/4. P(no reds in two spins) = (3/4) × (3/4) = 9/16. Therefore, P(at least one red) = 1 - 9/16 = 7/16. Choice A incorrectly uses the probability of one red spin. Choice B incorrectly adds probabilities without considering overlap. Choice D represents the probability of exactly one red.
Question 3
Carlos rolls two standard six-sided dice. Given that the sum of the dice is greater than 8, what is the probability that both dice show the same number?
- 51 (correct answer)
- 102
- 61
- 103
Explanation: This is conditional probability. First, find outcomes where sum > 8: (3,6), (4,5), (4,6), (5,4), (5,5), (5,6), (6,3), (6,4), (6,5), (6,6) = 10 outcomes. Among these, the outcomes where both dice match are: (5,5), (6,6) = 2 outcomes. P(both same | sum > 8) = 2/10 = 1/5. Choice B is the unreduced fraction. Choice C ignores the condition and uses 6/36. Choice D incorrectly counts outcomes where sum > 8 and includes non-matching pairs.
Question 4
In a class, 60% of students play basketball, 40% play soccer, and 25% play both sports. If a student is randomly selected from those who play basketball, what is the probability that this student also plays soccer?
- 10025
- 4025
- 4015
- 6025 (correct answer)
Explanation: When you encounter conditional probability problems, you're looking for the chance of one event happening given that another event has already occurred. This changes your sample space from all students to just those who meet the given condition.
Here, you need the probability that a basketball player also plays soccer. Since you're selecting from basketball players only, your sample space becomes the 60% who play basketball, not all students. Of these basketball players, 25% of the total class plays both sports.
To find this conditional probability, divide the overlap (students who play both) by the condition group (basketball players): 60%25%=6025. This represents the fraction of basketball players who also play soccer.
Choice A (10025) gives you the probability that any randomly selected student plays both sports, ignoring the basketball condition. Choice B (4025) incorrectly uses soccer players as the denominator - this would answer "given a soccer player, what's the probability they play basketball?" Choice C (4015) appears to subtract the overlap from something, but there's no logical basis for this calculation in conditional probability.
The correct answer is D: 6025.
Study tip: For conditional probability, always ask "What's my new, restricted sample space?" Then put the overlap in the numerator and the restricting condition in the denominator. The formula is: P(A|B) = P(A and B) ÷ P(B).
Question 5
Elena flips three fair coins simultaneously. What is the probability that she gets exactly two heads, given that she gets at least one head?
- 83
- 73 (correct answer)
- 21
- 72
Explanation: This is conditional probability. P(exactly 2 heads | at least 1 head) = P(exactly 2 heads AND at least 1 head) ÷ P(at least 1 head). Since exactly 2 heads automatically satisfies at least 1 head, the numerator is just P(exactly 2 heads) = 3/8. P(at least 1 head) = 1 - P(no heads) = 1 - 1/8 = 7/8. Therefore, P(exactly 2 heads | at least 1 head) = (3/8) ÷ (7/8) = 3/7. Choice A ignores the condition. Choice C incorrectly assumes equal likelihood among favorable outcomes. Choice D miscounts favorable outcomes.
Question 6
Two fair six-sided dice are rolled. How many outcomes are in the compound sample space of ordered pairs (a,b)?
- 72
- 36 (correct answer)
- 18
- 12
Explanation: This question tests compound event probability as the fraction of the compound sample space by listing outcomes, counting favorable ones, and dividing by the total. A compound event combines simple events like rolling two dice, with the compound space including all combinations such as {HH, HT, TH, TT}=4 for two coins or 36 for two dice. The event probability is found by identifying favorable outcomes and calculating P = favorable/total, like both heads {HH} with P=1/4. For example, with two coins {HH, HT, TH, TT}, 'both heads' has {HH}, so P=1/4; for sum=7 on dice, there are 6 favorable outcomes, P=6/36=1/6. The correct answer is C, 36, because there are 6 options for each die, so 6x6=36 ordered pairs. A common error is adding instead of multiplying, like 6+6=12, or doubling to 72. To find this, (1) identify the compound process of two dice, (2) list or count the space as 36, (3) identify favorable (not here), (4) count total, (5) no P; systematic listing helps, and order matters for pairs. Mistakes include incomplete space like 18 for unordered, or miscounting as 12.
Question 7
A game involves rolling a standard die twice. Players win if they get a sum of 7 or if both rolls show even numbers. What is the probability of winning this game?
- 31
- 94
- 187
- 125 (correct answer)
Explanation: When you see probability questions involving "or" conditions, you need to be careful about overlapping outcomes. This game has two winning conditions: getting a sum of 7 OR getting both even numbers.
Let's find each probability separately, then account for overlap. With two dice rolls, there are 36 total possible outcomes.
For a sum of 7, the winning combinations are: (1,6), (2,5), (3,4), (4,3), (5,2), (6,1) — that's 6 outcomes, so P(sum of 7) = 366=61.
For both rolls even, you need even numbers (2, 4, 6) on both dice. That's 3 × 3 = 9 outcomes, so P(both even) = 369=41.
Here's the key: these events can't happen simultaneously. A sum of 7 requires one odd and one even number, while "both even" requires... both even. Since there's no overlap, you simply add the probabilities: 61+41=122+123=125.
Choice A (31) likely comes from incorrectly counting favorable outcomes. Choice B (94) might result from using 18 as the denominator instead of 36. Choice C (187) could come from miscalculating the overlap or the individual probabilities.
Remember: when dealing with "or" in probability, add the individual probabilities but subtract any overlap. Always check whether the events can occur simultaneously — it determines whether you need that subtraction step.
Question 8
A student flips a fair coin and rolls a fair six-sided die. How many outcomes are favorable for the event “heads and even”?
- 2
- 3 (correct answer)
- 12
- 6
Explanation: This question tests compound event probability as the fraction of the compound sample space: list all possible outcomes, count the favorable ones, and divide by the total. A compound event combines simple events like coin flip and die roll, with compound space of 12 outcomes, probability as favorable over total, like both heads on two coins P=1/4. For example, two coins {HH, HT, TH, TT}, both heads {HH}, P=1/4; sum=7 on dice, 6 favorable, P=6/36=1/6. The correct number is 3 because favorable are H with even die: H2, H4, H6. A common error is counting all evens including tails, leading to 6. To find the count, (1) identify compound process, (2) list space of 12, (3) identify heads and even, (4) count 3 (evens:2,4,6 with H), (5) for P=3/12. Systematic listing by coin then die ensures accuracy; mistakes include miscounting evens or including tails.
Question 9
Two fair coins are flipped. A student says the probability of getting two heads is 21 because “heads has a 21 chance.” What is the correct probability of two heads using the compound sample space {HH,HT,TH,TT}?
- 31
- 21
- 41 (correct answer)
- 42
Explanation: This question tests compound event probability as the fraction of the compound sample space: list all possible outcomes, count the favorable ones, and divide by the total. A compound event combines simple events like two coin flips, with space {HH, HT, TH, TT}=4, probability favorable over total, like both heads {HH} P=1/4. For example, two coins space, both heads 1/4; dice sum=7, 6/36=1/6. The correct probability is 1/4 as only HH is favorable out of 4. The student's error is using simple probability for one coin, ignoring compound nature and distinct outcomes like HT and TH. To find it, (1) identify two flips, (2) list space 4, (3) identify two heads, (4) count 1, (5) P=1/4. Order matters, systematic listing avoids mistakes like treating HT=TH as one.
Question 10
Two fair six-sided dice are rolled. Which list shows all favorable ordered outcomes for the event “sum is 7”?
- (6,1),(5,2),(4,3)
- (1,6),(2,5),(3,4)
- (1,6) only
- (1,6),(2,5),(3,4),(4,3),(5,2),(6,1) (correct answer)
Explanation: This question tests compound event probability as the fraction of the compound sample space: list all possible outcomes, count the favorable ones, and divide by the total. A compound event combines simple events like rolling two dice, with the compound space being 36 ordered pairs, and probability as favorable over total, like both heads on coins P=1/4. For example, with two coins {HH, HT, TH, TT}, 'both heads' {HH}, P=1/4; for sum=7 on dice, 6 favorable like (1,6) to (6,1), P=6/36=1/6. The correct list is all six ordered pairs because it includes both directions like (3,4) and (4,3). A common error is listing only one direction, like just (1,6),(2,5),(3,4), missing half. To find favorable outcomes, (1) identify the compound process of two dice, (2) count space as 36, (3) identify sums of 7, (4) list and count all 6, (5) for P=6/36. Systematic listing by first die ensures completeness, order matters; mistakes include ignoring order or incomplete lists.
Question 11
A student flips two fair coins. The compound sample space is {HH, HT, TH, TT}. What is the probability of getting two heads?
- 1/4 (correct answer)
- 2/4
- 1/2
- 1/3
Explanation: Flipping two coins gives four equally likely outcomes: HH, HT, TH, and TT. Only one of these outcomes, HH, shows two heads, so the probability is 1 out of 4, or 1/4, matching Choice A. Choice B and Choice C both give 1/2, which would be the probability of getting exactly one head, not two heads. Choice D, 1/3, does not match any correct count from the sample space of 4 outcomes.
Question 12
A student flips a fair coin and then rolls a fair six-sided die. Which set lists all favorable outcomes for the event heads and an even number?
- {T2,T4,T6}
- {H2,H4,H6} (correct answer)
- {H1,H3,H5}
- {H2,T2,H4,T4,H6,T6}
Explanation: This question tests compound event probability as the fraction of the compound sample space by listing outcomes, counting favorable ones, and dividing by the total. A compound event combines simple events like flipping a coin and rolling a die, with the compound space including all combinations for a total of 12 outcomes, and the probability is calculated by identifying favorable outcomes and dividing by the total, for example, both heads on two coins {HH} out of {HH, HT, TH, TT} gives P=1/4. For example, with two coins {HH, HT, TH, TT}, the event 'both heads' has {HH} as favorable, so P=1/4; similarly, for sum=7 on two dice, there are 6 favorable outcomes out of 36, so P=6/36=1/6. The correct answer is B, {H2, H4, H6}, because these are all outcomes with heads and even die rolls. A common error is including tails or odd numbers, like in choices A or C. To find such probabilities, (1) identify the compound process, (2) list or count the sample space, (3) identify favorable outcomes, (4) count them, and (5) calculate P as favorable over total. Use systematic listing to ensure all outcomes are included, remembering that order matters in sequencing, and avoid mistakes like incomplete favorable sets or ignoring conditions.
Question 13
A student flips two fair coins. The compound sample space is {HH,HT,TH,TT}. What is the probability of getting two heads?
- 31
- 42
- 41 (correct answer)
- 21
Explanation: This question tests compound event probability as the fraction of the compound sample space: list all possible outcomes, count the favorable ones, and divide by the total. A compound event combines simple events like flipping two coins, with the compound space being all combinations such as {HH, HT, TH, TT} totaling 4 outcomes, and the probability is the number of favorable outcomes divided by total, like both heads {HH} giving P=1/4. For example, with two coins {HH, HT, TH, TT}, the event 'both heads' has {HH} as favorable, so P=1/4; similarly, for sum=7 on two dice, there are 6 favorable out of 36, P=6/36=1/6. The correct answer is 1/4 because there is only one favorable outcome, HH, out of four equally likely outcomes. A common error is thinking it's 1/2 by mistakenly using single coin probability without considering the compound space. To find this probability, (1) identify the compound process of two coin flips, (2) list or count the space as 4 outcomes, (3) identify favorable as two heads, (4) count 1 favorable, (5) calculate P=1/4. Use systematic listing to ensure all outcomes are included, remembering order matters in distinguishing HT and TH; mistakes include incomplete spaces or ignoring order.
Question 14
Two fair six-sided dice are rolled. How many outcomes are in the compound sample space?
- 18
- 6
- 12
- 36 (correct answer)
Explanation: This question tests compound event probability as the fraction of the compound sample space by listing outcomes, counting favorable ones, and dividing by the total. A compound event combines simple events like rolling two dice, with the compound space including all combinations for a total of 36 outcomes, and the probability is calculated by identifying favorable outcomes and dividing by the total, for example, both heads on two coins {HH} out of {HH, HT, TH, TT} gives P=1/4. For example, with two coins {HH, HT, TH, TT}, the event 'both heads' has {HH} as favorable, so P=1/4; similarly, for sum=7 on two dice, there are 6 favorable outcomes out of 36, so P=6/36=1/6. The correct answer is C, 36, because each die has 6 faces, so 6x6=36 outcomes. A common error is confusing with simple space or adding instead of multiplying, like thinking it's 12. To find such probabilities, (1) identify the compound process, (2) list or count the sample space, (3) identify favorable outcomes, (4) count them, and (5) calculate P as favorable over total. Use systematic listing to ensure all outcomes are included, remembering that order matters in distinguishing dice, and avoid mistakes like incomplete spaces or wrong total count.
Question 15
Two fair six-sided dice are rolled. A student counts only one favorable outcome for sum 7: (1,6). Which fraction correctly represents P(sum=7) using all ordered outcomes?
- 126
- 367
- 361
- 366 (correct answer)
Explanation: This question tests compound event probability as the fraction of the compound sample space: list all possible outcomes, count the favorable ones, and divide by the total. A compound event combines simple events like two dice rolls, space 36 ordered pairs, P=favorable/total like coin both heads 1/4. For example, coins {HH,HT,TH,TT}, both heads 1/4; dice sum=7 has 6 favorable, 6/36=1/6. The correct fraction is 6/36 as there are six ordered pairs summing to 7, not just one. The student's error is counting only one outcome like (1,6), missing others like (6,1). To calculate, (1) identify two rolls, (2) space 36, (3) sum=7, (4) count 6, (5) P=6/36. Order matters, list systematically to avoid incomplete favorable counts.
Question 16
Two fair six-sided dice are rolled. There are 36 equally likely ordered outcomes (1,1) through (6,6). What is the probability that the sum is 7?
- 367
- 61
- 361
- 366 (correct answer)
Explanation: This question tests compound event probability as the fraction of the compound sample space: list all possible outcomes, count the favorable ones, and divide by the total. A compound event combines simple events like rolling two dice, with the compound space being all combinations totaling 36 outcomes, and the probability is the number of favorable outcomes divided by total, like both heads on coins {HH} giving P=1/4. For example, with two coins {HH, HT, TH, TT}, 'both heads' has {HH}, P=1/4; for sum=7 on dice, favorable are (1,6),(2,5),(3,4),(4,3),(5,2),(6,1) so 6 out of 36, P=6/36=1/6. The correct answer is 6/36 because there are exactly six favorable ordered pairs that sum to 7 out of 36 total. A common error is counting only one way like (1,6) without considering all ordered pairs, leading to 1/36. To find this probability, (1) identify the compound process of two dice rolls, (2) list or count the space as 36 outcomes, (3) identify favorable as sums of 7, (4) count 6 favorable, (5) calculate P=6/36. Systematic listing ensures all ordered pairs are considered, as order matters; mistakes include miscounting favorable outcomes or using an incorrect total space size.
Question 17
A student flips two fair coins. Using the compound sample space {HH,HT,TH,TT}, what is P(two heads) as a fraction totalfavorable?
- 42
- 41 (correct answer)
- 21
- 31
Explanation: This question tests compound event probability as the fraction of the compound sample space by listing outcomes, counting favorable ones, and dividing by the total. A compound event combines simple events like flipping two coins, with the compound space including all combinations such as {HH, HT, TH, TT} for a total of 4 outcomes, and the probability is calculated by identifying favorable outcomes and dividing by the total, for example, both heads {HH} gives P=1/4. For example, with two coins {HH, HT, TH, TT}, the event 'both heads' has {HH} as favorable, so P=1/4; similarly, for sum=7 on two dice, there are 6 favorable outcomes out of 36, so P=6/36=1/6. The correct answer is C, 41, because it's 1 favorable over 4 total, correctly as a fraction. A common error is simplifying incorrectly or using wrong favorable count, like 2/4 for both same. To find such probabilities, (1) identify the compound process, (2) list or count the sample space, (3) identify favorable outcomes, (4) count them, and (5) calculate P as favorable over total. Use systematic listing to ensure all outcomes are included, remembering that order matters, and avoid mistakes like incomplete spaces or miscounted favorable.
Question 18
A student flips a fair coin and then rolls a fair six-sided die. The compound sample space has 2×6=12 equally likely outcomes (like H1,H2,…,T6). What is the probability of getting heads and an even number?
- 63=21
- 123=41 (correct answer)
- 126=21
- 122=61
Explanation: This question tests compound event probability as the fraction of the compound sample space by listing outcomes, counting favorable ones, and dividing by the total. A compound event combines simple events like flipping a coin and rolling a die, with the compound space including all combinations such as {HH, HT, TH, TT}=4 for two coins or 36 for two dice. The event probability is found by identifying favorable outcomes and calculating P = favorable/total, like both heads {HH} with P=1/4. For example, with two coins {HH, HT, TH, TT}, 'both heads' has {HH}, so P=1/4; for sum=7 on dice, there are 6 favorable outcomes, P=6/36=1/6. The correct answer is A, 123=41, because there are 3 favorable outcomes (H2, H4, H6) out of 12 total. A common error is using only the die's space (6) instead of the compound 12, leading to wrong fractions like 3/6. To find this, (1) identify the compound process of coin and die, (2) list or count the space as 12, (3) identify favorable as heads and even, (4) count 3, (5) calculate P=3/12; systematic listing helps, and order matters as coin first, die second. Mistakes include incomplete space, miscounted favorable like 2 or 6, or using simple probability.
Question 19
Two fair coins are flipped. How many outcomes are in the compound sample space when order matters (first coin, second coin)?
- 4 (correct answer)
- 6
- 3
- 2
Explanation: This question tests compound event probability as the fraction of the compound sample space: list all possible outcomes, count the favorable ones, and divide by the total. A compound event combines simple events like flipping two coins, with the compound space being all combinations {HH, HT, TH, TT} totaling 4 when order matters, and probability calculated as favorable over total, like both heads {HH} giving P=1/4. For example, with two coins {HH, HT, TH, TT}, 'both heads' has 1 favorable, P=1/4; for sum=7 on dice, 6 favorable out of 36, P=6/36=1/6. The correct answer is 4 because ordered outcomes distinguish first and second coin, giving HH, HT, TH, TT. A common error is thinking it's 3 by treating HT and TH as the same, ignoring order. To find the sample space size, (1) identify the compound process of two flips, (2) list or count space as 2x2=4, (3) no event here but for probability would identify favorable, (4) count them, (5) calculate P if needed. Remember order matters in compound spaces; mistakes include incomplete listing or assuming unordered outcomes.
Question 20
Two fair six-sided dice are rolled. How many outcomes give a sum of 7?
- 6 (correct answer)
- 7
- 1
- 12
Explanation: This question tests compound event probability as the fraction of the compound sample space by listing outcomes, counting favorable ones, and dividing by the total. A compound event combines simple events like rolling two dice, with the compound space including all combinations for a total of 36 outcomes, and the probability is calculated by identifying favorable outcomes and dividing by the total, for example, both heads on two coins {HH} out of {HH, HT, TH, TT} gives P=1/4. For example, with two coins {HH, HT, TH, TT}, the event 'both heads' has {HH} as favorable, so P=1/4; similarly, for sum=7 on two dice, there are 6 favorable outcomes out of 36, so P=6/36=1/6. The correct answer is B, 6, because the pairs (1,6),(2,5),(3,4),(4,3),(5,2),(6,1) sum to 7. A common error is miscounting by ignoring order, like thinking only 3 unique pairs. To find such probabilities, (1) identify the compound process, (2) list or count the sample space, (3) identify favorable outcomes, (4) count them, and (5) calculate P as favorable over total. Use systematic listing to ensure all outcomes are included, remembering that order matters in distinguishing (1,6) from (6,1), and avoid mistakes like miscounted favorable or order ignored.