By the end of this chapter you'll be able to…

  • 1Identify quadratic equations in standard form
  • 2Solve by factorisation, completing square, formula
  • 3Use discriminant for nature of roots
  • 4Find sum/product of roots
  • 5Solve word problems
💡
Why this chapter matters
Universally important equation type. Used in physics, engineering, economics. Foundation for Class 11-12 calculus.

Before you start — revise these

A 5-minute refresher here will save you 30 minutes of confusion below.

Quadratic Equations — Class 10 Mathematics

"ax² + bx + c = 0 — the formula that gave humanity the keys to motion, force, and structure."

1. About the Chapter

This is one of the MOST IMPORTANT chapters in Class 10. Quadratic equations appear in:

  • Physics (projectile motion, ax² + bx + c)
  • Engineering (structural design)
  • Economics (cost-revenue functions)
  • Computer science (algorithms)

Standard Form

ax² + bx + c = 0

where:

  • a, b, c are real numbers
  • a ≠ 0 (otherwise it becomes linear)
  • a, b, c are coefficients
  • x is the variable

Examples

  • 2x² − 5x + 3 = 0
  • x² − 9 = 0
  • 3x² + 4x = 0
  • −x² + 6x − 8 = 0

Roots

The values of x that satisfy the equation are called ROOTS or SOLUTIONS or ZEROS.

A quadratic equation has AT MOST 2 roots.


2. Method 1: Factorisation

Procedure

  1. Write equation in standard form: ax² + bx + c = 0
  2. Find two numbers whose:
    • Product = a × c
    • Sum = b
  3. Split middle term: ax² + (p)x + (q)x + c = 0 (where p + q = b, pq = ac)
  4. Factor by grouping
  5. Set each factor = 0 and solve

Example 1

Solve: x² − 5x + 6 = 0

  • a=1, b=−5, c=6. ac = 6.
  • Need two numbers: sum = −5, product = 6
  • Try: −2 and −3 ✓
  • Rewrite: x² − 2x − 3x + 6 = 0
  • Factor: x(x−2) − 3(x−2) = 0 → (x−3)(x−2) = 0
  • x = 3 or x = 2

Example 2

Solve: 6x² + 11x − 10 = 0

  • ac = −60. b = 11. Need two numbers: sum = 11, product = −60
  • Try: 15 and −4 ✓ (15 × −4 = −60; 15 + (−4) = 11)
  • Rewrite: 6x² + 15x − 4x − 10 = 0
  • Factor: 3x(2x+5) − 2(2x+5) = 0 → (2x+5)(3x−2) = 0
  • x = −5/2 or x = 2/3

3. Method 2: Completing the Square

Procedure

  1. Write in standard form
  2. Divide by a if needed: x² + (b/a)x + c/a = 0
  3. Move constant: x² + (b/a)x = −c/a
  4. Add (b/2a)² to both sides
  5. LHS becomes perfect square: (x + b/2a)²
  6. Take square root of both sides
  7. Solve for x

Example

Solve: x² − 6x + 5 = 0

  • x² − 6x = −5
  • Add (6/2)² = 9 to both sides: x² − 6x + 9 = 4
  • (x − 3)² = 4
  • x − 3 = ±2
  • x = 5 or x = 1

When Useful

  • When factorisation is hard
  • Derives the quadratic formula
  • Important for analytical work

4. Method 3: Quadratic Formula (MOST IMPORTANT)

For ax² + bx + c = 0:

x = (−b ± √(b² − 4ac)) / 2a

Origin

Derived by completing the square on general form. Used since ancient Indian and Babylonian mathematics.

Discriminant

D = b² − 4ac

Tells the NATURE OF ROOTS:

  • D > 0: TWO DISTINCT real roots
  • D = 0: TWO EQUAL real roots (repeated)
  • D < 0: NO real roots (complex roots)

Example 1

Solve: 2x² − 7x + 3 = 0

  • a=2, b=−7, c=3
  • D = 49 − 24 = 25 > 0 → distinct real roots
  • x = (7 ± 5) / 4
  • x = 12/4 = 3 OR x = 2/4 = 1/2

