IB Maths AA SL Paper 1 & 2 17 min read

Solving Equations Analytically

Solving an equation analytically means finding the answer through algebra β€” no GDC. The strategy depends on whether the unknown appears once (rearrange and apply inverses) or more than once (simplify or use a substitution to get a quadratic).

πŸ“˜

What you need to know

  • If the unknown appears once: rearrange by applying inverse operations
  • If it appears more than once: try simplifying with exponent or log rules first
  • If three terms are visible and one is the square of another, try a quadratic substitution
  • Watch out for many-to-one operations (squaring, even powers): they can introduce extra false solutions
  • Always check your solutions in the original equation
  • Never divide by an expression that could be zero β€” you’ll lose solutions

When the Unknown Appears Once

If x appears in only one place, just peel away the operations by applying their inverses, one at a time:

Common Inverse Pairs
Add
⇄
Subtract
Multiply
⇄
Divide
Reciprocal 1x
⇄
Reciprocal (self-inverse)
Odd power x3
⇄
Cube root 3√x
Even power x2
⇄
Β±Square root
Exponential ax
⇄
Logarithm logax
ex
⇄
ln x

Many-to-one operations create extra solutions! Even powers and modulus give two answers (Β±). For example: x + 1 = 3 has one solution (x = 2), but squaring both sides turns it into (x + 1)2 = 9 which has two: x = 2 and x = βˆ’4. Always check.

Squaring Adds a Solution
x + 1 = 3
β†’ x = 2 βœ“
square both sides creates extra root
(x + 1)2 = 9
β†’ x = 2 or βˆ’4

When the Unknown Appears More Than Once

If x appears in multiple places, the goal is to simplify the expression until only one x remains. Two toolkits help: exponent rules and log rules.

Exponent Rules

af(x) Γ— ag(x) = af(x) + g(x)
af(x) Γ· ag(x) = af(x) βˆ’ g(x)
(af(x))g(x) = af(x) Γ— g(x)
af(x) = ef(x) ln a

Logarithm Rules

logaf(x) + logag(x) = loga(f(x) Γ— g(x))

logaf(x) βˆ’ logag(x) = logaf(x)g(x)

n logaf(x) = loga(f(x))n

Common slip: applying a function to each term instead of each side. Starting from ln x + ln(x βˆ’ 1) = 5, it’s WRONG to write eln x + eln(xβˆ’1) = e5. The correct move is eln x + ln(xβˆ’1) = e5 (combine the logs first).

The Quadratic Substitution Trick

Some equations look hard but are secretly quadratics in disguise. The clue: three terms involving the same type of function, where one is the square of another.

Example: 2e2x + 3ex βˆ’ 4 = 0
1
Notice e2x = (ex)2so one term is the square of another
2
Substitute y = exthen e2x becomes y2
3
Now the equation is 2y2 + 3y βˆ’ 4 = 0solve as a normal quadratic
4
Back-substitute to find xsolve ex = y1 and ex = y2

Spotting the Substitution

Each of these can be turned into a quadratic ay2 + by + c = 0 with the right substitution:

2x4 + 3x2 βˆ’ 4 = 0
use β†’ y = x2
2e2x + 3ex βˆ’ 4 = 0
use β†’ y = ex
2 Γ— 25x + 3 Γ— 5x βˆ’ 4 = 0
use β†’ y = 5x
2x + 3√x βˆ’ 4 = 0
use β†’ y = √x

Pattern: if you see something like 25x, ask yourself “what’s its square root?” β€” it’s 5x. So the substitution is y = 5x, because then 25x = (5x)2 = y2.

Watch Out: Dividing by Expressions

If you divide both sides of an equation by an expression, you might lose solutions β€” because that expression might equal zero!

For example, given (x + 1)(2x βˆ’ 1) = 3(x + 1):

The safe approach is to move everything to one side and factorise:

(x + 1)(2x βˆ’ 1) βˆ’ 3(x + 1) = 0
(x + 1)(2x βˆ’ 4) = 0
x = βˆ’1   or   x = 2 βœ“

Worked Examples

✎

Example 1 β€” Apply inverses (unknown once)

Solve 5 βˆ’ 2 log4 x = 0.

Answer:

Step 1: rearrange to isolate logβ‚„ x. 2 logβ‚„ x = 5 logβ‚„ x = 5/2 Step 2: apply the inverse (exponential of base 4). x = 45/2 = (√4)5 = 25 x = 32
✎

