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...
-
x=4cost y=2sint First, take the derivative of x and y with respect to t. dx/dt=-4sint dy/dt=2cost Then, determine the first derivative dy/dx...
-
Ethno-nationalism is defined as "advocacy of or support for the political interests of a particular ethnic group, especially its nation...
-
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...
-
Both boys are very charismatic and use their charisma to persuade others to follow them. The key difference of course is that Ralph uses his...
-
Equation of a tangent line to the graph of function f at point (x_0,y_0) is given by y=y_0+f'(x_0)(x-x_0). The first step to finding eq...
-
Determine $\displaystyle \frac{dy}{dx}$ of $y^5 + x^2y^3 = 1 + x^4 y$ by Implicit Differentiation. $\displaystyle \frac{d}{dx}(y^5) + ...
No comments:
Post a Comment