Problem 1 — The Equals Sign (C1)
Variants 0 and 1: The answer is B — the equals signs create a false chain. In Variant 0, "3x = 12 = x = 4" claims that 12 = x = 4, which is false. In Variant 1, "2 + 8 = 10 ÷ 2 = 5" claims that 2 + 8 = 5, which is false.
Why the other options are wrong (Variants 0 & 1):
- A (arithmetic is wrong): The arithmetic is correct in both — the problem is the notation, not the calculation.
- C (wrong operation): Division is the correct operation; the notation is the issue.
- D (x = 4 is wrong): Writing x = 4 is perfectly fine notation for a solution.
Variant 2: The answer is B — this is actually not a run-on equation. "4 × 7 = 28 = 28 cm²" connects statements that are genuinely equal to each other. This is valid (though two lines would be cleaner). The key lesson: not every chain of equals signs is a run-on. A run-on occurs when the things being connected are not actually equal.
Variant 3: The answer is C — the chain "2x + 6 = 14 = 2x = 8 = x = 4" claims 14 = 2x and 14 = 8, both of which are false. The arithmetic (subtract 6, then divide by 2) is perfectly valid; it's the way the steps are joined that's wrong.
Variant 4: The answer is B — the chain "f(3) = 9 = 9 + 1 = 10" claims \( f(3) = 9 \). But \( f(3) = 3^2 + 1 = 10 \), not 9. The intermediate step "= 9" is a false link in the chain. A corrected version would write \( f(3) = 3^2 + 1 = 9 + 1 = 10 \), where every link is true.
What to check if you got this wrong: Ask yourself — is every = sign in the chain actually asserting equality? If "A = B" but A and B have different values, the chain is broken.
Problem 2 — Interval Notation (C5)
Variant 0: \( -2 \leq x < 5 \) → Correct answer: [-2, 5)
- Left: \( \leq \) means -2 is included → square bracket \( [ \)
- Right: \( < \) means 5 is excluded → parenthesis \( ) \)
Variant 1: \( x > 3 \) → Correct answer: (3, ∞)
- Left: strict \( > \) → parenthesis \( ( \)
- Right: extends to infinity → always a parenthesis \( ) \)
Variant 2: \( x \leq -1 \) → Correct answer: (-∞, -1]
- Left: extends to negative infinity → always a parenthesis \( ( \)
- Right: \( \leq \) means -1 is included → square bracket \( ] \)
Variant 3: \( -3 < x \leq 7 \) → Correct answer: (-3, 7]
- Left: strict \( < \) means -3 is excluded → parenthesis \( ( \)
- Right: \( \leq \) means 7 is included → square bracket \( ] \)
Variant 4: \( x \leq 4 \) or \( x > 9 \) → Correct answer: (-∞, 4] ∪ (9, ∞)
- Left piece: \( x \leq 4 \) → \( (-\infty, 4] \) — includes 4
- Right piece: \( x > 9 \) → \( (9, \infty) \) — excludes 9
- "Or" = union → use ∪, not ∩ (which would mean "and")
Common trap — infinity with brackets: Never write \( [\infty) \) or \( (-\infty] \). Infinity is not a number you can reach, so it is never included. Always use parentheses for infinity: \( (-\infty, \ldots) \) or \( (\ldots, \infty) \).
Problem 3 — Set Membership (C4) — Correct answer: II and III only
- I. \( \sqrt{2} \in \mathbb{Q} \) — FALSE. \( \sqrt{2} \) is irrational. Proof sketch: assume \( \sqrt{2} = p/q \) in lowest terms; squaring gives \( 2q^2 = p^2 \), so \( p \) is even, say \( p = 2k \); then \( 2q^2 = 4k^2 \Rightarrow q^2 = 2k^2 \), so \( q \) is also even — contradicting "lowest terms." \( \sqrt{2} \in \mathbb{R} \) but \( \sqrt{2} \notin \mathbb{Q} \).
- II. \( -5 \in \mathbb{Z} \) — TRUE. The integers include all negative whole numbers.
- III. \( \frac{3}{4} \in \mathbb{R} \) — TRUE. Every rational number is real: \( \mathbb{N} \subset \mathbb{Z} \subset \mathbb{Q} \subset \mathbb{R} \).
- IV. \( \pi \in \mathbb{Q} \) — FALSE. \( \pi \) is transcendental (not even a root of any polynomial with rational coefficients), so certainly not rational.
Problem 4 — Exact Values (C6) — Correct answer: √3 (exact form)
\( \sqrt{3} \) is the exact, lossless representation. The decimal approximations 1.73, 1.732, ≈ 1.7 all introduce rounding error. In calculus, if a later step involves \( (\sqrt{3})^2 \), you'd get exactly \( 3 \) — not 2.9929 or 2.999424.
Rule of thumb: The only time you should write a decimal is when the problem specifically asks for a decimal answer, or when you're making a final numerical comparison (e.g., "is this length greater than 2?").