Problem 1 — BEDMAS Order (C1)
Variant 0 — Student evaluates \( 5 + 3 \times 2 \) by adding first: answer is B.
Multiplication has higher precedence than addition. \( 3 \times 2 = 6 \) must be computed before adding 5: \( 5 + 6 = 11 \), not 16.
- A (arithmetic wrong): The arithmetic \( 5+3=8 \) is correct; the issue is which operation comes first.
- C (both valid): Precedence is not optional. There is exactly one correct answer: 11.
- D (should have used parens): Without parentheses, BEDMAS applies. If you write \( (5+3) \times 2 \), then 16 would be correct — but the original has no parentheses.
Variant 1 — Student evaluates \( 24 \div 6 - 2 \) by grouping the subtraction: answer is C.
Without parentheses, division comes before subtraction. \( 24 \div 6 = 4 \) first, then \( 4 - 2 = 2 \). The student mentally inserted parentheses that don't exist.
Variant 2 — Student evaluates \( 2 + 3^2 \) by adding first: answer is B.
Exponents come before addition. \( 3^2 = 9 \) first, then \( 2 + 9 = 11 \). The student incorrectly treated \( 2 + 3 \) as the base of the exponent.
What to check if you got this wrong: Always scan an expression for the highest-precedence operation first — brackets, then exponents, then multiplication/division, then addition/subtraction. Do not work strictly left to right.
Problem 2 — Fraction Bar as Grouping (C2)
Variant 0 — Evaluate \( \dfrac{x+5}{2} \) at \( x = 3 \): answer is B (value = 4).
The fraction bar groups the entire numerator: \( \dfrac{3+5}{2} = \dfrac{8}{2} = 4 \). The option "5.5" misreads the expression as \( 3 + \frac{5}{2} \).
Variant 1 — "Sum of \( a \) and \( b \) divided by 3": answer is B — (a + b) / 3.
The word "sum" signals that \( a + b \) is the complete numerator. Only option B groups it correctly. \( a + b/3 \) divides only \( b \); \( a/3 + b \) divides only \( a \).
Variant 2 — Evaluate \( \dfrac{8-2}{3} \): answer is B (value = 2).
The fraction bar groups \( 8-2 = 6 \) as the numerator. Then \( 6 \div 3 = 2 \). The distractor "7⅓" misreads the expression as \( 8 - \frac{2}{3} \).
Key habit: Whenever you see a fraction bar, identify everything directly above it (the numerator) and everything directly below it (the denominator) before doing any arithmetic. Treat each as a grouped expression in parentheses.
Problem 3 — Exponent Binding (C4)
Answer is C.
In \( -4^2 \), the exponent binds to \( 4 \) only: \( -4^2 = -(4^2) = -16 \). In \( (-4)^2 \), the negative is part of the base: \( (-4)(-4) = 16 \). They have opposite signs. Additionally: \( 3 \cdot 4^2 = 3 \cdot 16 = 48 \), while \( (3 \cdot 4)^2 = 12^2 = 144 \). All four expressions are distinct.
Problem 4 — Distributing the Minus Sign (C5)
Answer is A.
\( -(3x - 5) = (-1)(3x - 5) = (-1)(3x) + (-1)(-5) = -3x + 5 \). The student negated \( 3x \) correctly but forgot that \( -(-5) = +5 \), not \( -5 \). Every term inside the parentheses changes sign.