Calculus I — Limits & Derivatives
Level 2 (Recall / Standard Problems)
Time limit: 30 minutes Total marks: 40
Answer all questions. Show working where appropriate. Use notation for mathematics.
1. Evaluate the following limits using limit laws. (4 marks)
(a)
(b)
2. For the function find and . State whether exists. (4 marks)
3. Evaluate: (4 marks)
(a)
(b)
4. Find the derivative of from first principles (using the difference quotient definition). (5 marks)
5. Differentiate the following with respect to : (6 marks)
(a)
(b) (product rule)
(c) (quotient rule)
6. Use the chain rule to differentiate . (3 marks)
7. State the definition of continuity of a function at a point . Determine whether has a removable, jump, or infinite discontinuity at . (4 marks)
8. State the Intermediate Value Theorem. Hence show that the equation has a root between and . (4 marks)
9. Find by implicit differentiation for . (3 marks)
10. Differentiate: (3 marks)
(a)
(b)
Answer keyMark scheme & solutions
1. (4 marks)
(a) Direct substitution (polynomial is continuous): . (2 marks)
(b) Factor: as . (2 marks: 1 factoring, 1 answer)
2. (4 marks)
LHL: . (1) RHL: . (1) Since , the two-sided limit does not exist (jump). (2)
3. (4 marks)
(a) Divide by : . (2)
(b) , using . (2)
4. (5 marks)
. (1 setup)
. (1)
Difference: . (1)
Quotient: . (1)
Limit as : . (1)
5. (6 marks)
(a) . (2)
(b) Product rule: . (2)
(c) Quotient rule: . (2)
6. (3 marks)
. (1 outer, 1 inner, 1 combine)
7. (4 marks)
Definition: is continuous at if (i) exists, (ii) exists, and (iii) . (2)
For (): limit at 1 is but undefined → removable discontinuity. (2)
8. (4 marks)
IVT: If is continuous on and lies between and , then there exists with . (2)
Let (continuous). , . Since lies between and , a root exists in . (2)
9. (3 marks)
Differentiate: . (2) . (1)
10. (3 marks)
(a) . (1.5)
(b) . (1.5)
[
{"claim":"Q1b limit equals 6","code":"x=symbols('x'); result = limit((x**2-9)/(x-3), x, 3) == 6"},
{"claim":"Q3a limit equals 2/5","code":"x=symbols('x'); result = limit((2*x**2+3*x-1)/(5*x**2-x+4), x, oo) == Rational(2,5)"},
{"claim":"Q3b limit equals 5","code":"x=symbols('x'); result = limit(sin(5*x)/x, x, 0) == 5"},
{"claim":"Q4 derivative from first principles is 2x-3","code":"x,h=symbols('x h'); f=lambda t:t**2-3*t; result = simplify(limit((f(x+h)-f(x))/h, h, 0) - (2*x-3)) == 0"},
{"claim":"Q5c derivative is 1/(x+1)**2","code":"x=symbols('x'); result = simplify(diff(x/(x+1), x) - 1/(x+1)**2) == 0"},
{"claim":"Q6 chain rule derivative is 24x(3x^2+1)^3","code":"x=symbols('x'); result = simplify(diff((3*x**2+1)**4, x) - 24*x*(3*x**2+1)**3) == 0"}
]