Tutorly.sg Logo
Topic hub
Start here for the full cluster: O-Level AI Tutor (Singapore)
This helps you move from the big picture to the most relevant supporting guides.

How To Solve Quadratic Equations Step By Step (Singapore Secondary Level Tutorial)

Updated April 29, 2026O Levels
Tutorly.sg editorial team
Singapore-focused study guides aligned to MOE exam formats.
  • Tutorly.sg has been mentioned on Channel NewsAsia (CNA)
  • Tutorly.sg has been used by thousands of users in Singapore

If you’re in Secondary school in Singapore especiallySec34doingEMathorAMathespecially Sec 3–4 doing E Math or A Math, quadratic equations are everywhere.

They show up in:

“Stuck on a question? See simple explanations that help you understand fast.”
👉 Give it a try and turn confusion into clarity in minutes.

Tutorly.sg learning in Singapore

  • Sec 3 algebra topics
  • O-Level E Math Paper 1 and Paper 2
  • A Math (even more heavily)
  • Physics kinematics questions (projectiles, motion)

So if you’re still a bit blur about quadratics, don’t panic. You’re definitely not alone.

This tutorial will walk you through how to solve quadratic equations step by step, in a way that matches what you actually see in the MOE syllabus and O-Level exam papers.

Along the way, I’ll also show you how you can use Tutorly.sg — a 24/7 AI tutor website built specifically for Singapore students — to get instant practice and explanations whenever you’re stuck.

Tutorly.sg has already been used by thousands of students in Singapore, and has even been mentioned on CNA (Channel NewsAsia), so you’re in safe hands.

Useful links to keep open:


Step-by-step tutorial

1. What is a quadratic equation?

A quadratic equation is any equation that can be written in this form:

ax2+bx+c=0ax^2 + bx + c = 0

where:

  • a,b,ca, b, c are numbers (real constants)
  • a0a \neq 0 (if a=0a = 0, then it’s not quadratic anymore)

Examples:

  • x2+5x+6=0x^2 + 5 x + 6 = 0
  • 2x23x5=02 x^2 - 3 x - 5 = 0
  • 3x27=03 x^2 - 7 = 0 (here b=0b = 0)

In the O-Level syllabus, you usually solve quadratics in three main ways:

  1. By factorisation
  2. By completing the square
  3. Using the quadratic formula

You need to know all three, because exam questions will test them in different ways.


2. Method 1: Solving by factorisation

This is usually the first method you learn in Sec 3.

General idea

You rewrite the quadratic as a product of two brackets, then use the fact that:

If PQ=0PQ = 0, then either P=0P = 0 or Q=0Q = 0.

Step-by-step example 1 (simple)

Solve x2+5x+6=0x^2 + 5 x + 6 = 0.

Step 1: Factorise

We want:

x2+5x+6=(x+?)(x+?)x^2 + 5 x + 6 = (x + ?)(x + ?)

We need two numbers that:

  • multiply to +6+6
  • add up to +5+5

Those numbers are 22 and 33.

So:

x2+5x+6=(x+2)(x+3)x^2 + 5 x + 6 = (x + 2)(x + 3)

Step 2: Use “= 0”

(x+2)(x+3)=0(x + 2)(x + 3) = 0

So either:

  • x+2=0x + 2 = 0x=2x = -2
  • x+3=0x + 3 = 0x=3x = -3

Answer: x=2x = -2 or x=3x = -3


Step-by-step example 2 (with coefficient)

Solve 2x23x5=02 x^2 - 3 x - 5 = 0.

Step 1: Factorise

We look for a pair of brackets:

(2x+?)(x+?)=0(2 x + ?)(x + ?) = 0

We want:

  • Product of constants = 5-5
  • Cross terms add up to 3x-3 x

Try (2x+2)(x5)(2 x + 2)(x - 5):

  • Multiply: (2x)(x)=2x2(2 x)(x) = 2 x^2
  • Outer + inner: 10x+2x=8x-10 x + 2 x = -8 x (not correct)

Try (2x+5)(x1)(2 x + 5)(x - 1):

  • Multiply: (2x)(x)=2x2(2 x)(x) = 2 x^2
  • Outer + inner: 2x+5x=3x-2 x + 5 x = 3 x (sign wrong)

