Time limit: 60 minutes
Total marks: 50
Instructions: Answer all questions. No hints are provided. Show all working. Use ... notation for mathematical expressions.
Question 1. [10 marks]
A curve C is defined for x≥1 by y=x1.
(a) The region between C and the x-axis over [1,∞) is revolved about the x-axis. Show that the resulting solid has finite volume, and find that volume. (4 marks)
(b) Determine whether the area of the same region (over [1,∞)) is finite or infinite, justifying your answer. (3 marks)
(c) Using a comparison argument, determine whether ∫1∞x22+sinxdx converges. (3 marks)
Question 2. [12 marks]
Evaluate the following integrals, showing all substitutions and limit changes.
(a) ∫0π/2sin3xcos2xdx(4 marks)
(b) ∫x2+2x+5x+4dx(4 marks)
(c) ∫01x2exdx(4 marks)
Question 3. [10 marks]
Consider the region R bounded by the curves y=x2 and y=2−x2.
(a) Find the area of R. (4 marks)
(b) The region R is revolved about the line y=−1. Set up and evaluate the integral for the volume using the washer method. (6 marks)
Question 4. [10 marks]
(a) Using trigonometric substitution, evaluate ∫(9+x2)3/2dx. (5 marks)
(b) Decompose into partial fractions and integrate:
∫(x−1)(x2+1)3x2+2x+1dx.(5 marks)
Question 5. [8 marks]
A curve is given by y=6x3+2x1 for 1≤x≤2.
(a) Show that 1+(y′)2 is a perfect square, and hence find the arc length of the curve on [1,2]. (5 marks)
(b) Find the average value of the function f(x)=6x3+2x1 on [1,2]. (3 marks)
(a) Disk method about x-axis:
V=π∫1∞(x1)2dx=π∫1∞x−2dx.
This is an improper (Type I) integral. (1)=πlimt→∞[−x1]1t=πlimt→∞(1−t1)=π(1−0).(2 for limit evaluation)V=π. Finite. (1)
(b) Area =∫1∞x1dx=t→∞lim[lnx]1t=t→∞limlnt=∞.(2)
The area is infinite (the p-integral with p=1 diverges). This is the classic Gabriel's Horn: finite volume, infinite surface/cross-sectional area. (1)
(c) For x≥1, −1≤sinx≤1 so 0≤2+sinx≤3, giving
0≤x22+sinx≤x23.(1)
Since ∫1∞x23dx=3⋅1=3 converges (p=2>1), (1)
by the Comparison Test the given integral converges. (1)
(a) Split odd power of sine: sin3x=sinx(1−cos2x). Let u=cosx, du=−sinxdx. (1)
Limits: x=0⇒u=1; x=π/2⇒u=0.
∫0π/2(1−cos2x)cos2xsinxdx=−∫10(1−u2)u2du=∫01(u2−u4)du.(2)=[3u3−5u5]01=31−51=152.(1)
(b) Write numerator to match derivative of denominator: dxd(x2+2x+5)=2x+2.
x+4=21(2x+2)+3.(1)∫x2+2x+521(2x+2)dx+∫(x+1)2+43dx.
First integral =21ln(x2+2x+5). (1)
Second: ∫(x+1)2+223dx=23arctan2x+1. (1)=21ln(x2+2x+5)+23arctan2x+1+C.(1)
(c) Integration by parts twice (LIATE: algebraic x2 = u).
u=x2,dv=exdx⇒du=2xdx,v=ex:
∫01x2exdx=[x2ex]01−2∫01xexdx.(1)
For ∫xexdx: u=x,dv=exdx: =[xex]01−∫01exdx=(e−0)−(e−1)=1.(2)
So ∫01x2exdx=(e−0)−2(1)=e−2.(1)
(a) Intersection: x2=2−x2⇒2x2=2⇒x=±1. (1)
On [−1,1], top curve y=2−x2, bottom y=x2.
A=∫−11[(2−x2)−x2]dx=∫−11(2−2x2)dx.(1)
By symmetry =2∫01(2−2x2)dx=2[2x−32x3]01=2(2−32)=2⋅34=38.(2)
(a)y′=2x2−2x21. (1)(y′)2=4x4−21+4x41.1+(y′)2=4x4+21+4x41=(2x2+2x21)2.(2)
So 1+(y′)2=2x2+2x21 (positive on [1,2]). (1)L=∫12(2x2+2x21)dx=[6x3−2x1]12=(68−41)−(61−21).=(34−41)−(61−21)=1213−(−31)=1213+124=1217.(1)
(b) Average value =2−11∫12(6x3+2x1)dx.(1)∫12(6x3+2x1)dx=[24x4+21lnx]12=(2416+21ln2)−(241+0).(1)=2415+21ln2=85+2ln2.
Average value =85+2ln2. (1)
[ {"claim":"Q1a volume = pi","code":"x=symbols('x'); V=pi*integrate(1/x**2,(x,1,oo)); result = simplify(V-pi)==0"}, {"claim":"Q2a sin^3 cos^2 integral = 2/15","code":"x=symbols('x'); I=integrate(sin(x)**3*cos(x)**2,(x,0,pi/2)); result = simplify(I-Rational(2,15))==0"}, {"claim":"Q2c x^2 e^x from 0 to 1 = e-2","code":"x=symbols('x'); I=integrate(x**2*exp(x),(x,0,1)); result = simplify(I-(E-2))==0"}, {"claim":"Q3b volume = 32pi/3","code":"x=symbols('x'); V=pi*integrate((3-x**2)**2-(x**2+1)**2,(x,-1,1)); result = simplify(V-Rational(32,3)*pi)==0"}, {"claim":"Q5a arc length = 17/12","code":"x=symbols('x'); yp=x**2/2-1/(2*x**2); L=integrate(sqrt(1+yp**2),(x,1,2)); result = simplify(L-Rational(17,12))==0"}, {"claim":"Q5b average value = 5/8 + ln2/2","code":"x=symbols('x'); A=integrate(x**3/6+1/(2*x),(x,1,2)); result = simplify(A-(Rational(5,8)+log(2)/2))==0"}]