Year 11 Maths Advanced Module 4 ~35 min Lesson 8 of 15

Change of Base and Logarithmic Equations

Your calculator has buttons for $\ln$ and $\log_{10}$, but not for $\log_2$, $\log_5$, or $\log_7$. How do scientists calculate $\log_2(1000)$ when studying binary search algorithms? How do biologists solve $P = P_0 e^{kt}$ for $t$ when studying population growth? The change of base formula bridges any logarithm to the ones your calculator knows. Combined with logarithmic equations, it gives us the full toolkit for solving real-world exponential problems.

๐Ÿงฎ
Printable worksheet

Download this lesson's worksheet

Use the PDF for classwork, homework or revision.

Think First

Your calculator can compute $\ln$ and $\log_{10}$. Can you find $\log_3(20)$ using only these? Make a prediction about what formula might help.

Write your initial thinking in your book
Saved
๐Ÿ“

Formula Reference โ€” This Lesson

Change of base
$\log_a(x) = \frac{\log_b(x)}{\log_b(a)} = \frac{\ln(x)}{\ln(a)}$
Solving log equations
$\log_a(M) = \log_a(N) \Rightarrow M = N$ (if $M, N > 0$) $\log_a(x) = c \Rightarrow x = a^c$
Check solutions
Always check that arguments of logs are positive Reject any solution that makes $\log(\text{negative})$ or $\log(0)$
Key insight: The change of base formula is not magic โ€” it simply says that if $a^y = x$, then $y = \frac{\ln(x)}{\ln(a)}$. This follows directly from taking $\ln$ of both sides of $a^y = x$.
Know

Key Facts

  • Change of base: $\log_a(x) = \frac{\ln x}{\ln a}$
  • $\log_a(M) = \log_a(N) \Rightarrow M = N$
  • Always check domain restrictions when solving
Understand

Concepts

  • Why change of base works (derived from $a^y = x$)
  • Why extraneous solutions can appear in log equations
  • How to check solutions against domain
Can Do

Skills

  • Evaluate any logarithm using a calculator
  • Solve logarithmic equations algebraically
  • Check and reject extraneous solutions
01Change of Base

The Change of Base Formula

Let $y = \log_a(x)$. By definition, $a^y = x$. Take natural log of both sides:

ln(a^y) = ln(x)  โ†’  y ln(a) = ln(x)  โ†’  y = ln(x) / ln(a)

Therefore:

log_a(x) = ln(x) / ln(a)

This works for any valid base $b$:

log_a(x) = log_b(x) / log_b(a)

Most common use: $\log_a(x) = \frac{\ln(x)}{\ln(a)}$ or $\frac{\log_{10}(x)}{\log_{10}(a)}$. Both give the same answer.

Example: $\log_3(20) = \frac{\ln(20)}{\ln(3)} \approx \frac{2.996}{1.099} \approx 2.727$.

02Logarithmic Equations

Solving Logarithmic Equations

There are two main types of logarithmic equations:

Type 1: $\log_a(x) = c$

Convert to exponential form: $x = a^c$. Then check that $x > 0$.

Example: log_2(x) = 5 โ†’ x = 2^5 = 32. Check: 32 > 0 โœ“

Type 2: $\log_a(M) = \log_a(N)$

Since log is one-to-one: $M = N$. Then check that $M > 0$ and $N > 0$.

Example: log_3(x+2) = log_3(2x-1) โ†’ x+2 = 2x-1 โ†’ x = 3. Check: x+2=5>0, 2x-1=5>0 โœ“

Type 3: Combining log laws first

Sometimes you need to use log laws to combine terms before solving.

Example: log_2(x) + log_2(x-2) = 3 โ†’ log_2(x(x-2)) = 3 โ†’ x(x-2) = 2^3 = 8 โ†’ x^2 - 2x - 8 = 0 โ†’ (x-4)(x+2) = 0 โ†’ x = 4 or x = -2. Check: x=4: log_2(4)+log_2(2)=2+1=3 โœ“. x=-2: log_2(-2) undefined โœ—. Final answer: x = 4.