Try (2x5)(x+1)(2 x - 5)(x + 1):

  • Multiply: (2x)(x)=2x2(2 x)(x) = 2 x^2
  • Outer + inner: 2x5x=3x2 x - 5 x = -3 x (correct!)
  • Constant: 5-5

So:

2x23x5=(2x5)(x+1)2 x^2 - 3 x - 5 = (2 x - 5)(x + 1)

Step 2: Use “= 0”

(2x5)(x+1)=0(2 x - 5)(x + 1) = 0

So either:

  • 2x5=02 x - 5 = 02x=52 x = 5x=52x = \dfrac{5}{2}
  • x+1=0x + 1 = 0x=1x = -1

Answer: x=52x = \dfrac{5}{2} or x=1x = -1


3. Method 2: Solving by completing the square

This is important for:

  • E Math: solving, graphing parabolas, finding minimum/maximum
  • A Math: more advanced algebra and functions

General idea

You rewrite the quadratic into this form:

(x+p)2=q(x + p)^2 = q

Then take square roots.

Standard steps (when a=1a = 1)

Solve x2+4x5=0x^2 + 4 x - 5 = 0.

Step 1: Move constant to the right

x2+4x=5x^2 + 4 x = 5

Step 2: Add the “magic number”

Take half of the coefficient of xx:

  • Coefficient of xx is 44
  • Half of 44 is 22
  • Square it: 22=42^2 = 4

Add 44 to both sides:

x2+4x+4=5+4x^2 + 4 x + 4 = 5 + 4

Left side becomes a perfect square:

(x+2)2=9(x + 2)^2 = 9

Step 3: Square root both sides

x+2=±3x + 2 = \pm 3

So:

  • x+2=3x + 2 = 3x=1x = 1
  • x+2=3x + 2 = -3x=5x = -5

Answer: x=1x = 1 or x=5x = -5


When a1a \neq 1

Solve 2x2+8x+3=02 x^2 + 8 x + 3 = 0.

Step 1: Make coefficient of x2x^2 equal to 1

Divide the whole equation by 2:

x2+4x+32=0x^2 + 4 x + \dfrac{3}{2} = 0

Move constant:

x2+4x=32x^2 + 4 x = -\dfrac{3}{2}

Step 2: Complete the square

Half of 44 is 22, 22=42^2 = 4.

Add 44 to both sides:

x2+4x+4=32+4x^2 + 4 x + 4 = -\dfrac{3}{2} + 4

Right side:

32+4=32+82=52-\dfrac{3}{2} + 4 = -\dfrac{3}{2} + \dfrac{8}{2} = \dfrac{5}{2}

So:

(x+2)2=52(x + 2)^2 = \dfrac{5}{2}

Step 3: Square root both sides

x+2=±52x + 2 = \pm \sqrt{\dfrac{5}{2}}

So:

x=2±52x = -2 \pm \sqrt{\dfrac{5}{2}}

You can leave it in this surd form usuallyacceptableinOLevelunlessaskedotherwiseusually acceptable in O-Level unless asked otherwise.


4. Method 3: Quadratic formula

The quadratic formula works for any quadratic equation:

For ax2+bx+c=0ax^2 + bx + c = 0,

x=b±b24ac2ax = \dfrac{-b \pm \sqrt{b^2 - 4ac}}{2 a}

The part under the square root, b24acb^2 - 4ac, is called the discriminant.

  • If b24ac>0b^2 - 4ac > 0 → 2 distinct real roots
  • If b24ac=0b^2 - 4ac = 0 → 1 repeated real root
  • If b24ac<0b^2 - 4ac < 0 → no real roots (in E Math context)

Step-by-step example

Solve 3x22x1=03 x^2 - 2 x - 1 = 0 using the formula.

Here:

  • a=3a = 3
  • b=2b = -2
  • c=1c = -1

Step 1: Substitute into discriminant

b24ac=(2)24(3)(1)=4+12=16b^2 - 4ac = (-2)^2 - 4(3)(-1) = 4 + 12 = 16

Step 2: Use the formula

x=(2)±1623=2±46x = \dfrac{-(-2) \pm \sqrt{16}}{2 \cdot 3} = \dfrac{2 \pm 4}{6}

