Maths interleaved practice
Instructions: Work each problem on its own. The topics are deliberately shuffled — before solving, decide which tool the problem demands (limit law, one-sided analysis, squeeze, first principles, a specific differentiation rule, IVT, etc.). Show all reasoning. Total: 50 marks.
1. (5 marks) Evaluate
2. (6 marks) Using the difference-quotient definition (first principles), find for .
3. (5 marks) For compute the left- and right-hand limits at and classify any discontinuity.
4. (6 marks) Find by implicit differentiation for .
5. (4 marks) Show that , stating the theorem you use.
6. (5 marks) Differentiate , naming each rule as you apply it.
7. (5 marks) Show that has a root in . Name the theorem and verify its hypotheses.
8. (6 marks) A curve is given parametrically by , . Find and at .
9. (4 marks) Evaluate and state the equation of the horizontal asymptote.
10. (4 marks) Use the – definition to prove .
Answer keyMark scheme & solutions
1. (Tests 4.1.6 Important limits + 4.1.2 limit laws)
- First term: .
- Second term: (standard limit).
- Sum . Why: recognise both as disguised standard limits, not L'Hôpital fodder; adjust the argument to match .
2. (Tests 4.1.10 first principles) Rationalise: Why: problem explicitly demands the definition — no shortcut rules; multiply by the conjugate to clear the .
3. (Tests 4.1.3 one-sided limits + 4.1.7 continuity/discontinuity type)
- Left: as .
- Right: as .
- Both equal ; . So limit ⇒ continuous at (no discontinuity). Why: must test each side separately because the definition changes at ; the algebraic factor removes the apparent .
4. (Tests 4.1.22 implicit + 4.1.14 product + 4.1.16 chain) Differentiate: Group : Why: is a function of , so every -term needs chain rule; product rule on and on inside the sine.
5. (Tests 4.1.5 squeeze theorem) Since , for : . As , both bounds . By the Squeeze Theorem, the limit . Why: has no limit at , so limit laws fail; bound the oscillation between vanishing envelopes.
6. (Tests 4.1.15 quotient + 4.1.19 + 4.1.20 + chain) Why: quotient structure ⇒ quotient rule; numerator needs chain rule (), denominator gives .
7. (Tests 4.1.8 IVT) is polynomial ⇒ continuous on . , . Sign change ⇒ by the Intermediate Value Theorem, with . Why: existence-of-root question with a sign change is the IVT signature; verify continuity + opposite signs.
8. (Tests 4.1.23 parametric derivatives) , . Second derivative: . At : . Divide by : . Why: must divide by (not differentiate w.r.t. directly); the second derivative differentiates w.r.t. then divides again by — a classic trap.
9. (Tests 4.1.4 limits at infinity / horizontal asymptote) Divide by : . Horizontal asymptote . Why: compare leading degrees; ratio of leading coefficients gives the asymptote.
10. (Tests 4.1.9 –) Given , choose . If then Why: formal proof — reverse-engineer from .
[
{"claim":"Problem 1 sum equals 11/10",
"code":"import sympy as sp\nx=sp.symbols('x')\na=sp.limit(sp.sin(3*x)/(5*x),x,0)\nb=sp.limit((1-sp.cos(x))/x**2,x,0)\nresult = sp.simplify(a+b - sp.Rational(11,10))==0"},
{"claim":"Problem 2 derivative of sqrt(2x+1) is 1/sqrt(2x+1)",
"code":"import sympy as sp\nx=sp.symbols('x')\nf=sp.sqrt(2*x+1)\nresult = sp.simplify(sp.diff(f,x)-1/sp.sqrt(2*x+1))==0"},
{"claim":"Problem 8 d2y/dx2 at t=1 equals 3/2",
"code":"import sympy as sp\nt=sp.symbols('t')\nx=t**2\ny=t**3-3*t\ndy=sp.diff(y,t)/sp.diff(x,t)\nd2=sp.diff(dy,t)/sp.diff(x,t)\nresult = sp.simplify(d2.subs(t,1)-sp.Rational(3,2))==0"}
]