Critical: Always check solutions. Logarithms are only defined for positive arguments.

Real-World Anchor Binary Search and Computer Science. A binary search algorithm halves the search space with each step. To find how many steps are needed to search $N$ items: solve $2^n \geq N$ for $n$. Using change of base: $n = \log_2(N) = \frac{\ln(N)}{\ln(2)}$. For 1 billion items: $n = \frac{\ln(10^9)}{\ln(2)} \approx 29.9$, so 30 steps maximum. Without logarithms, we'd never know this elegant result. This is why logarithms are fundamental to algorithm analysis.
Worked Example

GIVEN

Solve: $\log_5(x) + \log_5(x - 4) = 2$.

FIND

All valid solutions for $x$.

METHOD

log_5(x) + log_5(x-4) = 2
log_5(x(x-4)) = 2
x(x-4) = 5^2 = 25
x^2 - 4x - 25 = 0
x = (4 ยฑ sqrt(16+100))/2 = (4 ยฑ sqrt(116))/2 = 2 ยฑ sqrt(29)
x โ‰ˆ 2 + 5.385 = 7.385 or x โ‰ˆ 2 - 5.385 = -3.385
Check x > 4 (need x > 0 and x-4 > 0)
x = 2 + sqrt(29) โ‰ˆ 7.385 > 4 โœ“
x = 2 - sqrt(29) โ‰ˆ -3.385 < 0 โœ—

ANSWER

$x = 2 + \sqrt{29} \approx 7.39$.

Try It Now

โ–ผ

Solve: $\log_3(x - 1) = 2 + \log_3(2)$.

Answer:

$\log_3(x-1) - \log_3(2) = 2 \Rightarrow \log_3(\frac{x-1}{2}) = 2 \Rightarrow \frac{x-1}{2} = 9 \Rightarrow x-1 = 18 \Rightarrow x = 19$. Check: $x-1 = 18 > 0$ โœ“.

03Extraneous Solutions

Why Extraneous Solutions Appear

When we combine logarithmic terms using log laws, we sometimes create equations that have extra solutions. This happens because:

  • $\log_a(M) + \log_a(N) = \log_a(MN)$ is only valid when $M > 0$ and $N > 0$
  • When we rewrite $\log_a(M) + \log_a(N)$ as $\log_a(MN)$, we lose the individual domain restrictions
  • The new equation $\log_a(MN) = c$ may have solutions where $MN > 0$ but $M < 0$ or $N < 0$

Rule: After solving, substitute back into the original equation. Reject any solution that makes any log argument non-positive.

Copy Into Your Books

โ–ผ

Change of base

$\log_a(x) = \frac{\ln x}{\ln a}$

Type 1 equation

$\log_a(x) = c \Rightarrow x = a^c$

Type 2 equation

$\log_a(M) = \log_a(N) \Rightarrow M = N$

Always check

All log arguments must be positive

AActivities

Activities

Activity 1 โ€” Calculate and Interpret

  1. Evaluate $\log_5(100)$ using change of base (give 3 d.p.).
  2. Solve $\log_2(x) = 7$.
  3. Solve $\log_4(x + 3) = 2$.
  4. Solve $\log_3(x) + \log_3(x - 2) = 2$.

Activity 2 โ€” Analyse and Connect

  1. Explain why $\log_3(x) + \log_3(x - 4) = \log_3(x(x - 4))$ is only valid for $x > 4$.
  2. A binary search needs at most 20 comparisons. What is the maximum number of items it can search? Use change of base.
  3. Solve $\ln(x) + \ln(x - 3) = \ln(10)$. Show all working and check for extraneous solutions.
Revisit Your Initial Thinking

$\log_3(20)$ can be found using $\log_3(20) = \frac{\ln(20)}{\ln(3)} \approx 2.727$. The change of base formula works because if $3^y = 20$, taking $\ln$ of both sides gives $y \ln(3) = \ln(20)$, so $y = \frac{\ln(20)}{\ln(3)}$. This is not just a calculator trick โ€” it is a direct consequence of the definition of logarithms.

