You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
This lesson covers the change of base formula for logarithms, which allows you to convert between different logarithm bases. This is needed for the Edexcel 9MA0 specification and is useful for solving equations, evaluating logarithms on a calculator, and proving results.
The change of base formula states:
log_a(x) = log_b(x) / log_b(a)
This allows you to express a logarithm in any base b. The most common choices are b = 10 (common logarithm) and b = e (natural logarithm).
Let log_a(x) = n. Then aⁿ = x.
Take log_b of both sides: log_b(aⁿ) = log_b(x)
By the power law: n × log_b(a) = log_b(x)
Therefore: n = log_b(x) / log_b(a)
Since n = log_a(x), we have: log_a(x) = log_b(x) / log_b(a)
Calculators typically have buttons for log₁₀ and ln, but not for other bases. The change of base formula lets you evaluate any logarithm.
Example 1: Find log₃(20)
Or using natural logarithms:
Both give the same answer.
Example 2: Find log₇(100)
A useful special case of the change of base formula is:
log_a(b) = 1 / log_b(a)
This follows from setting x = b in the formula:
log_a(b) = log_b(b) / log_b(a) = 1 / log_b(a)
Example: If log₂(5) = p, find log₅(2).
This relationship is frequently tested in exams.
Example 1: Solve log₂(x) = 3 + log₈(x)
Convert log₈(x) to base 2:
So the equation becomes:
Example 2: Solve log₃(x) + log₉(x) = 6
Convert log₉(x) to base 3:
So:
The change of base formula is also used to prove identities.
Example: Prove that log_a(b) × log_b(c) = log_a(c)
Using change of base (converting to base a):
The log_a(b) terms cancel, giving log_a(c). Proved.
Example: Prove that log_a(b) × log_b(c) × log_c(a) = 1
Using the result above:
Using change of base:
Exam Tip: You rarely need to convert between ln and log₁₀ explicitly, but knowing the relationship helps check your work. The key skill is converting unusual bases (like log₃ or log₅) to log₁₀ or ln for calculation.
Edexcel 9MA0-01 specification section 6 — Exponentials and logarithms, change-of-base sub-strand covers the laws of logarithms... including the change-of-base formula logax=logbalogbx (refer to the official specification document for exact wording). Although nominally a single bullet point, change of base is the synoptic glue that makes section 6 work: it lets you collapse an equation with two different bases into one, evaluate a logarithm whose base is not on a calculator (calculators have only log10 and ln), and translate between mathematical and computer-science conventions (log2 in algorithm analysis, ln in calculus). It is examined directly in 9MA0-01 (in pure log equations) and indirectly in 9MA0-02 (in exponential models where rate constants must be re-expressed). The Edexcel formula booklet does list the change-of-base identity, so the M1 mark is awarded for selecting and applying it correctly — not for memorising it.
Synoptically, change of base connects to solving exponential equations (where mixed-base exponents force a base conversion), calculator computation (every base-a logarithm on a non-base-10 calculator routes through ln), computer science (log2n governs binary-search and divide-and-conquer complexity), and information theory (entropy is naturally measured in bits via log2 but in nats via ln — translation is pure change of base).
Question (8 marks): Solve, giving x as an exact value:
log4x+log2x=9
Solution with mark scheme:
Step 1 — choose a common base and convert.
The two logarithms use bases 4 and 2. Since 4=22, base 2 is the natural common choice. Apply change of base to log4x:
log4x=log24log2x=2log2x
M1 — selecting change-of-base formula and applying it with a sensible common base. Equally valid: convert log2x to base 4 via log2x=log4x/log42=2log4x. Either route earns M1.
A1 — correct evaluation log24=2 and clean substitution.
Step 2 — substitute and combine.
The equation becomes:
2log2x+log2x=9
Step 3 — clear the fraction.
Multiply through by 2:
log2x+2log2x=18
3log2x=18
M1 — combining the two terms in log2x with consistent algebra.
A1 — correct simplified equation 3log2x=18.
Step 4 — solve for log2x.
log2x=6
M1 — isolating the logarithmic term.
Step 5 — exponentiate.
x=26=64
A1 — exact value x=64.
Step 6 — domain check.
For log4x and log2x to be defined we require x>0. Since 64>0, the solution is valid.
B1 — explicit domain check, awarded for stating the constraint and verifying the candidate solution satisfies it.
A1 — final answer x=64 with full justification.
Total: 8 marks (M3 A4 B1).
Question (6 marks): Given that log9y=k, where k is a constant:
(a) Express log3y in terms of k. (2)
(b) Hence solve log9y+log3y=6, giving y as an exact value. (4)
Mark scheme decomposition by AO:
(a)
(b)
Total: 6 marks split AO1 = 5, AO2 = 1. This is an AO1-dominated question — the AO2 mark rewards the candidate who notices that "exact value" forbids a decimal and that the back-substitution step deserves explicit working rather than a one-line numerical jump.
Connects to:
Solving exponential equations (section 6): equations like 5x=3x+1 require taking a logarithm of some base on both sides. Choosing ln is conventional, but the resulting expression x=ln5−ln3ln3 is just log5/33 in disguise — change of base unifies these solution forms.
Calculator computation (section 6): to evaluate log750 on a calculator that only has ln and log10, change of base gives log750=ln7ln50≈2.011. Every "log to an unusual base" calculator question routes through this identity.
Computer science complexity (O(logn)): binary search runs in log2n steps; merge sort in nlog2n. But in big-O notation, O(log2n)=O(logen)=O(log10n) because the change-of-base formula shows they differ only by a constant factor 1/logba. Change of base is why the base inside big-O is irrelevant.
Information theory (entropy): the Shannon entropy H=−∑pilog2pi is measured in bits. Switching to natural log gives entropy in nats: Hnats=Hbits⋅ln2. The conversion factor is exactly the change-of-base reciprocal log2e=1/ln2≈1.4427.
Combinatorics and counting: the number of binary digits needed to represent n is ⌈log2(n+1)⌉. Translating a counting argument expressed in decimal digits (log10) to bits (log2) — for example, "a 6-digit decimal number requires at most how many bits?" — is an immediate change-of-base application: 6log210≈19.93, so 20 bits.
Change-of-base questions on 9MA0 split AO marks as follows:
| AO | Typical share | Earned by |
|---|---|---|
| AO1 (knowledge / procedure) | 65–75% | Recalling the formula, selecting an appropriate common base, applying it correctly, simplifying logba where a is a power of b |
| AO2 (reasoning / interpretation) | 20–30% | Justifying the choice of base ("base 2 is natural since 4=22"), recognising when change of base is required (mixed-base equations) versus merely available, presenting answers in exact form |
| AO3 (problem-solving) | 0–10% | Multi-stage modelling problems where change of base is one step inside a longer argument; rare in section 6 stand-alone but appears in synoptic Paper 2 questions |
Examiner-rewarded phrasing: "by the change-of-base formula"; "choosing base 2 because 4=22 converts cleanly"; "since logaa=1 and logaan=n". Phrases that lose marks: "let log4x=y" without re-establishing the relationship to log2x; quoting the formula but using it with numerator and denominator inverted; treating logba and logab as equal (they are reciprocals: logba=1/logab).
A specific Edexcel pattern to watch: when the question states "exact value", the candidate must avoid evaluating ln2 or ln4 as decimals at any stage — keep symbolic logarithms intact and only evaluate when the final cancellation makes the answer rational.
Question: Use change of base to evaluate log512 to 3 significant figures.
Grade C response (~210 words):
Using the change-of-base formula:
log512=ln5ln12
On a calculator: ln12≈2.4849 and ln5≈1.6094.
So log512≈1.60942.4849≈1.5439.
To 3 significant figures, log512≈1.54.
Examiner commentary: Full marks (3/3). The candidate correctly applies the change-of-base formula with natural logarithms, reads two intermediate values to 4 decimal places (one more than the requested final precision, which is the right working margin), and rounds correctly to 3sf. The choice of ln over log10 is incidental — both give the same final value because the two scaling factors cancel inside the ratio. A subtle point worth noting: had the candidate read ln12 and ln5 to only 3sf each, accumulated rounding error could have shifted the final answer to 1.53 or 1.55, costing the A1.
Grade A response (~250 words):*
By the change-of-base formula:
log512=ln5ln12
(I use natural logarithms for calculator compatibility; log10 would give the same final value because the constant factor ln10 cancels in the ratio.)
Computing each value to 4 decimal places to retain accuracy through rounding:
Therefore:
log512=1.60942.4849=1.5440…
To 3 significant figures, log512≈1.54.
Sense check: 51.54≈5⋅50.54≈5⋅2.41≈12.05, confirming the answer is consistent with the original equation 5x=12.
Examiner commentary: Full marks (3/3). Beyond procedural correctness, the candidate (i) names the change-of-base formula explicitly, (ii) justifies the choice of ln over log10, (iii) carries one extra significant figure through intermediate working before rounding, and (iv) performs a back-substitution sense-check. The sense-check is the marker of A* discipline: it costs ten seconds and catches both calculator-input errors and conceptual misreads (e.g. computing log125 by mistake). Examiner reports repeatedly highlight this habit as separating top-band candidates from the merely competent.
Question: Solve log2x=log4(x+6), giving x as an exact value.
Grade B response (~285 words):
Use change of base to convert log4(x+6) to base 2:
log4(x+6)=log24log2(x+6)=2log2(x+6).
So the equation becomes:
log2x=2log2(x+6)
Multiply both sides by 2:
2log2x=log2(x+6)
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.