Calculus II — Integration
Level 3 Paper: Production (Derivations & Explain-Out-Loud)
Time limit: 45 minutes Total marks: 60
Instructions: Show every step. Where a derivation is requested, work from scratch — state definitions and theorems you rely on. Use / notation.
Question 1 — FTC from scratch (12 marks)
State and prove the Fundamental Theorem of Calculus, Part 1: if is continuous on and , then .
(a) Write down the definition of as a limit. (2) (b) Express as a single integral and bound it using the Extreme Value Theorem on . (5) (c) Apply the Squeeze Theorem and continuity of to conclude. (3) (d) State FTC Part 2 and show how it follows from Part 1. (2)
Question 2 — Integration by parts, derived and applied (10 marks)
(a) Derive the integration-by-parts formula starting from the product rule for derivatives. (3) (b) State the LIATE ordering and explain in one sentence why it works as a heuristic for choosing . (2) (c) Evaluate . (5)
Question 3 — Arc length derivation + evaluation (10 marks)
(a) Derive the arc-length formula from a partition of , stating the theorem used to pass from a chord to . (5) (b) Find the exact arc length of for . (5)
Question 4 — Trig substitution, from memory (9 marks)
Evaluate .
(a) State which substitution you use and why (which radical form it clears). (2) (b) Carry out the substitution, integrate, and give the answer in terms of (resolve the triangle). (7)
Question 5 — Improper integral + comparison reasoning (10 marks)
(a) Determine whether converges; evaluate if it does, showing the limit explicitly. (4) (b) Use the comparison test to decide convergence of . State clearly your comparison function and the inequality. (3) (c) Explain out loud (in words) why the comparison test requires the comparison function's integral to converge, not merely for the bound to hold at large . (3)
Question 6 — Volume, two methods (9 marks)
The region bounded by , , is revolved about the -axis.
(a) Set up and evaluate the volume using the shell method. (5) (b) Set up (integrand + limits only, no need to evaluate) the same volume using the washer method, integrating in . (4)
Answer keyMark scheme & solutions
Question 1 (12)
(a) By definition (2):
(b) (5) Since , continuous on ⇒ by the Extreme Value Theorem attains min and max there. So (for ) (1 mark single integral, 2 EVT bounds, 2 dividing by ; symmetric argument for .)
(c) (3) As , the interval shrinks to ; by continuity both and . By the Squeeze Theorem,
(d) (2) FTC Part 2: if is any antiderivative of continuous , then . Proof: is an antiderivative by Part 1, so . Then .
Question 2 (10)
(a) (3) Product rule: . Integrate both sides over the relevant interval: i.e. with , : .
(b) (2) LIATE = Log, Inverse trig, Algebraic, Trig, Exponential; pick as whichever comes first. Rationale: earlier types simplify (differentiate) toward a constant while later types integrate cleanly, so becomes simpler.
(c) (5) . (2 setup, 2 boundary term, 1 final.)
Question 3 (10)
(a) (5) Partition ; on subinterval the chord length is . By the Mean Value Theorem there is with . Sum:
(b) (5)
Question 4 (9)
(a) (2) Use (form with ): it clears since .
(b) (7) , , . Let : Triangle: opposite , adjacent , hyp , so . (2 setup, 2 simplify, 2 integrate, 1 back-substitute.)
Question 5 (10)
(a) (4) . Then
(b) (3) For , , so . Since converges (part a), by the comparison test the given integral converges. (Also acceptable: compare with .)
(c) (3) The comparison test bounds the tail integral: only forces convergence if is finite. A pointwise bound with divergent gives no information — a smaller function than a divergent one may still diverge. Convergence must be inherited from a convergent dominating integral (and the inequality must hold on the whole tail, i.e. eventually, with ).
Question 6 (9)
(a) (5) Shell method about -axis: radius , height , .
(b) (4) Washer in : for , outer radius , inner radius . (Check: , consistent.)
[
{"claim":"Q2c: integral of x e^{2x} from 0 to 1 = (e^2+1)/4","code":"x=symbols('x'); v=integrate(x*exp(2*x),(x,0,1)); result = simplify(v-(exp(2)+1)/4)==0"},
{"claim":"Q3b: arc length = 5/3","code":"x=symbols('x'); y=Rational(2,3)*(x**2+1)**Rational(3,2); L=integrate(sqrt(1+diff(y,x)**2),(x,0,1)); result = simplify(L-Rational(5,3))==0"},
{"claim":"Q4: antiderivative check d/dx(-sqrt(x^2+4)/(4x)) = 1/(x^2 sqrt(x^2+4))","code":"x=symbols('x',positive=True); F=-sqrt(x**2+4)/(4*x); result = simplify(diff(F,x)-1/(x**2*sqrt(x**2+4)))==0"},
{"claim":"Q5a: improper integral of 1/x^2 on [1,inf) = 1","code":"x=symbols('x'); result = integrate(1/x**2,(x,1,oo))==1"},
{"claim":"Q6a: shell volume = 8 pi","code":"x=symbols('x'); V=integrate(2*pi*x*x**2,(x,0,2)); result = simplify(V-8*pi)==0"},
{"claim":"Q6b: washer volume = 8 pi","code":"y=symbols('y'); V=integrate(pi*(4-y),(y,0,4)); result = simplify(V-8*pi)==0"}
]