School12 min read

Algebra Practice Questions with Step-by-Step Solutions

By the QUFF Team

Algebra is the subject where a small number of identities do a very large amount of work. Once you recognise that a question is really (a + b)² − 4ab, or a sum-and-product-of-roots question, or an application of the remainder theorem, the algebra itself is routine. This set works through the recurring families with full solutions - and with the identities listed up front, because most of the shortcuts follow from them.

A compass, a pencil and a stack of books with a graduation cap beside an atom and a molecule model, representing mathematics practice

The identities everything else follows from

  • (a + b)² = a² + 2ab + b² and (a − b)² = a² − 2ab + b².
  • a² − b² = (a + b)(a − b).
  • (a + b)³ = a³ + 3a²b + 3ab² + b³ and (a − b)³ = a³ − 3a²b + 3ab² − b³.
  • a³ + b³ = (a + b)(a² − ab + b²) and a³ − b³ = (a − b)(a² + ab + b²).
  • (a + b + c)² = a² + b² + c² + 2ab + 2bc + 2ca.
  • a³ + b³ + c³ − 3abc = (a + b + c)(a² + b² + c² − ab − bc − ca).
  • Two consequences worth memorising: a² + b² = (a + b)² − 2ab, and (a + b)² − (a − b)² = 4ab.

Linear equations and systems

Solve: 2x + 3y = 12 and x − y = 1.

x = 3, y = 2. From the second equation x = y + 1; substituting gives 2(y+1) + 3y = 12, so 5y = 10 and y = 2, hence x = 3. Check both equations: 6 + 6 = 12 ✓ and 3 − 2 = 1 ✓. Always substitute back - it costs seconds and catches sign errors.

The sum of two numbers is 25 and their difference is 7. Find the numbers.

16 and 9. For sum s and difference d, the numbers are (s + d)/2 and (s − d)/2 - here 32/2 and 18/2. This shortcut avoids setting up simultaneous equations at all.

For what value of k does the system 2x + 3y = 7 and 4x + ky = 14 have infinitely many solutions?

k = 6. Infinitely many solutions require the equations to be proportional: a₁/a₂ = b₁/b₂ = c₁/c₂. Here 2/4 = 7/14 = 1/2, so 3/k must equal 1/2, giving k = 6. If only the first two ratios matched, the system would be inconsistent instead.

Quadratic equations

For a quadratic ax² + bx + c = 0: the discriminant is D = b² − 4ac, the sum of roots is −b/a and the product is c/a. A surprising share of questions never require you to find the roots at all.

Solve x² − 5x + 6 = 0.

x = 2 and x = 3. Factorise by finding two numbers with sum 5 and product 6. Always try factorisation before the quadratic formula - school-level quadratics are usually built to factorise.

Find k so that x² + kx + 9 = 0 has equal roots.

k = ±6. Equal roots require D = 0, so k² − 36 = 0. Note that both signs are valid answers, and dropping the negative one is a standard mark loss.

If α and β are the roots of x² − 7x + 12 = 0, find α² + β².

25. Use α + β = 7 and αβ = 12, then α² + β² = (α + β)² − 2αβ = 49 − 24. Finding the roots (3 and 4) also works, but the identity method generalises to cases where the roots are irrational.

If x + 1/x = 3, find x² + 1/x².

7. Square both sides: x² + 2 + 1/x² = 9, so x² + 1/x² = 7. Any symmetric expression in x and 1/x comes from squaring or cubing the given relation - never from solving for x.

Form the quadratic equation whose roots are 2 and −5.

x² + 3x − 10 = 0. Use x² − (sum)x + product = 0, with sum = −3 and product = −10. Watch the sign of the middle term: it is minus the sum.

Polynomials, factorisation and the remainder theorem

Factorise x² − 9x + 20.

(x − 4)(x − 5). Two numbers with product 20 and sum 9, both negative since the middle term is negative and the constant positive.

Find the remainder when x³ − 3x² + 4 is divided by (x − 2).

0. By the remainder theorem the remainder is f(2) = 8 − 12 + 4 = 0, so (x − 2) is a factor - which is the factor theorem as a special case. Long division is never needed for a linear divisor.

Factorise a³ + b³ + c³ − 3abc when a + b + c = 0.

It equals 0. Since a³ + b³ + c³ − 3abc = (a + b + c)(a² + b² + c² − ab − bc − ca), the first factor vanishes. Hence a + b + c = 0 implies a³ + b³ + c³ = 3abc - a result questions use directly.

Simplify (a + b)² − (a − b)².

4ab. Expanding both is unnecessary - recognise it as a difference of squares of the form X² − Y² = (X + Y)(X − Y) with X = a + b and Y = a − b, giving (2a)(2b).

Practice this now

Sequences and series

Find the 15th term of the AP 3, 7, 11, ...

59. With a = 3 and d = 4, aₙ = a + (n − 1)d = 3 + 14 × 4. Note the (n − 1), not n - the single most common slip in this chapter.

Find the sum of the first 20 natural numbers.

