7. Determine the convergence or divergence of the series ∑ (n=1 to ∞) n / (n^3 + 1).
Solution
Correct: A
Using the Limit Comparison Test with ∑ 1/n^2 (which converges by the p-test with p=2 > 1): lim (n→∞) (n / (n^3 + 1)) / (1/n^2) = lim (n→∞) n^3 / (n^3 + 1) = 1. Since the limit is a finite positive number and ∑ 1/n^2 converges, ∑ n / (n^3 + 1) also converges.
8. Find the equation of the tangent plane to the surface z = x^2 + y^2 at the point (1, 2, 5).
Solution
Correct: A
Let f(x, y) = x^2 + y^2. Then fx = 2x and fy = 2y. At (1, 2), fx(1, 2) = 2 and fy(1, 2) = 4. The equation of the tangent plane is z - f(1, 2) = fx(1, 2)(x - 1) + fy(1, 2)(y - 2) => z - 5 = 2(x - 1) + 4(y - 2) => z - 5 = 2x - 2 + 4y - 8 => z = 2x + 4y - 5.
9. Solve the differential equation: dy/dx = (x + y) / x, with y(1) = 1.
Solution
Correct: A
dy/dx = 1 + y/x. Let v = y/x, so y = vx and dy/dx = v + x dv/dx. Then v + x dv/dx = 1 + v, so x dv/dx = 1. dv = dx/x, so v = ln|x| + C. Therefore, y/x = ln|x| + C, so y = x ln|x| + Cx. Using y(1) = 1, 1 = 1 ln|1| + C(1) => 1 = 0 + C, so C = 1. Thus, y = x ln|x| + x.
10. Find the area of the region bounded by y = x^2 and y = 2 - x^2.
13. Find the directional derivative of f(x, y) = x^2y + y^3 at the point (1, 2) in the direction of the vector v = <3, 4>.
Solution
Correct: C
∇f = <2xy, x^2 + 3y^2>. At (1, 2), ∇f(1, 2) = <4, 13>. Unit vector in the direction of v: u = <3/5, 4/5>. Du f(1, 2) = ∇f(1, 2) · u = <4, 13> · <3/5, 4/5> = (12/5) + (52/5) = 64/5.
14. Evaluate ∫∫R xy dA, where R is the region bounded by y = x, y = 3x, x = 1, and x = 2.
Solution
Correct: B
∫∫R xy dA = ∫[1,2] ∫[x,3x] xy dy dx = ∫[1,2] x [y^2 / 2] from x to 3x dx = ∫[1,2] x (9x^2/2 - x^2/2) dx = ∫[1,2] 4x^3 dx = [x^4] from 1 to 2 = 16 - 1 = 15.
15. Find the solution to the initial value problem: y'' - 4y' + 4y = 0, y(0) = 1, y'(0) = 0.
16. Determine the Taylor series for sin(x^2) centered at x = 0.
Solution
Correct: A
The Taylor series for sin(x) is ∑ (-1)^n * x^(2n+1) / (2n+1)!. Substituting x^2 for x, we get sin(x^2) = ∑ (-1)^n * (x^2)^(2n+1) / (2n+1)! = ∑ (-1)^n * x^(4n+2) / (2n+1)!.
17. Find the length of the curve y = (2/3)x^(3/2) from x = 0 to x = 3.
Solution
Correct: C
y' = x^(1/2). Arc length: ∫[0,3] √(1 + (y')^2) dx = ∫[0,3] √(1 + x) dx. Let u = 1 + x, du = dx. ∫[1,4] √u du = [(2/3)u^(3/2)] from 1 to 4 = (2/3)(8 - 1) = 14/3. Calculation Error! S = ∫[0, 3] sqrt(1 + x) dx = [2/3 (1 + x)^(3/2)][0, 3] = 2/3 [4^(3/2) - 1^(3/2)] = 2/3(8 - 1) = 14/3
18. If z = f(x, y) and x = r cos(θ), y = r sin(θ), find ∂z/∂r.
Solution
Correct: A
By the chain rule, ∂z/∂r = (∂z/∂x)(∂x/∂r) + (∂z/∂y)(∂y/∂r). Since x = r cos(θ), ∂x/∂r = cos(θ). Since y = r sin(θ), ∂y/∂r = sin(θ). Therefore, ∂z/∂r = (∂z/∂x)cos(θ) + (∂z/∂y)sin(θ).
19. A curve is defined by the parametric equations x = t^2, y = t^3 - t. Find the values of t where the tangent line is vertical.
Solution
Correct: A
For a vertical tangent, dx/dt = 0 and dy/dt ≠ 0. dx/dt = 2t. dy/dt = 3t^2 - 1. dx/dt = 0 when t = 0. When t = 0, dy/dt = -1 ≠ 0. So t=0 is one solution. 3t^2-1 = 0 when t = ±√(1/3) also give dy/dt = 0. Thus we look for vertical tangent lines only where dx/dt = 0 -> 2t = 0 -> t = 0. At t=0, dy/dt = -1 which is nonzero. dx/dt = 0 implies a vertical tangency.
Discussion & Comments