Write your reflection in your book
Saved
MC

Multiple Choice

5 random questions from a replayable lesson bank โ€” feedback shown immediately

๐Ÿ“

Extended Questions

ApplyBand 4

8. Use change of base to evaluate $\log_7(50)$ to 3 decimal places. Show your working. 3 MARKS

Answer in your workbook
ApplyBand 4

9. Solve $\log_2(x - 1) + \log_2(x + 1) = 3$. Show all working and check for extraneous solutions. 3 MARKS

Answer in your workbook
AnalyseBand 5

10. A binary search algorithm halves the search space with each comparison. Show that the maximum number of comparisons needed to search $N$ items is $\lceil \log_2(N) \rceil$. Calculate how many comparisons are needed for 1 million items. Explain why this is dramatically faster than a linear search, which needs up to $N$ comparisons. 3 MARKS

Answer in your workbook

Comprehensive Answers

โ–ผ

Activity 1 โ€” Model Answers

1. $\log_5(100) = \frac{\ln(100)}{\ln(5)} \approx \frac{4.605}{1.609} \approx 2.861$.

2. $x = 2^7 = 128$.

3. $x + 3 = 4^2 = 16 \Rightarrow x = 13$. Check: $13 + 3 = 16 > 0$ โœ“.

4. $\log_3(x(x-2)) = 2 \Rightarrow x(x-2) = 9 \Rightarrow x^2 - 2x - 9 = 0 \Rightarrow x = 1 + \sqrt{10} \approx 4.16$ (reject $1 - \sqrt{10}$ since $x > 2$).

Activity 2 โ€” Model Answers

1. $\log_3(x)$ requires $x > 0$; $\log_3(x-4)$ requires $x > 4$. Combined: $x > 4$.

2. $2^{20} = 1{,}048{,}576$ items. Maximum ~1.05 million items.

3. $\ln(x(x-3)) = \ln(10) \Rightarrow x(x-3) = 10 \Rightarrow x^2 - 3x - 10 = 0 \Rightarrow (x-5)(x+2) = 0$. $x = 5$: check $\ln(5) + \ln(2) = \ln(10)$ โœ“. $x = -2$: $\ln(-2)$ undefined โœ—. Final: $x = 5$.

Short Answer Model Answers

Q8 (3 marks): $\log_7(50) = \frac{\ln(50)}{\ln(7)}$ [1] $= \frac{3.912}{1.946}$ [0.5] $\approx 2.010$ [1.5].

Q9 (3 marks): $\log_2((x-1)(x+1)) = 3$ [0.5]. $(x-1)(x+1) = 8$ [0.5]. $x^2 - 1 = 8$, so $x^2 = 9$, giving $x = \pm 3$ [0.5]. Check $x = 3$: $\log_2(2) + \log_2(4) = 1 + 2 = 3$ โœ“ [0.5]. Check $x = -3$: $\log_2(-4)$ undefined โœ— [0.5]. Valid solution: $x = 3$ [0.5].

Q10 (3 marks): After $n$ comparisons, remaining items = $N/2^n$ [0.5]. For success, need $N/2^n \leq 1$, so $2^n \geq N$, thus $n \geq \log_2(N)$ [0.5]. For $N = 1{,}000{,}000$: $n = \log_2(10^6) = \frac{\ln(10^6)}{\ln(2)} = \frac{6\ln(10)}{\ln(2)} \approx 19.93$, so $\lceil 19.93 \rceil = 20$ comparisons [0.5]. Linear search needs up to 1,000,000 comparisons in the worst case [0.5]. Binary search is faster because each comparison eliminates half the remaining items โ€” the number of steps grows logarithmically with $N$ rather than linearly [0.5]. For large $N$, $\log_2(N)$ is vastly smaller than $N$ (e.g., 20 vs 1,000,000) [0.5].

โšก
Science Jump

Jump Through Change of Base!

Climb platforms using change of base, log equation solving, and domain checking. Pool: lesson 8.

Mark lesson as complete

Tick when you've finished all activities and checked your answers.