Example 2 β€” Square both sides (check for extra solutions!)

Solve x = √(x + 2).

Answer:

Step 1: square both sides (this is many-to-one β€” beware extra solutions). xΒ² = x + 2 xΒ² βˆ’ x βˆ’ 2 = 0 (x βˆ’ 2)(x + 1) = 0 x = 2 or x = βˆ’1 Step 2: check both solutions in the ORIGINAL equation. x = 2: LHS = 2, RHS = √4 = 2 βœ“ x = βˆ’1: LHS = βˆ’1, RHS = √1 = 1 βœ— (reject) x = 2 Squaring created the false solution x = βˆ’1. Always check.
✎

Example 3 β€” Quadratic substitution (exponential)

Solve e2x βˆ’ 4ex βˆ’ 5 = 0.

Answer:

Step 1: notice e2x = (ex)Β². Substitute y = ex. yΒ² βˆ’ 4y βˆ’ 5 = 0 Step 2: solve the quadratic. (y + 1)(y βˆ’ 5) = 0 y = βˆ’1 or y = 5 Step 3: back-substitute y = ex. ex = βˆ’1 β†’ no solutions (ex > 0 always) ex = 5 β†’ x = ln 5 x = ln 5 One of the y values led to no solution β€” that’s OK, it just means only one x value works.
✎

Example 4 β€” Combining logarithms

Solve log2(x + 1) + log2(x βˆ’ 1) = 3.

Answer:

Step 1: combine the logs using the addition rule. logβ‚‚[(x + 1)(x βˆ’ 1)] = 3 logβ‚‚(xΒ² βˆ’ 1) = 3 Step 2: apply the inverse (exponential of base 2). xΒ² βˆ’ 1 = 2Β³ = 8 xΒ² = 9 x = Β±3 Step 3: check the domain β€” log needs positive arguments. x = 3: logβ‚‚(4) + logβ‚‚(2) βœ“ x = βˆ’3: logβ‚‚(βˆ’2) β€” undefined βœ— x = 3
✎

Example 5 β€” Don’t divide by a possibly-zero expression

Solve (x βˆ’ 2)(x + 5) = 4(x βˆ’ 2).

Answer:

Step 1: move everything to one side. Don’t divide by (x βˆ’ 2)! (x βˆ’ 2)(x + 5) βˆ’ 4(x βˆ’ 2) = 0 Step 2: factor out the common bracket (x βˆ’ 2). (x βˆ’ 2)[(x + 5) βˆ’ 4] = 0 (x βˆ’ 2)(x + 1) = 0 Step 3: set each factor to zero. x = 2 or x = βˆ’1 If you’d divided by (x βˆ’ 2), you’d have lost the solution x = 2.
πŸ’‘

Tips

  • Count how many times x appears. Once β†’ just rearrange. More than once β†’ simplify or substitute.
  • Look for the square pattern when there are three terms. If one term is the square of another, you’ve got a hidden quadratic.
  • Apply functions to the whole side, not term-by-term. e(ln x + ln y) = e5 is right; eln x + eln y = e5 is wrong.
  • Check the domain when logs or square roots are involved. Solutions that make the argument zero or negative aren’t valid.
  • Always verify in the original equation, especially after squaring or applying any many-to-one operation.
  • Move everything to one side and factorise instead of dividing β€” you’ll never lose a solution that way.
⚠

Common mistakes

  • Applying functions term-by-term. ln x + ln y = 5 β†’ eln x + eln y = e5 is WRONG. Apply the exponential to the whole side.
  • Forgetting to check solutions after squaring. Squaring is many-to-one and creates extra (false) solutions.
  • Forgetting the domain restrictions for logs and square roots. Valid arguments must be positive.
  • Dividing by an expression involving x. If that expression could be zero, you lose solutions. Move things to one side and factorise instead.
  • Mistaking e2x for 2ex. They’re different! e2x = (ex)2, not 2 Γ— ex.
  • Solving ex = negative number. No real solution exists β€” ex is always positive. Don’t fake an answer.
  • Reversing log and exp: logax = y means x = ay (not ya).

Final word: Look at the structure of the equation. One x? Apply inverses. Multiple x‘s? Simplify. Three terms with a square pattern? Substitute. Then check, check, check β€” especially when squaring or working with logs.

Need help with Functions?

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

Book Free Session β†’