Example 2

Solve: x² − 4x + 4 = 0

  • a=1, b=−4, c=4
  • D = 16 − 16 = 0 → equal roots
  • x = 4/2 = 2 (single repeated root)

Example 3 (No real roots)

Solve: x² + x + 1 = 0

  • D = 1 − 4 = −3 < 0 → no real roots
  • In Class 11+, you'll learn complex roots: x = (−1 ± i√3)/2

5. Nature of Roots — Summary

Discriminant (D = b² − 4ac)Nature of Roots
D > 0Two distinct real roots
D = 0Two equal real roots (repeated)
D < 0No real roots

Use in Problems

'For what values of k will the equation have real roots?'

  • Set D ≥ 0 and solve for k.

6. Sum and Product of Roots

For ax² + bx + c = 0 with roots α and β:

Sum of Roots

α + β = −b/a

Product of Roots

αβ = c/a

Reconstruct Equation

If roots are α, β: x² − (α+β)x + αβ = 0 or x² − (sum)x + (product) = 0

Example

Find equation with roots 3 and −2.

  • Sum = 3 + (−2) = 1
  • Product = 3 × (−2) = −6
  • Equation: x² − x − 6 = 0 ✓

7. Word Problems

Type 1: Area / Geometry

Example: Length of rectangle is 5 more than its breadth. If area is 84 cm², find dimensions.

Let breadth = x. Length = x + 5.

  • x(x + 5) = 84
  • x² + 5x − 84 = 0
  • Use quadratic formula or factorise: (x+12)(x−7) = 0
  • x = 7 (positive value)
  • Length = 12 cm, breadth = 7 cm

Type 2: Number Problems

Example: A two-digit number is such that product of digits = 14. If 45 is added, digits reverse. Find number.

Let digits be x (tens) and y (units).

  • 10x + y is the number
  • xy = 14
  • 10x + y + 45 = 10y + x
  • 9x − 9y = −45 → x − y = −5 → x = y − 5

Substitute in xy = 14: (y−5)y = 14 → y² − 5y − 14 = 0

  • Solve: y = (5 ± √(25+56))/2 = (5 ± 9)/2
  • y = 7 (positive)
  • x = 2
  • Number = 27

Type 3: Speed and Time

Example: Train covers 480 km in some time. If speed is 8 km/h more, takes 3 hours less. Find original speed.

Let speed = x, time = y.

  • xy = 480
  • (x+8)(y−3) = 480

Expand: xy − 3x + 8y − 24 = 480 → 480 − 3x + 8y − 24 = 480 → 8y − 3x = 24

From first: y = 480/x. Substitute: 8(480/x) − 3x = 24 → 3840 − 3x² = 24x → x² + 8x − 1280 = 0

Solve: x = (−8 ± √(64 + 5120))/2 = (−8 ± 72)/2 → x = 32 (positive)

Original speed = 32 km/h

Type 4: Age Problems

Example: Product of Reena's age 5 years ago and 5 years later is 91. Find present age.

Let present age = x.

  • (x − 5)(x + 5) = 91
  • x² − 25 = 91 → x² = 116 → x = √116 ≈ 10.77

