IB Maths AA HL Topic 2 โ€” Functions Paper 1 & 2 ~9 min read

Solving Equations Analytically

Solving an equation analytically means using algebra alone โ€” no GDC, no graph. The recipe is short: isolate the unknown by undoing each operation, one at a time, using its inverse. The catches are when the unknown appears more than once (combine first), when many-to-one functions create extra “fake” solutions (always check), and when the equation has the shape of a hidden quadratic (substitute and reveal). This note covers all three.

๐Ÿ“˜ What you need to know

The inverse toolkit

Every operation has an inverse. To isolate x, apply the inverse of whatever’s been done to it โ€” but apply it to the whole side, not just one term:

add โ†” subtract
y = x + 4 โŸบ x = y โˆ’ 4
subtract to undo addition
ร— โ†” รท
y = 5x โŸบ x = y/5
divide to undo multiplication
power โ†” root
y = x3 โŸบ x = โˆ›y
odd powers: one inverse, no ยฑ
exp โ†” log
y = ex โŸบ x = ln y
take ln to bring down the exponent
log โ†” exp
y = loga x โŸบ x = ay
exponentiate to undo a log
reciprocal (self)
y = 1/x โŸบ x = 1/y
flip both sides
One-to-one functions are safe: their inverse gives exactly one value of x. Even powers, modulus, and trig functions are many-to-one โ€” their inverses spawn extra cases (ยฑ, multiple solutions) which you must track explicitly.

The many-to-one trap โ€” extra solutions

Some operations are many-to-one, meaning two different inputs give the same output. When you “undo” them, you create two cases:

Even powers
x2 = 25 โŸน x = ยฑ5
always include both signs
Modulus
|x| = 7 โŸน x = ยฑ7
two values, both distance 7 from 0
Squaring both sides is a powerful move but it can also create false solutions. After squaring, always check by plugging your solutions back into the original equation. If a value doesn’t satisfy the original, throw it out.

When the unknown appears more than once

Combine into one term first, then rearrange. The two main tricks:

Combining exponents

Exponent rules af(x) ยท ag(x) = af(x) + g(x)   ยท   af(x)ag(x) = af(x) โˆ’ g(x)

Combining logs

Log rules log f(x) + log g(x) = log[f(x) ยท g(x)]   ยท   log f(x) โˆ’ log g(x) = log[f(x)g(x)]

The hidden quadratic โ€” substitution trick

Some equations are quadratics in disguise. The signature: three terms, where the variable in the first term is the square of the variable in the second:

Polynomial
x4 โˆ’ 5x2 + 4 = 0
let u = x2
Exponential
e2x + ex โˆ’ 6 = 0
let u = ex
Square root
x โˆ’ 5โˆšx + 6 = 0
let u = โˆšx

๐Ÿงญ Recipe โ€” solving by substitution

  1. Spot the pattern: three terms, one is the square of another.
  2. Substitute u = the simpler term. The equation becomes a quadratic in u.
  3. Solve the quadratic using factoring, formula, or completing the square.
  4. Substitute back: replace u with the original expression and solve for x.
  5. Discard impossible solutions (e.g. if u = ex, then u must be positive โ€” reject any negative u).

Don’t divide by an expression that could be zero

It’s tempting to cancel a common factor โ€” but if that factor could equal zero, you lose solutions:

Lost solution example (x โˆ’ 3)(x + 1) = 4(x โˆ’ 3)
โœ— Dividing by (x โˆ’ 3):   x + 1 = 4 โ†’ x = 3 (just one solution โ€” but wait, x = 3 also satisfies the original!)

The fix: move everything to one side and factor instead of dividing.

The safe move: rearrange to (stuff) = 0, factor, then set each factor to zero. You’ll catch every solution.

Worked examples

WE 1

Solve a simple log equation

Find the exact solution of   7 โˆ’ 3 log2 x = 1.

Step 1: Isolate the log term โˆ’3 logโ‚‚ x = โˆ’6 logโ‚‚ x = 2 Step 2: Apply inverse โ€” exponentiate base 2 x = 2ยฒ = 4 x = 4 always check: logโ‚‚ 4 = 2, then 7 โˆ’ 3(2) = 1 โœ“
WE 2

