Calculus II — Integration
Level 1 Examination — Recognition
Time limit: 20 minutes Total marks: 30
Instructions: Answer all questions. For True/False items you must give a one-line justification to earn full marks. For matching items write the letter pairs.
Section A — Multiple Choice (1 mark each)
Q1. The most general antiderivative of is
- (A)
- (B)
- (C)
- (D)
Q2. equals
- (A)
- (B)
- (C)
- (D)
Q3. equals
- (A)
- (B)
- (C)
- (D)
Q4. The Fundamental Theorem of Calculus, Part 2 states that if then equals
- (A)
- (B)
- (C)
- (D)
Q5. For the LIATE mnemonic suggests choosing
- (A)
- (B)
- (C)
- (D)
Q6. For the appropriate trig substitution is
- (A)
- (B)
- (C)
- (D)
Q7. The improper integral converges precisely when
- (A)
- (B)
- (C)
- (D) all
Q8. The volume by the disk method of the solid formed by revolving about the -axis on is
- (A)
- (B)
- (C)
- (D)
Q9. The average value of on is
- (A)
- (B)
- (C)
- (D)
Q10. The arc length of on is
- (A)
- (B)
- (C)
- (D)
Section B — Matching (1 mark each pair)
Q11. Match each integral technique/form (left) with the correct partial-fraction or method template (right). (5 marks)
| Left | Right |
|---|---|
| (i) | (A) needs term |
| (ii) | (B) |
| (iii) | (C) trig substitution |
| (iv) | (D) |
| (v) | (E) integration by parts |
Q12. Match the Riemann sum estimate with its sample-point rule on a partition of . (3 marks)
| Left | Right |
|---|---|
| (i) Left sum | (A) uses |
| (ii) Right sum | (B) uses |
| (iii) Midpoint sum | (C) uses |
Section C — True / False with justification (2 marks each)
Q13. . (True/False + justification)
Q14. The Net Change Theorem says . (True/False + justification)
Q15. When using -substitution on a definite integral, if you change the limits to -values you do not need to back-substitute to . (True/False + justification)
Q16. For the area between and on , the integrand of the vertical-slice integral is . (True/False + justification)
Q17. By the comparison test, since for and converges, converges. (True/False + justification)
Q18. FTC Part 1 states for continuous . (True/False + justification)
Answer keyMark scheme & solutions
Section A
Q1 — (B) . Since . (1)
Q2 — (C) ; absolute value needed because domain excludes and includes negatives. (1)
Q3 — (A) , since . (1)
Q4 — (B) . (1)
Q5 — (B) : Logarithmic/Inverse/Algebraic/Trig/Exponential — algebraic ranks before exponential , so , . (1)
Q6 — (C) ; form with . (1)
Q7 — (C) (the -integral). (1)
Q8 — (B) . (1)
Q9 — (B) . (1)
Q10 — (A) . (1)
Section B
Q11 (1 each)
- (i)→(B); (ii)→(D); (iii)→(A) — wait, check: decomposes as , so (iii)→(A). (iv)→(C); (v)→(E).
Final: (i)-B, (ii)-D, (iii)-A, (iv)-C, (v)-E. (5)
Q12 (1 each)
- (i)-B, (ii)-C, (iii)-A. (3)
Section C
Q13 — FALSE. The integrand has an infinite discontinuity at ; the integral is improper (Type II) and actually diverges. Blindly applying is invalid. (1 for False, 1 for reason)
Q14 — TRUE. Direct statement of Net Change Theorem: integrating a rate of change gives the total change . (2)
Q15 — TRUE. Once limits are converted to -values, the integral is fully in terms of ; evaluate directly, no back-substitution required. (2)
Q16 — TRUE. On , , so top minus bottom ; vertical slices give . (2)
Q17 — TRUE. for and the larger integral converges, so by direct comparison the smaller converges. (2)
Q18 — TRUE. FTC Part 1: for continuous , is differentiable with . (2)
[
{"claim":"Antiderivative of 3x^2 is x^3","code":"x=symbols('x'); result = simplify(integrate(3*x**2,x)-x**3)==0"},
{"claim":"Average value of f on [a,b] formula: avg of x on [0,2] equals 1","code":"x=symbols('x'); result = Rational(1,2)*integrate(x,(x,0,2))==1"},
{"claim":"Area between y=x and y=x^2 on [0,1] equals 1/6","code":"x=symbols('x'); result = integrate(x-x**2,(x,0,1))==Rational(1,6)"},
{"claim":"int_1^inf 1/(x^2+1) dx converges to pi/4","code":"x=symbols('x'); result = integrate(1/(x**2+1),(x,1,oo))==pi/4"},
{"claim":"int_1^inf 1/x^2 dx converges to 1","code":"x=symbols('x'); result = integrate(1/x**2,(x,1,oo))==1"}
]