210, using Σn = n(n+1)/2 = 20 × 21/2. Worth remembering alongside Σn² = n(n+1)(2n+1)/6 and Σn³ = [n(n+1)/2]².

Find the sum of the infinite GP 1 + 1/2 + 1/4 + 1/8 + ...

2, from S∞ = a/(1 − r) = 1/(1 − 1/2). The formula applies only when |r| < 1; for |r| ≥ 1 the series diverges and has no finite sum.

How many terms of the AP 5, 9, 13, ... add up to 165?

9 terms. Using Sₙ = (n/2)[2a + (n−1)d]: 165 = (n/2)[10 + 4(n−1)], so 330 = n(4n + 6), giving 4n² + 6n − 330 = 0, or 2n² + 3n − 165 = 0, which factors as (2n + 15)(n − 9) = 0. Only n = 9 is admissible, since a term count cannot be negative - always discard the inadmissible root explicitly.

Inequalities, modulus and logarithms

Solve |2x − 3| = 7.

x = 5 or x = −2. A modulus equation splits into two cases: 2x − 3 = 7 and 2x − 3 = −7. Forgetting the second case loses half the answer.

Solve x² − 4 > 0.

x < −2 or x > 2. Factorise as (x − 2)(x + 2) > 0; the product is positive when both factors share a sign. Never 'take the square root' of an inequality - that loses the negative branch entirely.

Solve |x − 1| < 3.

−2 < x < 4. The rule |X| < a means −a < X < a, so −3 < x − 1 < 3. Note that 'less than' gives one interval while 'greater than' gives two - the asymmetry examiners test.

Find the value of log₂ 32 + log₃ 27.

8. log₂ 32 = 5 since 2⁵ = 32, and log₃ 27 = 3 since 3³ = 27. Log questions at this level are almost always about recognising a power.

If log x = 2 log 3 + 3 log 2, find x.

x = 72. Using n log a = log aⁿ, the right side is log 9 + log 8 = log 72, so x = 72. The three log rules - product, quotient and power - handle nearly every question in the chapter.

How to practise algebra so it gets faster

  • Learn the identities in both directions. Recognising 4ab as (a+b)² − (a−b)² is what makes shortcuts available.
  • For any quadratic question, check whether sum and product of roots suffice before solving for the roots.
  • Substitute your answer back into the original equation, every time. It catches almost every sign error.
  • Discard inadmissible roots explicitly - negative counts, negative lengths, values that make a denominator zero.
  • Never square or square-root an inequality. Factorise and reason about signs instead.
  • Practise timed once the methods are secure, since algebra underpins the speed of every other chapter.

The bottom line

Now go test yourself

Algebra is not a long list of techniques - it is eight identities, the sum-and-product relations for a quadratic, and the habit of checking your answer by substitution. Nearly every question in this set was solved by recognising which of those applied, not by grinding through algebra. That recognition is the actual skill, and it is built by practice with the identities in front of you until they are behind your eyes.

So keep the identity list beside you at first, then work without it. Drill timed algebra and aptitude quizzes on QUFF, and read the explanation on every miss to see which identity would have made the question short.

FAQs

Frequently asked questions

Which algebraic identities are most important?

The squares and cubes of binomials, a² − b², the sum and difference of cubes, (a + b + c)², and a³ + b³ + c³ − 3abc. Two consequences matter especially: a² + b² = (a + b)² − 2ab, and (a + b)² − (a − b)² = 4ab.

How do I find the sum and product of roots without solving the quadratic?

For ax² + bx + c = 0, the sum is −b/a and the product is c/a. This answers most questions about symmetric expressions in the roots, such as α² + β² = (α + β)² − 2αβ.

What is the condition for a quadratic to have equal roots?

The discriminant must be zero: b² − 4ac = 0. Real and distinct roots need D > 0, and complex roots occur when D < 0. Remember that solving for a parameter often gives two admissible values.

How do I solve modulus equations and inequalities?

For an equation |X| = a, split into X = a and X = −a. For |X| < a, write −a < X < a, which gives one interval; for |X| > a you get two separate intervals. Check each solution in the original expression.

Why can't I take the square root of both sides of an inequality?

Because it discards the negative branch. x² > 4 is satisfied by x > 2 and also by x < −2. Factorise as (x − 2)(x + 2) > 0 and reason about the signs instead.

What is the remainder theorem?

The remainder when a polynomial f(x) is divided by (x − a) is f(a). If f(a) = 0 then (x − a) is a factor, which is the factor theorem. It removes the need for long division with linear divisors.

How much algebra practice is enough?

Enough that you recognise the family before you start writing - typically fifteen to twenty questions per family, with every answer checked by substitution. Recognition speed matters more than the number of questions solved.

Where can I practise algebra questions online free?

QUFF's free adaptive maths and aptitude quizzes cover algebra with no sign-up and explain each answer, which is useful for seeing which identity or shortcut would have made a long solution short.

Related quizzes

Put it into practice

Keep reading

Related articles

Browse all articles →

Test yourself in two minutes

Six adaptive questions, every answer explained by an AI tutor. Free.

▶ Start an AI quiz