Exponentials & Logarithms
Time limit: 60 minutes Total marks: 50 Instructions: Answer all questions. Show full working. Use , appropriately. Calculators permitted; give exact forms where possible and decimals to 4 s.f.
Question 1 — Growth, Decay & Cross-Domain Modelling (18 marks)
A radioactive isotope decays according to , where is in years.
(a) Prove that the half-life and the decay constant satisfy , starting from the definition of half-life. (3)
(b) A sample of Carbon-14 has half-life years. A wooden artefact contains of the C-14 found in living wood. Determine its age to the nearest year. (4)
(c) A biologist writes the following pseudo-code loop to approximate a population growing continuously at rate per year, using discrete compounding steps per year:
P = P0
for i in range(n):
P = P * (1 + r/n)
The continuous model gives . Explain, using the definition , why the loop's output tends to as . (4)
(d) For , compute the relative error for (quarterly). Give your answer as a percentage to 3 s.f. (3)
(e) State the doubling time of the continuous model in (c) and explain why it is independent of . (4)
Question 2 — Proofs & the Machinery of Logarithms (16 marks)
(a) Using only the laws of exponents and the definition of as the inverse of , prove the product law for . (4)
(b) Prove the change-of-base formula . (3)
(c) Hence prove that , stating any restriction on . (3)
(d) Solve for : Justify which solutions are valid. (6)
Question 3 — Logarithmic Scales & Equation Solving (16 marks)
(a) The Richter magnitude of an earthquake is , where is the measured amplitude and a reference. Show that an earthquake of magnitude has an amplitude ratio that is a factor larger than one of magnitude , and evaluate this factor to 3 s.f. (4)
(b) Sound intensity level in decibels is . Two sources of equal intensity combine to give total intensity . Find the increase in decibel level, exactly and numerically. (4)
(c) Solve the exponential equation, giving the exact answer and a decimal: (4)
(d) The pH of a solution is . Solution A has pH ; solution B has hydrogen-ion concentration times that of A. Find the pH of B to 2 d.p. (4)
Answer keyMark scheme & solutions
Question 1
(a) Half-life is time for to halve: . (1) So . (1) Take : . (1)
(b) . From : . (2) . (1) Age years (nearest year). (1)
(c) After steps, . (1) Write . (1) Let as ; the inner bracket by definition . (1) Hence . (1)
(d) . (1) . Relative error . (1) (3 s.f.). (1)
(e) Doubling time years years. (2) From , cancels, so depends only on , not — the fractional growth rate is scale-free. (2)
Question 2
(a) Let , , so by definition , . (1) Then by the law of exponents. (1) Applying (inverse of ): . (1) . (1)
(b) Let , so . Take of both sides: . (1) Power law: . (1) So , i.e. . (1)
(c) Put in (b): . (2) Hence , provided and . (1)
(d) . (1) So . (1) . (1) or . (1) Domain requires and , i.e. . (1) Both and satisfy this, so and are both valid. (1)
Question 3
(a) . (1) , so . (1) . (1) Factor . (1)
(b) (exact). (2) . (2)
(c) Take : . (1) . (1) . (1) (4 s.f.). (1)
(d) . . (1) . (2) . (1)
[
{"claim":"C-14 artefact age ~3819 years",
"code":"t = 5730*ln(1/Rational(63,100))/ln(2); result = abs(float(t)-3819) < 1"},
{"claim":"Quarterly relative error ~0.0789%",
"code":"e_true = exp(Rational(8,100)); loop = (1+Rational(2,100))**4; rel = (e_true-loop)/e_true; result = abs(float(rel)*100 - 0.0789) < 0.001"},
{"claim":"Q2d solutions are x=3 and x=6",
"code":"sol = solve(Eq(x**2 - 9*x + 18, 0), x); result = set(sol) == {3,6}"},
{"claim":"Q3c solution x ~ -7.346",
"code":"xval = (-2*ln(5)-ln(3))/(2*ln(3)-ln(5)); result = abs(float(xval)-(-7.346)) < 0.001"},
{"claim":"Q3d pH of B ~2.70",
"code":"pHB = Rational(34,10) - log(5,10); result = abs(float(pHB)-2.70) < 0.01"}
]