Algebra — Introduction & Intermediate
Level 2 — Recall & Standard Problems
Time: 30 minutes Total Marks: 40
Instructions: Answer all questions. Show working where required. Use for mathematical expressions.
Q1. [3 marks] Simplify by combining like terms:
Q2. [4 marks] Expand using algebraic identities: (a) (b)
Q3. [4 marks] Factorise completely: (a) (b) (by grouping)
Q4. [4 marks] Solve the linear equation by transposition:
Q5. [5 marks] The sum of two consecutive even numbers is 46. Form a linear equation and find the numbers.
Q6. [5 marks] Solve the simultaneous equations by elimination:
Q7. [4 marks] Solve the inequality and represent the solution on a number line:
Q8. [5 marks] For the quadratic equation : (a) Solve by factoring. [3] (b) State the sum and product of the roots and verify using Vieta's formulas. [2]
Q9. [3 marks] Find the remainder when is divided by using the remainder theorem.
Q10. [3 marks] Solve the absolute value equation:
END OF PAPER
Answer keyMark scheme & solutions
Q1. [3 marks] Group like terms: — M1 grouping — A2 correct result
Answer:
Q2. [4 marks] (a) M1 A1 (b) M1 (difference of squares) A1
Q3. [4 marks] (a) Find two numbers multiplying to , summing to : . M1 A1 (b) Group: M1 A1
Q4. [4 marks] — M1 expand — A1 simplify — M1 transpose, A1 answer
Answer:
Q5. [5 marks] Let numbers be and . M1 Equation: M1 M1, A1 Numbers are and . A1
Q6. [5 marks] From eqn 2: multiply by 3: . M1 Add to eqn 1: gives M1, A1 Substitute: M1, A1
Answer:
Q7. [4 marks] M1 A1 Number line: closed circle (filled) at , shading to the left. A2
Q8. [5 marks] (a) M1 or A2 (b) Sum ; Product . M1 Vieta: sum , product ✓ A1
Q9. [3 marks] By remainder theorem, remainder . M1 M1, A1
Answer: Remainder
Q10. [3 marks] or M1 ; or M1 Answer: or A1
[
{"claim":"Q4: x=7 solves 3(x-2)+4=2x+5","code":"x=symbols('x'); sol=solve(Eq(3*(x-2)+4,2*x+5),x); result=(sol==[7])"},
{"claim":"Q6: elimination gives x=3,y=2","code":"x,y=symbols('x y'); s=solve([Eq(2*x+3*y,12),Eq(x-y,1)],[x,y]); result=(s[x]==3 and s[y]==2)"},
{"claim":"Q8: roots of x^2-7x+12 are 3 and 4","code":"x=symbols('x'); r=solve(Eq(x**2-7*x+12,0),x); result=(set(r)=={3,4})"},
{"claim":"Q9: remainder p(2)=7","code":"x=symbols('x'); p=x**3-2*x**2+5*x-3; result=(p.subs(x,2)==7)"},
{"claim":"Q10: |2x-3|=7 gives x=5 or -2","code":"x=symbols('x'); r=solve(Eq(Abs(2*x-3),7),x); result=(set(r)=={5,-2})"}
]