i, j, k are unit vectors.
r(u,v)=(b+a*cos(u))*cos(v) i + (b+a*cos(u))*sin(v) j + a*sin(u) k
0<=u,v<=2pi and a=1/4 and b=1
The surface area is:
A=double integral of magnitude of (r_u x r_v) dA
r_u is the partial derivative of r(u,v) with respect to u and r_v with respect to v:
r_u(u,v)= -a*sin(u)*cos(v) i -a*sin(u)*sin(v) j +a*cos(u) k
r_v(u,v)= -(b+a*cos(u))*sin(v) i +(b+a*cos(u))*cos(v) j
Compute the cross product:
r_u x r_v = -a*cos(u)*(b+a*cos(u))*cos(v) i - a*cos(u)*(b+a*cos(u))*sin(v) j - a*(b+a*cos(u))*sin(u) k
Compute the magnitude:
magnitude(r_u x r_v)= sqrt(a^4*(cos(u))^2+2*a^3*b*cos(u)+a^2*b^2)= a*(b+a*cos(u))
Lastly, evaluate the integral:
integral(integral(a*(b+a*cos(u)),v,0,2*pi),u,0,2*pi) = 4*pi^2 * a * b
With a=1/4 and b=1 the surface area is pi^2.
The Matlab code for the plot is:
clear allsyms u va=1/4; b=1;x=(b+a*cos(u))*cos(v);y=(b+a*cos(u))*sin(v);z=a*sin(u);ezsurf(x,y,z,[0,2*pi,0,2*pi])
Sunday, July 16, 2017
Attached are a question and the matlab code. The code gives the total surface area as 639.4828, but the figure is not showing up. Also, the question says to use surface integral to calculate the surface area, not matlab. Please help me on this. Thanks.
Subscribe to:
Post Comments (Atom)
Summarize the major research findings of "Toward an experimental ecology of human development."
Based on findings of prior research, the author, Bronfenbrenner proposes that methods for natural observation research have been applied in ...
-
Find the indefinite integral $\displaystyle \int \sec^4 \left( \frac{x}{2} \right) dx$. Illustrate by graphing both the integrand and its an...
-
Determine $\displaystyle \frac{dy}{dx}$ of $y^5 + x^2y^3 = 1 + x^4 y$ by Implicit Differentiation. $\displaystyle \frac{d}{dx}(y^5) + ...
-
Determine the area of the region bounded by the hyperbola $9x^2 - 4y^2 = 36$ and the line $ x= 3$ By using vertical strips, Si...
-
Find the integral $\displaystyle \int^1_0 \frac{1}{\sqrt{16 t^2 + 1}} dt$ If we let $u = 4t$, then $du = 4dt$, so $\displaystyle dt = \frac{...
-
Determine the integral $\displaystyle \int \frac{\sin^3 (\sqrt{x})}{\sqrt{x}} dx$ Let $u = \sqrt{x}$, then $\displaystyle du = \frac{1}{2 \s...
-
Given y=cos(2x), y=0 x=0,x=pi/4 so the solid of revolution about x-axis is given as V = pi * int _a ^b [R(x)^2 -r(x)^2] dx here R(x) =cos(2x...
-
Anthony certainly cheats on Gloria. During the war, when he was stationed in South Carolina, he had an affair with a local girl by the name ...
No comments:
Post a Comment