Solve an equation involving a square root

Solve   x = โˆš(2x + 8).

Step 1: Square both sides โ€” many-to-one, expect a check xยฒ = 2x + 8 xยฒ โˆ’ 2x โˆ’ 8 = 0 Step 2: Factor (x โˆ’ 4)(x + 2) = 0 x = 4 or x = โˆ’2 Step 3: Check in the original x = 4: LHS = 4, RHS = โˆš16 = 4 โœ“ x = โˆ’2: LHS = โˆ’2, RHS = โˆš4 = 2 โœ— x = 4 squaring created a false solution at x = โˆ’2 โ€” always check after squaring
WE 3

Solve a hidden-quadratic exponential equation

Solve   e2x โˆ’ 7ex + 12 = 0.

Step 1: Notice eยฒหฃ = (eหฃ)ยฒ โ€” substitute u = eหฃ uยฒ โˆ’ 7u + 12 = 0 Step 2: Factor and solve (u โˆ’ 3)(u โˆ’ 4) = 0 u = 3 or u = 4 Step 3: Substitute back u = eหฃ eหฃ = 3 โ†’ x = ln 3 eหฃ = 4 โ†’ x = ln 4 x = ln 3 or x = ln 4 both solutions are valid โ€” eหฃ is always positive, so both u-values are acceptable
WE 4

Combine logs to solve a log equation

Find the exact solution of   ln x + ln(x โˆ’ 2) = ln 15.

Step 1: Combine the LHS using the log addition rule ln[x(x โˆ’ 2)] = ln 15 Step 2: Equate arguments (since ln is one-to-one) x(x โˆ’ 2) = 15 xยฒ โˆ’ 2x โˆ’ 15 = 0 Step 3: Factor and solve (x โˆ’ 5)(x + 3) = 0 x = 5 or x = โˆ’3 Step 4: Check domain โ€” log requires positive argument x = 5: ln 5 โœ“ and ln 3 โœ“ x = โˆ’3: ln(โˆ’3) is undefined โœ— x = 5 log of a negative is undefined โ€” reject any solution that breaks the log’s domain
WE 5

Solve without dividing by a possibly-zero expression

Solve   (x + 2)(x โˆ’ 5) = 6(x + 2).

Step 1: DON’T divide by (x + 2). Move everything to one side (x + 2)(x โˆ’ 5) โˆ’ 6(x + 2) = 0 Step 2: Factor out (x + 2) (x + 2)[(x โˆ’ 5) โˆ’ 6] = 0 (x + 2)(x โˆ’ 11) = 0 Step 3: Set each factor to zero x + 2 = 0 โ†’ x = โˆ’2 x โˆ’ 11 = 0 โ†’ x = 11 x = โˆ’2 or x = 11 had we divided by (x + 2), we’d have lost x = โˆ’2 โ€” that’s why factoring is the safer move
WE 6

Solve an exponential equation with different bases

Find the exact solution of   4x + 1 = 9x, giving your answer as a single logarithm.

Step 1: Take ln of both sides (x + 1) ln 4 = x ln 9 Step 2: Expand and group x terms x ln 4 + ln 4 = x ln 9 x ln 4 โˆ’ x ln 9 = โˆ’ln 4 x(ln 4 โˆ’ ln 9) = โˆ’ln 4 Step 3: Solve for x and tidy up x = โˆ’ln 4 / (ln 4 โˆ’ ln 9) = ln 4 / (ln 9 โˆ’ ln 4) = ln 4 / ln(9/4) x = ln 4 / ln(9/4) “exact” answer means leave the logs in โ€” don’t decimalise unless asked to

๐Ÿ’ก Top tips

โš  Common mistakes

When algebra runs out โ€” equations like ex = x2 mixing different function families โ€” there’s no analytic method that works. The next note covers solving equations graphically: plotting both sides and reading off the intersection points using your GDC.

Need help with Solving Equations Analytically?

Get 1-on-1 help from an IB examiner who knows exactly what Paper 1 & 2 are looking for.

Book Free Session โ†’