So:

  • x=2+46=66=1x = \dfrac{2 + 4}{6} = \dfrac{6}{6} = 1
  • x=246=26=13x = \dfrac{2 - 4}{6} = \dfrac{-2}{6} = -\dfrac{1}{3}

Answer: x=1x = 1 or x=13x = -\dfrac{1}{3}


5. Which method should you use?

For O-Level style questions:

  • Factorisation:
    Use it when the quadratic is “nice” and factorisable with integers.
    Faster, and often what examiners expect if they say “solve by factorisation”.

  • Completing the square:
    Use it when the question asks for maximum/minimum value or vertex form, or explicitly says “by completing the square”.

  • Quadratic formula:
    Use it when:

    • Factorisation is hard or impossible with integers
    • The question says “hence use the quadratic formula”
    • You want a reliable method that always works (but be careful with algebra)

If you’re practising on Tutorly.sg (<https://tutorly.sg/ai-tutor-singapore>), you can actually type:

“Solve 2x23x5=02 x^2 - 3 x - 5 = 0 by factorisation, then show using quadratic formula”

and the AI tutor will give you:

  • The final answers
  • Step-by-step worked solution for each method

So you can compare and see how the methods relate.


Exam strategy guide

Quadratic equations are almost guaranteed to appear in O-Level E Math, and very heavily in A Math. Here’s how to handle them efficiently in exams.

“Access more than 1000+ past year papers to practice”
👉 Start a paper today and test yourself like it’s the real exam.

Study smarter with Tutorly.sg

1. Read the instruction carefully

Look for key phrases:

  • “Solve the equation…” → any method (unless specified)
  • “Solve the equation by factorisation” → must show factorisation
  • “Solve the equation by completing the square” → must use that method
  • “Using the quadratic formula, find the roots of…” → use the formula

If you use the wrong method when they clearly specify, you can lose method marks even if the answers are correct.


2. Time management tips

For O-Level E Math:

  • Don’t spend more than 3–4 minutes on a single quadratic question in Paper 1.
  • If it’s in a long question in Paper 2 (e.g. coordinate geometry, kinematics), the quadratic part is usually just one step. Don’t overthink it.

If you’re stuck:

  1. Try factorisation quickly.
  2. If cannot factorise nicely, switch to the quadratic formula.
  3. If still stuck, leave some working, circle the question, and move on. Come back later.

3. Check your answers smartly

You don’t always have time to substitute back in detail, but you can do quick checks:

  • For ax2+bx+c=0ax^2 + bx + c = 0, if roots are pp and qq:

    • Sum of roots: p+q=bap + q = -\dfrac{b}{a}
    • Product of roots: pq=capq = \dfrac{c}{a}

Example:

For x25x+6=0x^2 - 5 x + 6 = 0, roots found: x=2x = 2 and x=3x = 3.

  • Sum: 2+3=52 + 3 = 5 → matches ba=51=5-\dfrac{b}{a} = -\dfrac{-5}{1} = 5
  • Product: 23=62 \cdot 3 = 6 → matches ca=61=6\dfrac{c}{a} = \dfrac{6}{1} = 6

If these don’t match, you know something went wrong.


4. Use your calculator carefully

For O-Level, you’re allowed a scientific calculator, but not a CAS calculator that solves equations automatically.

However, you can:

  • Use it to compute the discriminant b24acb^2 - 4ac
  • Use it to handle fractions and surds accurately
  • Check approximate decimal values of your answers

Exam tip: If your exact answer is x=52x = \dfrac{5}{2}, don’t write 2.52.5 unless they ask for a decimal. Exact forms are usually safer.


5. When quadratics appear inside word problems

Common contexts in Singapore papers:

  • Area of a rectangle / garden / field
  • Height of a projectile: h=ut12gt2h = ut - \dfrac{1}{2}gt^2
  • Revenue / profit problems in E Math
  • Coordinate geometry: intersection of a line and a parabola

Strategy:

  1. Translate the situation into an equation.
  2. Rearrange until you get a standard quadratic form ax2+bx+c=0ax^2 + bx + c = 0.
  3. Choose the method factorisation/formulafactorisation / formula.
  4. After solving, interpret the answers in context rejectnegativelengths/timeifnotrealisticreject negative lengths/time if not realistic.

If you want practice with these word problems, you can throw past-year questions into Tutorly.sg (<https://tutorly.sg/app>) and ask it to:

“Explain step-by-step how to form the quadratic equation from this word problem, then solve it.”

You’ll still need to think (it won’t just give you final answers to copy), but you can see each step clearly.


Worksheet practice

Use this section like a mini worksheet. Try each question yourself first, then check with a solution method (you can also use Tutorly.sg to confirm your answers and see steps).

I’ll organise them by difficulty: basic, intermediate, then hard exam-style variants.


A. Basic practice (factorisation focus)

Q 1. Solve x27x+12=0x^2 - 7 x + 12 = 0 by factorisation.

Outline:

  • Find two numbers that multiply to +12+12 and add up to 7-7.
  • Factorise, then solve each bracket =0= 0.

Q 2. Solve 2x2+3x2=02 x^2 + 3 x - 2 = 0 by factorisation.

Outline:

  • Look for (2x+?)(x+?)(2 x + ?)(x + ?) type.
  • Check cross terms carefully.

Q 3. Solve 3x212x=03 x^2 - 12 x = 0.

Outline:

  • First factor out the common factor 3x3 x.
  • Then solve each factor =0= 0.

B. Intermediate practice (completing the square & formula)

Q 4. Solve x2+6x+5=0x^2 + 6 x + 5 = 0 by completing the square.

Outline:

  1. Move constant to the right.
  2. Add the “magic number” halfof6,thensquarehalf of 6, then square.
  3. Form (x+p)2=q(x + p)^2 = q, then take square roots.

Q 5. Solve 2x24x+1=02 x^2 - 4 x + 1 = 0 using the quadratic formula.

Outline:

  • Identify a,b,ca, b, c.
  • Compute b24acb^2 - 4ac.
  • Substitute into b±b24ac2a\dfrac{-b \pm \sqrt{b^2 - 4ac}}{2 a}.

Q 6. A quadratic equation has roots x=2x = 2 and x=3x = -3. Form the quadratic equation in the form ax2+bx+c=0ax^2 + bx + c = 0 with integer coefficients.

Outline:

  • Use (x2)(x+3)=0(x - 2)(x + 3) = 0.
  • Expand, simplify, write in standard form.

C. Hard exam variants (O-Level style)

These are the kind that can appear in the later part of Paper 1 or inside a structured Paper 2 question.


Q 7. Discriminant and nature of roots

Given the quadratic equation kx24x+1=0kx^2 - 4 x + 1 = 0, where kk is a constant:

  1. Find the value(s) of kk for which the equation has equal roots.
  2. Find the value(s) of kk for which the equation has no real roots.

Outline:

  • Use discriminant b24acb^2 - 4ac.
  • Equal roots → discriminant =0= 0.
  • No real roots → discriminant <0< 0.

Let a=ka = k, b=4b = -4, c=1c = 1.


Q 8. Word problem – area

The length of a rectangle is (x+3)(x + 3) cm and the width is (x2)(x - 2) cm. The area of the rectangle is 40 cm240\text{ cm}^2.

  1. Form a quadratic equation in xx.
  2. Solve the equation.
  3. Hence, find the dimensions of the rectangle.

Outline:

  • Area = length × width.
  • Set (x+3)(x2)=40(x + 3)(x - 2) = 40.
  • Expand, rearrange to ax2+bx+c=0ax^2 + bx + c = 0.
  • Solve (likely factorisation or formula).
  • Reject any value of xx that gives negative length/width.

Q 9. Application – projectile motion

A ball is thrown upwards from a height of 1.5 m1.5\text{ m} with an initial velocity of 8 m/s8\text{ m/s}. Its height hh metres above the ground after tt seconds is given by

h=1.5+8t5t2.h = 1.5 + 8 t - 5 t^2.

“Doing Secondary Science? Pick a topic and practise like it’s a real exam — with clear answers right after.”
👉 Try Tutorly now and start a Science topic in seconds.

![Secondary Science topics you can practise on Tutorly.sg]/app/blogimages/middle2.png/app/blog-images/middle 2.png

  1. Show that the equation for when the ball hits the ground is 5t28t1.5=05 t^2 - 8 t - 1.5 = 0.
  2. Solve this equation, giving your answers correct to 2 decimal places.
  3. Hence, find the time taken for the ball to hit the ground.

Outline:

  • Hits the ground → h=0h = 0.
  • Rearrange to standard quadratic.
  • Use quadratic formula.
  • One root will be negative (ignore, not physical).
  • Positive root is the time taken.

Q 10. Maximum value (completing the square)

The function f(x)=2x2+8x+3f(x) = -2 x^2 + 8 x + 3 represents the profit (in dollars) made by a company when they produce xx units of a certain product.

  1. Rewrite f(x)f(x) in the form a(xh)2+ka(x - h)^2 + k.
  2. Hence, find the maximum profit and the number of units that should be produced to obtain this maximum profit.

Outline:

  • Factor out 2-2 from x2x^2 and 8x8 x.
  • Complete the square inside the bracket.
  • Identify the vertex (h,k)(h, k).
  • Because coefficient of x2x^2 is negative, it’s a maximum.

How to use Tutorly.sg with these questions

If you’re practising alone at home, sometimes you’re not sure if your answer is correct, or you don’t know where your mistake is.

Here’s how you can use Tutorly.sg effectively:

  1. Go to <https://tutorly.sg/app>.

  2. Type in one of the questions, for example:

    “Q 8: The length of a rectangle is x+3x + 3 cm and the width is x2x - 2 cm… (full question). Please show me the step-by-step solution.”

  3. Tutorly will:

    • Give you the final answer
    • Show a clear, step-by-step worked solution that you can follow

You can also ask:

  • “Explain why we reject the negative value of tt in Q 9.”
  • “Show how to complete the square for 2x2+8x+3-2 x^2 + 8 x + 3 slowly.”

Because it’s built for the Singapore MOE syllabus, the style of solution will feel very similar to what your teacher expects and what you see in Ten-Year Series.


Common mistakes

These are the errors I see most often from Sec 3–4 students, especially under exam stress. If you fix these, your accuracy will improve a lot.

1. Forgetting to write “= 0” before solving

You must rearrange to ax2+bx+c=0ax^2 + bx + c = 0 before using:

  • Factorisation
  • Quadratic formula
  • Completing the square (properly)

Example:

Given x2+3x=10x^2 + 3 x = 10.

Wrong: Straight away factorise as (x+5)(x2)(x + 5)(x - 2) or something random.

Correct:

x2+3x10=0x^2 + 3 x - 10 = 0

Then solve.


2. Sign mistakes in factorisation

Example: x2x6=0x^2 - x - 6 = 0.

Students sometimes write:

(x3)(x2)=0(x - 3)(x - 2) = 0

Check: (x3)(x2)=x25x+6(x - 3)(x - 2) = x^2 - 5 x + 6 (totally different).

Correct factorisation:

(x3)(x+2)=x2x6(x - 3)(x + 2) = x^2 - x - 6

Always expand quickly in your head to check:

  • Product of constants
  • Sum of cross terms

3. Dropping the “±\pm” when taking square roots

From (x+2)2=9(x + 2)^2 = 9:

Wrong:

x+2=3x=1x + 2 = 3 \Rightarrow x = 1

Correct:

x+2=±3x=1 or x=5x + 2 = \pm 3 \Rightarrow x = 1 \text{ or } x = -5

Forgetting the negative root loses you half the marks immediately.


4. Mixing up b24acb^2 - 4ac in the quadratic formula

Common mistakes:

  • Using 4c4 c instead of 4ac4ac
  • Forgetting that bb might be negative (e.g. b=2b = -2)

Example: For 3x22x1=03 x^2 - 2 x - 1 = 0,

  • a=3a = 3, b=2b = -2, c=1c = -1
  • b24ac=(2)24(3)(1)b^2 - 4ac = (-2)^2 - 4(3)(-1), not 224(3)(1)2^2 - 4(3)(1)

If you’re not careful with signs


“Practice PSLE Science questions and get clear, step-by-step answers instantly.”
👉 Try a question now and see how fast you can improve.

Try Tutorly.sg on the website

Ready to practise?

If you want a Singapore-focused AI tutor you can use immediately website,nosignupwebsite, no sign-up, try Tutorly here:


Related Articles