Maths interleaved practice
Instructions: Solve all problems. Each requires you to first identify which technique fits — the topics are deliberately mixed. Show all working. Marks are shown in brackets. Use notation for any typed math. No calculators for factoring/identity work.
1. Solve for and represent the solution on a number line: and . [4]
2. Factor completely: . [3]
3. Find the remainder when is divided by using the remainder theorem. [3]
4. Solve the simultaneous equations by elimination: and . [4]
5. Simplify and rationalize the denominator: . [4]
6. The sum of two consecutive odd integers is 5 less than three times the smaller. Find the integers. [4]
7. Without solving, state the nature of the roots of , and find the sum and product of its roots. [4]
8. Solve the radical equation, checking for extraneous solutions: . [5]
9. Expand using an appropriate identity: . [3]
10. Solve the absolute value inequality and write the answer in interval notation: . [4]
Total: 38 marks
Answer keyMark scheme & solutions
1. (Tests 2.1.11 + 2.1.12 — compound inequality, AND) Why: Two inequalities joined by "and" ⇒ intersection of solution sets.
- (flip sign, divide by ).
- .
- Intersection: .
- Number line: open circle at , closed at , shade between.
2. (Tests 2.1.6 + 2.1.5 — factoring via identity) Why: Difference of cubes, not a common factor or quadratic. . The quadratic factor has discriminant , so it's irreducible over reals — fully factored.
3. (Tests 2.1.15 — remainder theorem) Why: Remainder on division by is ; no long division needed. . Remainder .
4. (Tests 2.1.10 — elimination) Why: and cancel directly ⇒ elimination is fastest. Add: . Sub: . Solution: .
5. (Tests 2.1.22 — rationalization) Why: Surd denominator ⇒ multiply by conjugate. .
6. (Tests 2.1.8 — word problem → linear equation) Why: Translate to one variable; "consecutive odd" ⇒ . . Integers: and . (Check: ; ✓)
7. (Tests 2.1.18 + 2.1.19 — discriminant + Vieta's) Why: "Without solving" signals discriminant/Vieta, not factoring. ⇒ complex (non-real) conjugate roots. Sum ; Product .
8. (Tests 2.1.23 — radical equation, extraneous check) Why: Isolate radical, square, then verify (squaring can introduce false roots). . or . Check : ✓. Check : ✗ (extraneous). Solution: .
9. (Tests 2.1.5 — identity) Why: Cube of binomial ⇒ apply . With : .
10. (Tests 2.1.24 — absolute value inequality) Why: ⇒ (a "sandwich," not two separate cases). . Interval: .
[
{"claim":"Remainder of 2x^3-3x^2+4x-5 div (x-2) is 7","code":"from sympy import symbols, div, Poly\nx=symbols('x')\nq,r=div(2*x**3-3*x**2+4*x-5, x-2, x)\nresult = (r==7)"},
{"claim":"Radical eqn sqrt(2x+3)=x-6 has only x=11 as valid solution","code":"from sympy import symbols, sqrt, solve\nx=symbols('x')\nsols=solve(sqrt(2*x+3)-(x-6), x)\nresult = (sols==[11])"},
{"claim":"System 3x+2y=16,5x-2y=8 gives x=3,y=7/2","code":"from sympy import symbols, solve, Rational\nx,y=symbols('x y')\ns=solve([3*x+2*y-16,5*x-2*y-8],[x,y])\nresult = (s[x]==3 and s[y]==Rational(7,2))"}
]