Calculus I — Limits & Derivatives
Level 5 Mastery Examination
Time limit: 90 minutes Total marks: 60 Instructions: Answer all three questions. Show full working; proofs must be rigorous. Calculators not permitted except where a numerical algorithm is explicitly requested (state your arithmetic).
Question 1 — Foundations: squeeze, first principles, continuity (20 marks)
(a) Using the squeeze theorem, prove rigorously that State the bounding inequalities you use. (4)
(b) Using the – definition of a limit, prove that Give the explicit relation between and . (5)
(c) Prove from first principles (difference quotient) that the derivative of for is . You may use the standard limit . (5)
(d) Consider Find all values of and that make continuous at . Classify the type of discontinuity that occurs if instead (with chosen from your continuity condition on the right). (6)
Question 2 — Cross-domain: physics of motion + related rates + optimization (22 marks)
A particle moves along a straight line with position (in metres) given by
(a) Find velocity and acceleration . Determine the time intervals when the particle moves in the positive direction, and the times at which it is instantaneously at rest. (5)
(b) Find the total distance travelled (not net displacement) over . (4)
(c) A spherical balloon is inflated so that its volume increases at a constant rate of . Find the rate at which the radius is increasing at the instant when the surface area is . (Use , .) (5)
(d) An open-top rectangular box with a square base is to be built to hold a volume of . The base costs units/cm² and the sides cost unit/cm². Find the base-side length and height that minimise total cost, and prove your answer is a minimum using the second derivative test. (8)
Question 3 — Analysis + numerical computing: MVT, L'Hôpital, Newton–Raphson (18 marks)
(a) State the Mean Value Theorem. For on , find the value(s) guaranteed by the theorem. (4)
(b) Evaluate, showing which indeterminate form arises and justifying each application of L'Hôpital's rule: (6)
(c) The equation has a single real root near .
(i) Write the Newton–Raphson iteration formula for this equation. (2)
(ii) Starting from , compute and (give 4 decimal places). (4)
(iii) Write a short pseudocode/Python-style function newton(f, df, x0, tol) that returns the root, and state one condition under which Newton's method may fail to converge. (2)
Answer keyMark scheme & solutions
Question 1
(a) (4 marks) Since for all , multiply by : As , and . By squeeze theorem the middle term . (2)
(b) (5 marks) Given , we need , i.e. . (2) Choose . (1) Then . (2) ∎
(c) (5 marks) (1) Rationalise by multiplying by conjugate:
(d) (6 marks) Left limit: (2) Right limit: (1) For continuity all three equal: need ? Impossible unless we require both sides match value . Since left limit and right limit , the two one-sided limits differ (), so no value of makes continuous (the right expression at is fixed ). For continuity we would need left = right = ; since , cannot be made continuous — it has a jump discontinuity at of size . (3) (If instead the right piece were we'd get ; grader: award marks for correctly identifying , , jump. With : the point value matches neither one-sided limit, confirming a jump/removable-type mismatch; the discontinuity remains a jump discontinuity.)
Question 2
(a) (5 marks) (2) (1) At rest: and . (1) (positive direction) when or ; i.e. . (1)
(b) (4 marks) Direction changes at . Positions: (2) Distances: m. (2)
(c) (5 marks) (2) Surface area (1) (2)
(d) (8 marks) Volume: (1) Cost (2) (2) (exact ). Then . With , … check: , so cm. (1) Second derivative: for , so minimum. (2)
Question 3
(a) (4 marks) MVT: If continuous on , differentiable on , then with . (2) ; . Set (2)
(b) (6 marks) First: form . (1) Apply L'Hôpital: , still . (1) Again: (1) Second: is ; rewrite (form ). (1) L'Hôpital: (2)
(c)(i) (2 marks) , :
(ii) (4 marks) : ; . (2) : ; (2) (True root .)
(iii) (2 marks)
def newton(f, df, x0, tol):
x = x0
while abs(f(x)) > tol:
x = x - f(x)/df(x)
return xFailure condition (any one): (division by zero / flat tangent), poor initial guess causing divergence or cycling, or non-convergence when the root is a multiple root (slow) — (2).
[
{"claim":"sqrt derivative limit equals 1/(2 sqrt x)","code":"x,h=symbols('x h',positive=True); result = simplify(limit((sqrt(x+h)-sqrt(x))/h,h,0)-1/(2*sqrt(x)))==0"},
{"claim":"total distance travelled 0..4 is 12","code":"t=symbols('t'); s=t**3-6*t**2+9*t+2; pts=[0,1,3,4]; d=sum(abs(s.subs(t,pts[i+1])-s.subs(t,pts[i])) for i in range(3)); result = d==12"},
{"claim":"balloon dr/dt = 3/(4 pi)","code":"r=2; drdt=12/(4*pi*r**2); result = simplify(drdt-Rational(3,4)/pi)==0"},
{"claim":"box optimum x cubed = 32000 and second deriv positive","code":"x=symbols('x',positive=True); C=2*x**2+128000/x; sol=solve(diff(C,x),x); xc=sol[0]; result = (xc**3==32000) and (diff(C,x,2).subs(x,xc)>0)"},
{"claim":"limits: (e^x-1-x)/x^2 -> 1/2 and x ln x -> 0","code":"x=symbols('x'); l1=limit((exp(x)-1-x)/x**2,x,0); l2=limit(x*log(x),x,0,'+'); result = (l1==Rational(1,2)) and (l2==0)"}
]