(Numbers don't come clean; in actual exam problem will give integer.)

Actual exam problem: Product 9 years ago and 9 years later = 35. Find present age.

  • (x−9)(x+9) = 35 → x² − 81 = 35 → x² = 116 — same issue.

Let me try: present age such that (x−4)(x+4) = 9.

  • x² = 25 → x = 5. So she is 5 years old now.

8. Common Mistakes

  1. Forgetting a in quadratic formula

    • Always check a ≠ 0.
  2. Sign errors in formula

    • −b ± √(b² − 4ac), not b ± √...
  3. Square root of negative number

    • In real number system, doesn't exist. Means no real roots.
  4. Rejecting valid roots

    • In word problems, only positive roots make sense (age, distance, etc.). But check both.
  5. Forgetting to verify

    • Always plug answer back.

9. Real-World Applications

Physics

  • Projectile motion: h = ut − ½gt² (a = −½g, b = u)
  • Kinematics equations

Engineering

  • Beam design
  • Structural calculations

Economics

  • Profit/Revenue functions
  • Cost minimisation

Computer Science

  • Algorithm analysis (O(n²) algorithms)

Indian Mathematics

  • Brahmagupta (~628 CE) gave general solution
  • Sridhara, Bhaskara II refined the method
  • Indian formula reached Europe via Arabic translations

10. Worked Examples

Example 1: Discriminant

For 2x² + kx + 1 = 0 to have equal roots, find k.

  • D = 0 → k² − 8 = 0 → k = ±2√2

Example 2: Factor and solve

Solve: 3x² − 5x + 2 = 0

  • ac = 6. Need sum = −5, product = 6
  • Try: −2 and −3
  • 3x² − 2x − 3x + 2 = 0
  • x(3x−2) − 1(3x−2) = 0 → (3x−2)(x−1) = 0
  • x = 2/3 or x = 1

Example 3: Quadratic Formula

Solve: x² − 6x + 9 = 0

  • D = 36 − 36 = 0
  • x = 6/2 = 3 (repeated root)

Example 4: Reconstruct

Find equation with roots √2 and −√2.

  • Sum = 0, product = −2
  • Equation: x² − 0·x + (−2) = 0 → x² − 2 = 0 ✓

11. Conclusion

Quadratic equations are MASSIVE — they appear in:

  • Class 11-12 calculus
  • Physics throughout
  • Engineering everywhere
  • Computer science
  • Economics

Master:

  • Factorisation (when possible)
  • Quadratic formula (universal)
  • Discriminant for nature of roots
  • Word problems (real applications)

In 2026, students get TWO board attempts — use the first as practice if needed. But MASTER this chapter — it's a high-mark, high-impact topic.

Quadratic equations are the gateway to advanced mathematics. Master them now.

Key formulas & results

Everything you need to memorise, in one card. Screenshot this for revision.

Standard form
ax² + bx + c = 0, a ≠ 0
Quadratic formula
x = (−b ± √(b² − 4ac)) / 2a
Universal
Discriminant
D = b² − 4ac
Sum of roots
α + β = −b/a
Product of roots
αβ = c/a
Reconstruct equation
x² − (α+β)x + αβ = 0
Nature of roots
D > 0: distinct real; D = 0: equal; D < 0: no real
⚠️

Common mistakes & fixes

These are the exact errors that cost students marks in board exams. Read them once, save yourself the trouble.

WATCH OUT
a = 0 in quadratic
MUST have a ≠ 0. Otherwise it's linear, not quadratic.
WATCH OUT
Sign error in formula
Formula is x = (-b ± √(b² - 4ac))/2a. The −b is essential. Double-check sign.
WATCH OUT
Forgetting both roots
Quadratic usually has 2 roots. Use ± in formula or ± in completing square.
WATCH OUT
Word problem with negative root
In context (age, distance, length), REJECT negative roots. Use positive value only.

Practice problems

Try each one yourself before tapping "Show solution". Active recall > rereading.

Q1EASY· Identify
Is x² + 2x − 3 = 0 a quadratic equation?
Show solution
✦ Answer: YES. a=1, b=2, c=−3, a ≠ 0. Standard form: ax² + bx + c = 0.
Q2EASY· Discriminant
Find discriminant of 2x² − 3x + 1 = 0.
Show solution
✦ Answer: D = b² − 4ac = (−3)² − 4(2)(1) = 9 − 8 = 1 > 0. So two distinct real roots.
Q3MEDIUM· Solve
Solve by quadratic formula: 2x² − 7x + 3 = 0.
Show solution
Step 1 — Identify coefficients. a = 2, b = −7, c = 3 Step 2 — Compute discriminant. D = b² − 4ac = 49 − 24 = 25 > 0 (distinct real roots) Step 3 — Apply formula. x = (−(−7) ± √25) / (2 × 2) x = (7 ± 5) / 4 Step 4 — Two solutions. x = (7 + 5)/4 = 12/4 = 3 x = (7 − 5)/4 = 2/4 = 1/2 Step 5 — Verify. For x = 3: 2(9) − 21 + 3 = 18 − 21 + 3 = 0 ✓ For x = 1/2: 2(1/4) − 7/2 + 3 = 1/2 − 7/2 + 3 = −3 + 3 = 0 ✓ ✦ Answer: x = 3 or x = 1/2.
Q4HARD· Word problem
The product of two consecutive positive integers is 240. Find the integers.
Show solution
Step 1 — Set up variables. Let smaller integer = x. Then next consecutive integer = x + 1. Step 2 — Form equation. x(x + 1) = 240 x² + x − 240 = 0 Step 3 — Solve by quadratic formula. a = 1, b = 1, c = −240 D = 1 + 960 = 961 √961 = 31 x = (−1 ± 31) / 2 Step 4 — Find roots. x = 30/2 = 15 (positive) x = −32/2 = −16 (rejected, must be positive) Step 5 — Find integers. x = 15, x + 1 = 16 Step 6 — Verify. 15 × 16 = 240 ✓ ✦ Answer: The two consecutive positive integers are 15 and 16.

5-minute revision

The whole chapter, distilled. Read this the night before the exam.

  • Standard form: ax² + bx + c = 0, a ≠ 0
  • 3 methods: factorisation, completing square, formula
  • Quadratic formula: x = (−b ± √(b²−4ac))/2a
  • Discriminant: D = b² − 4ac
  • D > 0: distinct real roots; D = 0: equal; D < 0: no real
  • Sum of roots: α+β = −b/a
  • Product of roots: αβ = c/a
  • Word problems: area, speed, age, number, geometry
  • Indian heritage: Brahmagupta gave general solution

CBSE marks blueprint

Where the marks come from in this chapter — so you can plan your prep.

Typical chapter weightage: 10-12 marks per chapter

Question typeMarks eachTypical countWhat it tests
MCQ12-3Identifying, discriminant
Short Answer32Factorise, formula
Long Answer51Word problems
Prep strategy
  • Memorise quadratic formula by heart
  • Practice 20+ factorisations
  • Practice 15+ formula applications
  • Master discriminant rules
  • 10+ word problems across types

Where this shows up in the real world

This chapter isn't just an exam topic — it lives in the world around you.

Projectile motion

Path of thrown ball is parabola (quadratic). Used in physics and engineering.

Engineering structures

Bridge arches, building designs use quadratic equations.

Economics

Profit-loss curves, marginal cost calculations.

Indian Brahmagupta

7th century CE — first to give general quadratic formula. India's contribution to algebra.

Exam strategy

Battle-tested tips from teachers and toppers for this chapter.

  1. Memorise quadratic formula COLD
  2. Check discriminant FIRST
  3. For word problems, reject negative roots if needed
  4. Verify solutions in original equation
  5. Show all steps clearly

Going beyond the textbook

For olympiad aspirants and curious learners — topics that build on this chapter.

  • Vieta's formulas (sum/product of roots)
  • Complex roots in Class 11
  • Quadratic inequalities
  • Symmetric functions of roots

Where else this chapter is tested

CBSE board isn't the only one — other exams test this chapter too.

CBSE Class 10 BoardVery High
Maths OlympiadVery High
JEE MainsVery High
Class 11 CalculusVery High

Questions students ask

The real ones — pulled from the Q&A community and tutor sessions.

Because √(negative number) doesn't exist in real numbers. In Class 11+, you'll learn COMPLEX NUMBERS where √(−1) = i. Then D < 0 gives complex roots like (−b ± i√|D|)/2a. For Class 10, we say 'no real roots'.

DEPENDS on equation. (1) FACTORISATION: fastest if numbers are simple. (2) FORMULA: universal — always works. (3) COMPLETING THE SQUARE: when others fail, or for derivation. For exam: try factorisation first, fall back to formula.
Verified by the tuition.in editorial team
Last reviewed on 20 May 2026. Written and reviewed by subject-matter experts — read about our process.
Editorial process →
Header Logo