Core answer: Solving an equation means isolating the unknown with inverse operations — whatever you do to one side, do to the other. Linear: 3x + 5 = 20 → x = 5. Quadratic: ax² + bx + c = 0 → x = (−b ± √(b²−4ac)) / 2a. The discriminant b²−4ac tells you before solving: positive = two real roots, zero = one, negative = none real.

Linear equations: one unknown, one answer

3x + 5 = 20 → subtract 5: 3x = 15 → divide by 3: x = 5. Check: 3×5 + 5 = 20 ✓. Always substitute back — 10 seconds, catches 90% of errors.

Everyday example — break-even. A café sells coffee at ¥25, cost ¥10, rent ¥9,000/month. Solve 25n − 10n = 9,000 → 15n = 9,000 → n = 600 cups to break even.

Quadratic equations: the formula that always works

For ax² + bx + c = 0:

Discriminant Δ = b² − 4acRoots
Δ > 0two distinct real roots
Δ = 0one repeated root
Δ < 0no real roots (complex pair)

Example. x² − 5x + 6 = 0: Δ = 25 − 24 = 1 → x = (5 ± 1)/2 → x = 3 or x = 2. Factoring check: (x−2)(x−3) ✓.

Ballistics example. A ball thrown up at 20 m/s: height h = 20t − 5t². When does it land? 20t − 5t² = 0 → 5t(4 − t) = 0 → t = 4 s. Max height at t = 2 s: h = 20 m.

Systems: two equations, two unknowns

Substitution or elimination. 2x + y = 10, x − y = 2: add the equations → 3x = 12 → x = 4, y = 2.

Shopping example. 3 apples + 2 oranges = ¥19; 2 apples + 4 oranges = ¥22. Doubling the first: 6a + 4o = 38; subtract second: 4a = 16 → apple ¥4, orange ¥3.5.

Common mistakes and myths

  1. Dividing by a variable that could be 0 — x² = 3x divided by x loses the root x = 0; factor instead: x(x − 3) = 0.
  2. Sign flips when moving terms — moving +5 across "=" makes −5; the most common student error by far.
  3. Forgetting ± on square roots — x² = 9 has two solutions (3 and −3); √9 = 3, but the equation has both.
  4. Applying the quadratic formula with wrong a, b, c — standardize first: 5x = 3 − x² becomes x² + 5x − 3 = 0 before reading coefficients.
  5. Not checking extraneous roots — squaring both sides (radical equations) and clearing denominators (rational equations) can introduce fake solutions; always substitute back.