PROBLEMS INVOLVING PARAMETERIZED SURFACES AND SURFACES OF REVOLUTION

Size: px
Start display at page:

Download "PROBLEMS INVOLVING PARAMETERIZED SURFACES AND SURFACES OF REVOLUTION"

Transcription

1 PROBLEMS INVOLVING PARAMETERIZED SURFACES AND SURFACES OF REVOLUTION Exercise 7.1 Plot the portion of the parabolic cylinder z = 4 - x^2 that lies in the first octant with 0 y 4. (Use parameters x and y. Determine the range of values for x to only plot points in the first octant.) clear all clc; f - x.^2; x = linspace(0,2,60); y = linspace(0,4,60); [X,Y] = meshgrid(x,y); surf(x,y,f(x,y),'facealpha',0.5) colormap copper grid on rotate3d view([154,44]) axis([ ]) set(gca,'color','y') set(gca,'xtick',0:.5:2,'xminortick','on','fontname','times','fontweight','bold') set(gca,'ytick',0:1:4,'yminortick','on','fontname','times','fontweight','bold') set(gca,'ztick',0:1:4,'zminortick','on','fontname','times','fontweight','bold') title({'portion of the Cylinder z = 4 - x^2','in the first Octant'}) xlabel('x-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) ylabel('y-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) zlabel('z-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12)

2

3 Exercise 7.2 Rotate the curve x = 1 + cos z, for 0 z 2π, around the z-axis. Use Matlab to draw the surface of revolution. Use axis equal command if necessary for a nondistorted view. These equations x = F(z)cos t, y = F(z) sin t, z = z rotates a function F(z) about the z-axis. Clear all clc F + cos(z); %(The funtion or curve to be rotated) t = linspace(0,2*pi,55); z = linspace(0,2*pi,55); %Rotation of the curve F(z) about the z-axis [T,U] = meshgrid(t,z); X = F(U).*cos(T); Y = F(U).*sin(T); Z = U; surfl(x,y,z); hold on % Parametrization of the curve x = 1 + cos(z) t=linspace(0,2*pi,55); x=1+cos(t); y=0.*t; z=t; plot3(x,y,z,'b','linewidth',4)

4 colormap copper grid on rotate3d view([146,20]) axis equal square axis([ *pi]) legend('surface','revolved curve','location','northeastoutside') set(gca,'color','y') set(gca,'xtick',-2:1:2,'xminortick','on','fontname','times','fontweight','bold') set(gca,'ytick',-2:1:2,'yminortick','on','fontname','times','fontweight','bold') set(gca,'ztick',0:pi/2:2*pi,'zticklabel',{'0','pi/2','pi','3pi/2','2pi'}) set(gca,'zminortick','on','fontname','times','fontweight','bold') title({'the curve x = F(z) = 1 + cos(z)','revolved about the z-axis'}) xlabel('x-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) ylabel('y-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) zlabel('z-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12)

5

6 Exercise 7.3 Draw the portion of the cone y^2 = x^2 + z^2 for 0 y 3. (This is obtained by rotating the line z = y around the y-axis. Use the angle of rotation t and the y variable as parameters.) clear all clc F t = linspace(0,2*pi,55); y = linspace(0,3,55); [T,Y] = meshgrid(t,y); X = F(Y).*cos(T); Z = F(Y).*sin(T); Y = Y; surfl(x,y,z); hold on X = 0.*F(y); Y = F(y); Z = F(y); plot3(x,y,z,'b','linewidth',4) colormap copper grid on rotate3d view([130,22]) axis equal square axis([ ])

7 legend('surface','revolved curve','location','northeastoutside') set(gca,'color','y','xtick',-3:1:3,'xminortick','on','fontname','times','fontweight','bold') set(gca,'ytick',0:0.5:3,'yminortick','on','fontname','times','fontweight','bold') set(gca,'ztick',-3:1:3,'zticklabel',{'0','pi/2','pi','3pi/2','2pi'}) set(gca,'zminortick','on','fontname','times','fontweight','bold') title({'revolving the curve x = 1 + cos(z)','about the z-axis'}) xlabel('x-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) ylabel('y-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) zlabel('z-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12)

8 Exercise 7.4 Draw the ellipsoid whose equation is x^2/4 + y^2/16 + z^2/2 = 1 in two ways. WAY 1: Using explicit parametric equations base on spherical coordinates. (Observe: The quantities x' = x/2, y' = y/4 and z' = z/sqrt(2) satisfy the equation (x')^2 + ( y')^2 + (z')^2 = 1. Use spherical coordinates for x', y', and z' to parametrize the latter surface.) Use axis equal to obtain a non-distorted view. WAY 2: Using the MatLab built-in function ellipsoid. THE CODE FOR WAY 1 u = linspace(0,pi,60); v = linspace (0,2*pi,60); [U,V] = meshgrid(u,v); X = 2*sin(U).*cos(V); Y = 4*sin(U).*sin(V); Z = sqrt(2)*cos(u); surfl(x,y,z) colormap copper grid on rotate3d axis equal axis([ sqrt(2),sqrt(2)]) view([158,14]) set(gca,'color','y','xtick',-2:1:2,'xminortick','on','fontname','times','fontweight','bold') set(gca,'ytick',-4:1:4,'yminortick','on','fontname','times','fontweight','bold') set(gca,'ztick',-2:0.5:2,'zminortick','on','fontname','times','fontweight','bold')

9 title('a Parameterized Ellipsoid 4x^2 + y^2 + 8z^2 = 16') xlabel('x-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) ylabel('y-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) zlabel('z-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12)

10 CODE FOR WAY 2 Clear all clc [x,y,z] = ellipsoid(0,0,0,2,4,sqrt(2),40); surfl(x,y,z) colormap copper grid on rotate3d axis equal axis([ sqrt(2),sqrt(2)]) view([158,14]) set(gca,'color','y') set(gca,'xtick',-2:1:2,'xminortick','on','fontname','times','fontweight','bold') set(gca,'ytick',-4:1:4,'yminortick','on','fontname','times','fontweight','bold') set(gca,'ztick',-2:0.5:2,'zminortick','on','fontname','times','fontweight','bold') title('an Ellipsoid 4x^2 + y^2 + 8z^2 = 16 (generated by the Ellipsoid Command)') xlabel('x-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) ylabel('y-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) zlabel('z-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12)

11

12 Exercise 7.5 The circle of radius 1 centered at (2,0,0) in the xz-plane has parametric equations x = 2 + cos t, y = 0, z = sin t, where 0 t 2π. If we revolve that circle or curve around the z-axis we obtain a donut-shaped figure called a TORUS. Letting s denote the angle of rotation about the z-axis. Show that the parametric equations of this surface are x = (2 + cos t) cos s, y = (2 + cos t) sin s, z = sin t, where 0 t 2π and 0 s 2π. Using Matlab, draw the surface. (N.B. Use axis equal to obtain a non-distorted view.) clear all clc f + cos(x); g t = linspace(0,2*pi,40); s = linspace(0,2*pi,40); [T,S] = meshgrid(t,s); %The torus X = f(t).*cos(s); Y = f(t).*sin(s); Z = g(t); surf(x,y,z,'facealpha', 0.4) hold on % The circle drawn in blue that was rotated about the z-axis X = f(t); Y = 0.*f(t); Z = z(t);

13 plot3(x,y,z,'b','linewidth',4); colormap copper grid on rotate3d view([130,22]) axis equal axis([ ]) legend('surface','revolved curve','location','northeastoutside') set(gca,'color','y','xtick',-3:1:3,'xminortick','on','fontname','times','fontweight','bold') set(gca,'ytick',-3:1:3,'yminortick','on','fontname','times','fontweight','bold') set(gca,'ztick',-1:0.5:1,'zminortick','on','fontname','times','fontweight','bold') title({ The circle (x-2)^2 + z^2 = 1','revolved about the z-axis','to get a surface called a Torus'}) xlabel('x-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) ylabel('y-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) zlabel('z-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12)

14

15 Exercise 7.6 Create a single plot showing the cylinders x^2 + z^2 = 1 and y^2 + z^2 = 1 within the box where -2 x 2, -2 y 2, and -2 z 2. Later we will compute the volume enclosed by the two cylinders. Make one cylinder semi-transparent using matlab s FaceAlpha property. Clear all clc x=@(w)cos(w); y=@(w)0.*w; z=@(w)sin(w); t=linspace(-2,2,40); s=linspace(0,2*pi,40); X = x(s); Y = 0.*y(s); Z = z(s); plot3(x,y,z,'r','linewidth',4) hold on X = y(s); Y = x(s); Z = z(s); plot3(x,y,z,'g','linewidth',4) [U,V] = meshgrid(t,s); X = cos(v); Y = U; Z = sin(v);

16 surf(x,y,z,'facealpha',0.5) X = U; Y = cos(v); Z = sin(v); surf(x,y,z,'facealpha',0.5) colormap copper grid on rotate3d axis equal square axis([ ]) view([154,32]) set(gca,'color','y','xtick',-2:1:2,'xminortick','on','fontname','times','fontweight','bold') set(gca,'ytick',-2:1:2,'yminortick','on','fontname','times','fontweight','bold') set(gca,'ztick',-2:1:2,'zminortick','on','fontname','times','fontweight','bold') title({'two intersecting Cylinders',' x^2 + z^2 = 1 and y^2 + z^2 = 1'}) xlabel('x-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) ylabel('y-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) zlabel('z-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12)

17

18 Exercise 7.7 Create a single plot showing the portion of the parabolic cylinder z = 4 - x^2 that lies in the first octant with 0 y 3, (see Exercise 7.1) and the first octant portion of the vertical plane y = x, with 0 z 4. Draw the plane with a single patch using a 'FaceColor' of 'cyan'. Make the cylinder semi-transparent so you can see the vertical plane inside the cylinder. clear all clc f - x.^2; g + 0.*z; x = linspace(0,2,60); z = linspace(0,4,60); y = linspace(0,3,60); [X,Y] = meshgrid(x,z); [X,Z] = meshgrid(x,z); surf(x,y,f(x,y),'facealpha',0.5) hold on surfl(x,g(x,z),z) colormap copper grid on rotate3d view([154,44]) axis([ ]) set(gca,'color','y','xtick',0:.5:2,'xminortick','on','fontname','times','fontweight','bold') set(gca,'ytick',0:1:4,'yminortick','on','fontname','times','fontweight','bold') set(gca,'ztick',0:1:4,'zminortick','on','fontname','times','fontweight','bold')

19 title({'portion of the Cylinder z = 4 - x^2 and vertical plane y = x','in the first Octant'}) xlabel('x-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) ylabel('y-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) zlabel('z-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12)

20 Exercise 7.8 Create a single plot that shows the sphere x^2 + y^2 + z^2 = 4 and the cylinder (x - 1)^2 + y^2 = 1. Use axis equal to obtain a non-distorted view. Make the sphere semitransparent so you can see the cylinder inside of it. clear all clc t = linspace(-2,2,40); u = linspace(0,pi,40); s = linspace(0,2*pi,40); [U,V] = meshgrid(u,s); %The Sphere of radius 2 centered at the origin (0,0,0. X = 2.* sin(u).* cos(v); Y = 2.* sin(u).* sin(v); Z = 2.* cos(u); surf(x,y,z,'facealpha',0.4) hold on [U,V] = meshgrid(t,s); % The cylinder at centered at (1,0,0) X = 1 + cos(v); Y = sin(v); Z = U; surf(x,y,z)

21 colormap copper grid on rotate3d view([154,44]) axis equal square axis([ ]) set(gca,'color','y','xtick',-2:1:2,'xminortick','on','fontname','times','fontweight','bold') set(gca,'ytick',-2:1:2,'yminortick','on','fontname','times','fontweight','bold') set(gca,'ztick',-2:1:2,'zminortick','on','fontname','times','fontweight','bold') title({'portion of the Cylinder z = f(x,y) = 4 - x^2', 'and the vertical plane y = x in the first Octant'}) xlabel('x-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) ylabel('y-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) zlabel('z-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12)

22 END OF MATLAB ASSIGNMENT 7 (READ AND DO ASSIGNMENT 8 ON YOUR OWN!!!)

23 THIS PROBLEM (NOT A PART OF YOUR 7 TH LAB) WAS INCLUDED ONLY TO ASSIST YOU IN SOLVING PROBLEM 2 OF YOUR TAKE HOME Exercise 7.9 Sketch the surface f(x,y) = x^2 - y^2 together with these two contour curves f(x,y) = 44 and f(x,y) = 23. Include the planes z = 23 and z = 44 and the trace curve y = 0 as part of your plot. This should help you. Clear all clc % THE SURFACES TO BE PLOTTED g - x.^2; % The trace curve y = 0 This is a curve in the xz-plane. F - 0.*y; % The plane z = 44 G - 0.*y; % The plane z = 23 x = linspace(-12,12, 40); y = linspace(-12,12, 40); u = linspace(0,12,40); v = linspace(0,2*pi,40); % Parametrization of the Circular Paraboloid z = 144 x^2 y^2. [U,V] = meshgrid(u,v); % Parameter domain X = U.*cos(V); Y = U.*sin(V); Z = 144-U.^2;

24 surf(x,y,z,'facealpha',0.4) hold on [X,Y] = meshgrid(x,y); % Rectangular Domain over which I am plotting f(x,y) only surf(x,y,f(x,y),'facealpha',0.3) surf(x,y,g(x,y),'facealpha',0.3) % READY TO DEFINE PLANES z = d - ax - by. Therefore we have z = 44-0x - 0y and z = 23-0x - 0y t = linspace(-12,12,40); % Domain of the trace curve % Define the trace curve y = 0 and z = x^2 X = t; Y = 0.*t; Z = t.^2; plot3(x,y,z,'b','linewidth', 3) % Now we define the two 'Contour curves' (not level curves) f(x,y) = 44 i.e the x^2 + y^2 = 100; z = 44 and % f(x,y) = 23 i.e., x^2 + y^2 = 121; z = 23. Since these curves in space % are circles we can parameterize them in the usual way. t = linspace(0,2*pi,40); u = linspace(1,1,40); X = 11.*cos(t); Y = 11.*sin(t); Z = 23.*u;

25 plot3(x,y,z,'g','linewidth',3) X = 10.*cos(t); Y = 10.*sin(t); Z = 44.*u; plot3(x,y,z,'r','linewidth',3) colormap copper grid on rotate3d view([148,34]) axis equal square axis([ ]) legend('surface f(x,y) = x^2 - y^2','plane z = 23','plane z = 44','Trace z = x^2','contour f(x,y) = 23','contour f(x,y) = 44','Location','NorthEastOutside') set(gca,'color','y','xtick',-12:4:12,'xminortick','on','fontname','times','fontweight','bold') set(gca,'ytick',-12:4:12,'yminortick','on','fontname','times','fontweight','bold') set(gca,'ztick',0:36:144,'zminortick','on','fontname','times','fontweight','bold') title({'graph of f(x,y) = x^2-y^2','with two contour curves and a trace',' and two and planes'}) xlabel('x-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) ylabel('y-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12) zlabel('z-axis','color','black','fontname','mathematica','fontweight','bold','fontsize',12)

26

YOUR MATLAB ASSIGNMENT 4

YOUR MATLAB ASSIGNMENT 4 YOUR MATLAB ASSIGNMENT 4 Contents GOAL: USING MATLAB TO SKETCH THE GRAPHS OF A PARAMETERIZED SURFACES IN SPACE USE THE FOLLOWING STEPS: HERE IS AN ACTUAL EXAMPLE OF A CLOSED SURFACE DRAWN PARAMETERICALLY

More information

16.6. Parametric Surfaces. Parametric Surfaces. Parametric Surfaces. Vector Calculus. Parametric Surfaces and Their Areas

16.6. Parametric Surfaces. Parametric Surfaces. Parametric Surfaces. Vector Calculus. Parametric Surfaces and Their Areas 16 Vector Calculus 16.6 and Their Areas Copyright Cengage Learning. All rights reserved. Copyright Cengage Learning. All rights reserved. and Their Areas Here we use vector functions to describe more general

More information

MATH 2023 Multivariable Calculus

MATH 2023 Multivariable Calculus MATH 2023 Multivariable Calculus Problem Sets Note: Problems with asterisks represent supplementary informations. You may want to read their solutions if you like, but you don t need to work on them. Set

More information

Parametric Surfaces and Surface Area

Parametric Surfaces and Surface Area Parametric Surfaces and Surface Area What to know: 1. Be able to parametrize standard surfaces, like the ones in the handout.. Be able to understand what a parametrized surface looks like (for this class,

More information

Surfaces. Ron Goldman Department of Computer Science Rice University

Surfaces. Ron Goldman Department of Computer Science Rice University Surfaces Ron Goldman Department of Computer Science Rice University Representations 1. Parametric Plane, Sphere, Tensor Product x = f (s,t) y = g(s,t) z = h(s,t) 2. Algebraic Plane, Sphere, Torus F(x,

More information

the straight line in the xy plane from the point (0, 4) to the point (2,0)

the straight line in the xy plane from the point (0, 4) to the point (2,0) Math 238 Review Problems for Final Exam For problems #1 to #6, we define the following paths vector fields: b(t) = the straight line in the xy plane from the point (0, 4) to the point (2,0) c(t) = the

More information

Math 2130 Practice Problems Sec Name. Change the Cartesian integral to an equivalent polar integral, and then evaluate.

Math 2130 Practice Problems Sec Name. Change the Cartesian integral to an equivalent polar integral, and then evaluate. Math 10 Practice Problems Sec 1.-1. Name Change the Cartesian integral to an equivalent polar integral, and then evaluate. 1) 5 5 - x dy dx -5 0 A) 5 B) C) 15 D) 5 ) 0 0-8 - 6 - x (8 + ln 9) A) 1 1 + x

More information

2. Give an example of a non-constant function f(x, y) such that the average value of f over is 0.

2. Give an example of a non-constant function f(x, y) such that the average value of f over is 0. Midterm 3 Review Short Answer 2. Give an example of a non-constant function f(x, y) such that the average value of f over is 0. 3. Compute the Riemann sum for the double integral where for the given grid

More information

UNIVERSITI TEKNOLOGI MALAYSIA SSE 1893 ENGINEERING MATHEMATICS TUTORIAL 5

UNIVERSITI TEKNOLOGI MALAYSIA SSE 1893 ENGINEERING MATHEMATICS TUTORIAL 5 UNIVERSITI TEKNOLOGI MALAYSIA SSE 189 ENGINEERING MATHEMATIS TUTORIAL 5 1. Evaluate the following surface integrals (i) (x + y) ds, : part of the surface 2x+y+z = 6 in the first octant. (ii) (iii) (iv)

More information

Section Parametrized Surfaces and Surface Integrals. (I) Parametrizing Surfaces (II) Surface Area (III) Scalar Surface Integrals

Section Parametrized Surfaces and Surface Integrals. (I) Parametrizing Surfaces (II) Surface Area (III) Scalar Surface Integrals Section 16.4 Parametrized Surfaces and Surface Integrals (I) Parametrizing Surfaces (II) Surface Area (III) Scalar Surface Integrals MATH 127 (Section 16.4) Parametrized Surfaces and Surface Integrals

More information

Classes 7-8 (4 hours). Graphics in Matlab.

Classes 7-8 (4 hours). Graphics in Matlab. Classes 7-8 (4 hours). Graphics in Matlab. Graphics objects are displayed in a special window that opens with the command figure. At the same time, multiple windows can be opened, each one assigned a number.

More information

Goals: Course Unit: Describing Moving Objects Different Ways of Representing Functions Vector-valued Functions, or Parametric Curves

Goals: Course Unit: Describing Moving Objects Different Ways of Representing Functions Vector-valued Functions, or Parametric Curves Block #1: Vector-Valued Functions Goals: Course Unit: Describing Moving Objects Different Ways of Representing Functions Vector-valued Functions, or Parametric Curves 1 The Calculus of Moving Objects Problem.

More information

Functions of Several Variables

Functions of Several Variables Jim Lambers MAT 280 Spring Semester 2009-10 Lecture 2 Notes These notes correspond to Section 11.1 in Stewart and Section 2.1 in Marsden and Tromba. Functions of Several Variables Multi-variable calculus

More information

Curvilinear Coordinates

Curvilinear Coordinates Curvilinear Coordinates Cylindrical Coordinates A 3-dimensional coordinate transformation is a mapping of the form T (u; v; w) = hx (u; v; w) ; y (u; v; w) ; z (u; v; w)i Correspondingly, a 3-dimensional

More information

form are graphed in Cartesian coordinates, and are graphed in Cartesian coordinates.

form are graphed in Cartesian coordinates, and are graphed in Cartesian coordinates. Plot 3D Introduction Plot 3D graphs objects in three dimensions. It has five basic modes: 1. Cartesian mode, where surfaces defined by equations of the form are graphed in Cartesian coordinates, 2. cylindrical

More information

Vectors and the Geometry of Space

Vectors and the Geometry of Space Vectors and the Geometry of Space In Figure 11.43, consider the line L through the point P(x 1, y 1, z 1 ) and parallel to the vector. The vector v is a direction vector for the line L, and a, b, and c

More information

Quadric surface. Ellipsoid

Quadric surface. Ellipsoid Quadric surface Quadric surfaces are the graphs of any equation that can be put into the general form 11 = a x + a y + a 33z + a1xy + a13xz + a 3yz + a10x + a 0y + a 30z + a 00 where a ij R,i, j = 0,1,,

More information

Functions of Several Variables

Functions of Several Variables . Functions of Two Variables Functions of Several Variables Rectangular Coordinate System in -Space The rectangular coordinate system in R is formed by mutually perpendicular axes. It is a right handed

More information

Determine whether or not F is a conservative vector field. If it is, find a function f such that F = enter NONE.

Determine whether or not F is a conservative vector field. If it is, find a function f such that F = enter NONE. Ch17 Practice Test Sketch the vector field F. F(x, y) = (x - y)i + xj Evaluate the line integral, where C is the given curve. C xy 4 ds. C is the right half of the circle x 2 + y 2 = 4 oriented counterclockwise.

More information

7/14/2011 FIRST HOURLY PRACTICE IV Maths 21a, O.Knill, Summer 2011

7/14/2011 FIRST HOURLY PRACTICE IV Maths 21a, O.Knill, Summer 2011 7/14/2011 FIRST HOURLY PRACTICE IV Maths 21a, O.Knill, Summer 2011 Name: Start by printing your name in the above box. Try to answer each question on the same page as the question is asked. If needed,

More information

MA 114 Worksheet #17: Average value of a function

MA 114 Worksheet #17: Average value of a function Spring 2019 MA 114 Worksheet 17 Thursday, 7 March 2019 MA 114 Worksheet #17: Average value of a function 1. Write down the equation for the average value of an integrable function f(x) on [a, b]. 2. Find

More information

4 = 1 which is an ellipse of major axis 2 and minor axis 2. Try the plane z = y2

4 = 1 which is an ellipse of major axis 2 and minor axis 2. Try the plane z = y2 12.6 Quadrics and Cylinder Surfaces: Example: What is y = x? More correctly what is {(x,y,z) R 3 : y = x}? It s a plane. What about y =? Its a cylinder surface. What about y z = Again a cylinder surface

More information

Multiple Integrals. max x i 0

Multiple Integrals. max x i 0 Multiple Integrals 1 Double Integrals Definite integrals appear when one solves Area problem. Find the area A of the region bounded above by the curve y = f(x), below by the x-axis, and on the sides by

More information

Chapter 15: Functions of Several Variables

Chapter 15: Functions of Several Variables Chapter 15: Functions of Several Variables Section 15.1 Elementary Examples a. Notation: Two Variables b. Example c. Notation: Three Variables d. Functions of Several Variables e. Examples from the Sciences

More information

UNIVERSITI TEKNOLOGI MALAYSIA SSCE 1993 ENGINEERING MATHEMATICS II TUTORIAL 2. 1 x cos dy dx x y dy dx. y cosxdy dx

UNIVERSITI TEKNOLOGI MALAYSIA SSCE 1993 ENGINEERING MATHEMATICS II TUTORIAL 2. 1 x cos dy dx x y dy dx. y cosxdy dx UNIVESITI TEKNOLOI MALAYSIA SSCE 99 ENINEEIN MATHEMATICS II TUTOIAL. Evaluate the following iterated integrals. (e) (g) (i) x x x sinx x e x y dy dx x dy dx y y cosxdy dx xy x + dxdy (f) (h) (y + x)dy

More information

Chapter 6 Some Applications of the Integral

Chapter 6 Some Applications of the Integral Chapter 6 Some Applications of the Integral More on Area More on Area Integrating the vertical separation gives Riemann Sums of the form More on Area Example Find the area A of the set shaded in Figure

More information

MATH 234. Excercises on Integration in Several Variables. I. Double Integrals

MATH 234. Excercises on Integration in Several Variables. I. Double Integrals MATH 234 Excercises on Integration in everal Variables I. Double Integrals Problem 1. D = {(x, y) : y x 1, 0 y 1}. Compute D ex3 da. Problem 2. Find the volume of the solid bounded above by the plane 3x

More information

Three-Dimensional Coordinate Systems

Three-Dimensional Coordinate Systems Jim Lambers MAT 169 Fall Semester 2009-10 Lecture 17 Notes These notes correspond to Section 10.1 in the text. Three-Dimensional Coordinate Systems Over the course of the next several lectures, we will

More information

Introduction to Matlab for Engineers

Introduction to Matlab for Engineers Introduction to Matlab for Engineers Instructor: Thai Nhan Math 111, Ohlone, Spring 2016 Introduction to Matlab for Engineers Ohlone, Spring 2016 1/19 Today s lecture 1. The subplot command 2. Logarithmic

More information

Math 126C: Week 3 Review

Math 126C: Week 3 Review Math 126C: Week 3 Review Note: These are in no way meant to be comprehensive reviews; they re meant to highlight the main topics and formulas for the week. Doing homework and extra problems is always the

More information

MATH 162 Calculus II Computer Laboratory Topic: Introduction to Mathematica & Parametrizations

MATH 162 Calculus II Computer Laboratory Topic: Introduction to Mathematica & Parametrizations MATH 162 Calculus II Computer Laboratory Topic: Introduction to Mathematica & Goals of the lab: To learn some basic operations in Mathematica, such as how to define a function, and how to produce various

More information

Quadric Surfaces. Philippe B. Laval. Today KSU. Philippe B. Laval (KSU) Quadric Surfaces Today 1 / 24

Quadric Surfaces. Philippe B. Laval. Today KSU. Philippe B. Laval (KSU) Quadric Surfaces Today 1 / 24 Quadric Surfaces Philippe B. Laval KSU Today Philippe B. Laval (KSU) Quadric Surfaces Today 1 / 24 Introduction A quadric surface is the graph of a second degree equation in three variables. The general

More information

PURE MATHEMATICS 212 Multivariable Calculus CONTENTS. Page. 1. Assignment Summary... i 2. Summary Assignments...2

PURE MATHEMATICS 212 Multivariable Calculus CONTENTS. Page. 1. Assignment Summary... i 2. Summary Assignments...2 PURE MATHEMATICS 212 Multivariable Calculus CONTENTS Page 1. Assignment Summary... i 2. Summary...1 3. Assignments...2 i PMTH212, Multivariable Calculus Assignment Summary 2010 Assignment Date to be Posted

More information

Math 251 Quiz 5 Fall b. Calculate. 2. Sketch the region. Write as one double integral by interchanging the order of integration: 2

Math 251 Quiz 5 Fall b. Calculate. 2. Sketch the region. Write as one double integral by interchanging the order of integration: 2 Math 251 Quiz 5 Fall 2002 1. a. Calculate 5 1 0 1 x dx dy b. Calculate 1 5 1 0 xdxdy 2. Sketch the region. Write as one double integral by interchanging the order of integration: 0 2 dx 2 x dy f(x,y) +

More information

Multivariate Calculus: Review Problems for Examination Two

Multivariate Calculus: Review Problems for Examination Two Multivariate Calculus: Review Problems for Examination Two Note: Exam Two is on Tuesday, August 16. The coverage is multivariate differential calculus and double integration. You should review the double

More information

Quadric Surfaces. Philippe B. Laval. Spring 2012 KSU. Philippe B. Laval (KSU) Quadric Surfaces Spring /

Quadric Surfaces. Philippe B. Laval. Spring 2012 KSU. Philippe B. Laval (KSU) Quadric Surfaces Spring / .... Quadric Surfaces Philippe B. Laval KSU Spring 2012 Philippe B. Laval (KSU) Quadric Surfaces Spring 2012 1 / 15 Introduction A quadric surface is the graph of a second degree equation in three variables.

More information

Multivariate Calculus Review Problems for Examination Two

Multivariate Calculus Review Problems for Examination Two Multivariate Calculus Review Problems for Examination Two Note: Exam Two is on Thursday, February 28, class time. The coverage is multivariate differential calculus and double integration: sections 13.3,

More information

Rectangular Coordinates in Space

Rectangular Coordinates in Space Rectangular Coordinates in Space Philippe B. Laval KSU Today Philippe B. Laval (KSU) Rectangular Coordinates in Space Today 1 / 11 Introduction We quickly review one and two-dimensional spaces and then

More information

Name: Class: Date: 1. Use Lagrange multipliers to find the maximum and minimum values of the function subject to the given constraint.

Name: Class: Date: 1. Use Lagrange multipliers to find the maximum and minimum values of the function subject to the given constraint. . Use Lagrange multipliers to find the maximum and minimum values of the function subject to the given constraint. f (x, y) = x y, x + y = 8. Set up the triple integral of an arbitrary continuous function

More information

LECTURE 3-1 AREA OF A REGION BOUNDED BY CURVES

LECTURE 3-1 AREA OF A REGION BOUNDED BY CURVES 7 CALCULUS II DR. YOU 98 LECTURE 3- AREA OF A REGION BOUNDED BY CURVES If y = f(x) and y = g(x) are continuous on an interval [a, b] and f(x) g(x) for all x in [a, b], then the area of the region between

More information

Measuring Lengths The First Fundamental Form

Measuring Lengths The First Fundamental Form Differential Geometry Lia Vas Measuring Lengths The First Fundamental Form Patching up the Coordinate Patches. Recall that a proper coordinate patch of a surface is given by parametric equations x = (x(u,

More information

Calculus III. Math 233 Spring In-term exam April 11th. Suggested solutions

Calculus III. Math 233 Spring In-term exam April 11th. Suggested solutions Calculus III Math Spring 7 In-term exam April th. Suggested solutions This exam contains sixteen problems numbered through 6. Problems 5 are multiple choice problems, which each count 5% of your total

More information

12.6 Cylinders and Quadric Surfaces

12.6 Cylinders and Quadric Surfaces 12 Vectors and the Geometry of Space 12.6 and Copyright Cengage Learning. All rights reserved. Copyright Cengage Learning. All rights reserved. and We have already looked at two special types of surfaces:

More information

Quadric Surfaces. Six basic types of quadric surfaces: ellipsoid. cone. elliptic paraboloid. hyperboloid of one sheet. hyperboloid of two sheets

Quadric Surfaces. Six basic types of quadric surfaces: ellipsoid. cone. elliptic paraboloid. hyperboloid of one sheet. hyperboloid of two sheets Quadric Surfaces Six basic types of quadric surfaces: ellipsoid cone elliptic paraboloid hyperboloid of one sheet hyperboloid of two sheets hyperbolic paraboloid (A) (B) (C) (D) (E) (F) 1. For each surface,

More information

16.6 Parametric Surfaces and Their Areas

16.6 Parametric Surfaces and Their Areas SECTION 6.6 PARAMETRIC SURFACES AND THEIR AREAS i j k (b) From (a), v = w r = =( ) i +( ) j +( ) k = i + j i j k (c) curl v = v = = () () i + ( ) () j + () ( ) k =[ ( )] k = k =w 9. For any continuous

More information

12 m. 30 m. The Volume of a sphere is 36 cubic units. Find the length of the radius.

12 m. 30 m. The Volume of a sphere is 36 cubic units. Find the length of the radius. NAME DATE PER. REVIEW #18: SPHERES, COMPOSITE FIGURES, & CHANGING DIMENSIONS PART 1: SURFACE AREA & VOLUME OF SPHERES Find the measure(s) indicated. Answers to even numbered problems should be rounded

More information

MATH 261 FALL 2000 FINAL EXAM INSTRUCTIONS. 1. This test booklet has 14 pages including this one. There are 25 questions, each worth 8 points.

MATH 261 FALL 2000 FINAL EXAM INSTRUCTIONS. 1. This test booklet has 14 pages including this one. There are 25 questions, each worth 8 points. MATH 261 FALL 2 FINAL EXAM STUDENT NAME - STUDENT ID - RECITATION HOUR - RECITATION INSTRUCTOR INSTRUCTOR - INSTRUCTIONS 1. This test booklet has 14 pages including this one. There are 25 questions, each

More information

CHAPTER 6: APPLICATIONS OF INTEGRALS

CHAPTER 6: APPLICATIONS OF INTEGRALS (Exercises for Section 6.1: Area) E.6.1 CHAPTER 6: APPLICATIONS OF INTEGRALS SECTION 6.1: AREA 1) For parts a) and b) below, in the usual xy-plane i) Sketch the region R bounded by the graphs of the given

More information

Mechanical Engineering Department Second Year (2015)

Mechanical Engineering Department Second Year (2015) Lecture 7: Graphs Basic Plotting MATLAB has extensive facilities for displaying vectors and matrices as graphs, as well as annotating and printing these graphs. This section describes a few of the most

More information

Practice problems from old exams for math 233 William H. Meeks III December 21, 2009

Practice problems from old exams for math 233 William H. Meeks III December 21, 2009 Practice problems from old exams for math 233 William H. Meeks III December 21, 2009 Disclaimer: Your instructor covers far more materials that we can possibly fit into a four/five questions exams. These

More information

ü 12.1 Vectors Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section.

ü 12.1 Vectors Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. Chapter 12 Vector Geometry Useful Tip: If you are reading the electronic version of this publication formatted as a Mathematica Notebook, then it is possible to view 3-D plots generated by Mathematica

More information

If the center of the sphere is the origin the the equation is. x y z 2ux 2vy 2wz d 0 -(2)

If the center of the sphere is the origin the the equation is. x y z 2ux 2vy 2wz d 0 -(2) Sphere Definition: A sphere is the locus of a point which remains at a constant distance from a fixed point. The fixed point is called the centre and the constant distance is the radius of the sphere.

More information

INTRODUCTION TO MATLAB PLOTTING WITH MATLAB

INTRODUCTION TO MATLAB PLOTTING WITH MATLAB 1 INTRODUCTION TO MATLAB PLOTTING WITH MATLAB Plotting with MATLAB x-y plot Plotting with MATLAB MATLAB contains many powerful functions for easily creating plots of several different types. Command plot(x,y)

More information

f (Pijk ) V. may form the Riemann sum: . Definition. The triple integral of f over the rectangular box B is defined to f (x, y, z) dv = lim

f (Pijk ) V. may form the Riemann sum: . Definition. The triple integral of f over the rectangular box B is defined to f (x, y, z) dv = lim Chapter 14 Multiple Integrals..1 Double Integrals, Iterated Integrals, Cross-sections.2 Double Integrals over more general regions, Definition, Evaluation of Double Integrals, Properties of Double Integrals.3

More information

Contents. MATH 32B-2 (18W) (L) G. Liu / (TA) A. Zhou Calculus of Several Variables. 1 Homework 1 - Solutions 3. 2 Homework 2 - Solutions 13

Contents. MATH 32B-2 (18W) (L) G. Liu / (TA) A. Zhou Calculus of Several Variables. 1 Homework 1 - Solutions 3. 2 Homework 2 - Solutions 13 MATH 32B-2 (8) (L) G. Liu / (TA) A. Zhou Calculus of Several Variables Contents Homework - Solutions 3 2 Homework 2 - Solutions 3 3 Homework 3 - Solutions 9 MATH 32B-2 (8) (L) G. Liu / (TA) A. Zhou Calculus

More information

CSC418 / CSCD18 / CSC2504

CSC418 / CSCD18 / CSC2504 5 5.1 Surface Representations As with 2D objects, we can represent 3D objects in parametric and implicit forms. (There are also explicit forms for 3D surfaces sometimes called height fields but we will

More information

18.02 Final Exam. y = 0

18.02 Final Exam. y = 0 No books, notes or calculators. 5 problems, 50 points. 8.0 Final Exam Useful formula: cos (θ) = ( + cos(θ)) Problem. (0 points) a) (5 pts.) Find the equation in the form Ax + By + z = D of the plane P

More information

= f (a, b) + (hf x + kf y ) (a,b) +

= f (a, b) + (hf x + kf y ) (a,b) + Chapter 14 Multiple Integrals 1 Double Integrals, Iterated Integrals, Cross-sections 2 Double Integrals over more general regions, Definition, Evaluation of Double Integrals, Properties of Double Integrals

More information

1. no trace exists correct. 2. hyperbola : z 2 y 2 = ellipse : y z2 = ellipse : 5. circle : y 2 +z 2 = 2

1. no trace exists correct. 2. hyperbola : z 2 y 2 = ellipse : y z2 = ellipse : 5. circle : y 2 +z 2 = 2 grandi (rg38778) Homework 5 grandi () This print-out should have 3 questions. Multiple-choice questions may continue on the next column or page find all choices before answering.. points Classify the quadric

More information

MA 243 Calculus III Fall Assignment 1. Reading assignments are found in James Stewart s Calculus (Early Transcendentals)

MA 243 Calculus III Fall Assignment 1. Reading assignments are found in James Stewart s Calculus (Early Transcendentals) MA 43 Calculus III Fall 8 Dr. E. Jacobs Assignments Reading assignments are found in James Stewart s Calculus (Early Transcendentals) Assignment. Spheres and Other Surfaces Read. -. and.6 Section./Problems

More information

GRAPHICAL REPRESENTATION OF SURFACES

GRAPHICAL REPRESENTATION OF SURFACES 9- Graphical representation of surfaces 1 9 GRAPHICAL REPRESENTATION OF SURFACES 9.1. Figures defined in Mathematica ô Graphics3D[ ] ø Spheres Sphere of centre 1, 1, 1 and radius 2 Clear "Global` " Graphics3D

More information

QUIZ 4 (CHAPTER 17) SOLUTIONS MATH 252 FALL 2008 KUNIYUKI SCORED OUT OF 125 POINTS MULTIPLIED BY % POSSIBLE

QUIZ 4 (CHAPTER 17) SOLUTIONS MATH 252 FALL 2008 KUNIYUKI SCORED OUT OF 125 POINTS MULTIPLIED BY % POSSIBLE QUIZ 4 (CHAPTER 17) SOLUTIONS MATH 5 FALL 8 KUNIYUKI SCORED OUT OF 15 POINTS MULTIPLIED BY.84 15% POSSIBLE 1) Reverse the order of integration, and evaluate the resulting double integral: 16 y dx dy. Give

More information

Lab 2B Parametrizing Surfaces Math 2374 University of Minnesota Questions to:

Lab 2B Parametrizing Surfaces Math 2374 University of Minnesota   Questions to: Lab_B.nb Lab B Parametrizing Surfaces Math 37 University of Minnesota http://www.math.umn.edu/math37 Questions to: rogness@math.umn.edu Introduction As in last week s lab, there is no calculus in this

More information

True/False. MATH 1C: SAMPLE EXAM 1 c Jeffrey A. Anderson ANSWER KEY

True/False. MATH 1C: SAMPLE EXAM 1 c Jeffrey A. Anderson ANSWER KEY MATH 1C: SAMPLE EXAM 1 c Jeffrey A. Anderson ANSWER KEY True/False 10 points: points each) For the problems below, circle T if the answer is true and circle F is the answer is false. After you ve chosen

More information

Final Exam Review. Name: Class: Date: Short Answer

Final Exam Review. Name: Class: Date: Short Answer Name: Class: Date: ID: A Final Exam Review Short Answer 1. Find the distance between the sphere (x 1) + (y + 1) + z = 1 4 and the sphere (x 3) + (y + ) + (z + ) = 1. Find, a a + b, a b, a, and 3a + 4b

More information

MATH 2221A Mathematics Laboratory II

MATH 2221A Mathematics Laboratory II MATH A Mathematics Laboratory II Lab Assignment 4 Name: Student ID.: In this assignment, you are asked to run MATLAB demos to see MATLAB at work. The color version of this assignment can be found in your

More information

Surfaces. U (x; y; z) = k. Indeed, many of the most familiar surfaces are level surfaces of functions of 3 variables.

Surfaces. U (x; y; z) = k. Indeed, many of the most familiar surfaces are level surfaces of functions of 3 variables. Surfaces Level Surfaces One of the goals of this chapter is to use di erential calculus to explore surfaces, in much the same way that we used di erential calculus to study curves in the rst chapter. In

More information

Polar Coordinates. Chapter 10: Parametric Equations and Polar coordinates, Section 10.3: Polar coordinates 27 / 45

Polar Coordinates. Chapter 10: Parametric Equations and Polar coordinates, Section 10.3: Polar coordinates 27 / 45 : Given any point P = (x, y) on the plane r stands for the distance from the origin (0, 0). θ stands for the angle from positive x-axis to OP. Polar coordinate: (r, θ) Chapter 10: Parametric Equations

More information

Worksheet 3.5: Triple Integrals in Spherical Coordinates. Warm-Up: Spherical Coordinates (ρ, φ, θ)

Worksheet 3.5: Triple Integrals in Spherical Coordinates. Warm-Up: Spherical Coordinates (ρ, φ, θ) Boise State Math 275 (Ultman) Worksheet 3.5: Triple Integrals in Spherical Coordinates From the Toolbox (what you need from previous classes) Know what the volume element dv represents. Be able to find

More information

VOLUME OF A REGION CALCULATOR EBOOK

VOLUME OF A REGION CALCULATOR EBOOK 19 March, 2018 VOLUME OF A REGION CALCULATOR EBOOK Document Filetype: PDF 390.92 KB 0 VOLUME OF A REGION CALCULATOR EBOOK How do you calculate volume. A solid of revolution is a solid formed by revolving

More information

7/8/2010 FIRST HOURLY PRACTICE II Maths 21a, O.Knill, Summer 2010

7/8/2010 FIRST HOURLY PRACTICE II Maths 21a, O.Knill, Summer 2010 7/8/010 FIRST HOURLY PRACTICE II Maths 1a, O.Knill, Summer 010 Name: Start by writing your name in the above box. Try to answer each question on the same page as the question is asked. If needed, use the

More information

MATH 116 REVIEW PROBLEMS for the FINAL EXAM

MATH 116 REVIEW PROBLEMS for the FINAL EXAM MATH 116 REVIEW PROBLEMS for the FINAL EXAM The following questions are taken from old final exams of various calculus courses taught in Bilkent University 1. onsider the line integral (2xy 2 z + y)dx

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Calculus III-Final review Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Find the corresponding position vector. 1) Define the points P = (-,

More information

A Quick Guide to MATLAB

A Quick Guide to MATLAB Appendix C A Quick Guide to MATLAB In this course we will be using the software package MATLAB. The most recent version can be purchased directly from the MATLAB web site: http://www.mathworks.com/academia/student

More information

MAC Learning Objectives. Module 12 Polar and Parametric Equations. Polar and Parametric Equations. There are two major topics in this module:

MAC Learning Objectives. Module 12 Polar and Parametric Equations. Polar and Parametric Equations. There are two major topics in this module: MAC 4 Module 2 Polar and Parametric Equations Learning Objectives Upon completing this module, you should be able to:. Use the polar coordinate system. 2. Graph polar equations. 3. Solve polar equations.

More information

Math 113 Calculus III Final Exam Practice Problems Spring 2003

Math 113 Calculus III Final Exam Practice Problems Spring 2003 Math 113 Calculus III Final Exam Practice Problems Spring 23 1. Let g(x, y, z) = 2x 2 + y 2 + 4z 2. (a) Describe the shapes of the level surfaces of g. (b) In three different graphs, sketch the three cross

More information

Equation of tangent plane: for implicitly defined surfaces section 12.9

Equation of tangent plane: for implicitly defined surfaces section 12.9 Equation of tangent plane: for implicitly defined surfaces section 12.9 Some surfaces are defined implicitly, such as the sphere x 2 + y 2 + z 2 = 1. In general an implicitly defined surface has the equation

More information

6 Appendix B: Quick Guide to MATLAB R

6 Appendix B: Quick Guide to MATLAB R 6 Appendix B: Quick Guide to MATLAB R 6.1 Introduction In this course we will be using the software package MATLAB R. Version 17.12.0, Release R2011a has been installed in Foster 100, the labs on the third

More information

2.2 Volumes of Solids of Revolution

2.2 Volumes of Solids of Revolution 2.2 Volumes of Solids of Revolution We know how to find volumes of well-established solids such as a cylinder or rectangular box. What happens when the volume can t be found quite as easily nice or when

More information

Math (Spring 2009): Lecture 5 Planes. Parametric equations of curves and lines

Math (Spring 2009): Lecture 5 Planes. Parametric equations of curves and lines Math 18.02 (Spring 2009): Lecture 5 Planes. Parametric equations of curves and lines February 12 Reading Material: From Simmons: 17.1 and 17.2. Last time: Square Systems. Word problem. How many solutions?

More information

Volume by Slicing (Disks & Washers)

Volume by Slicing (Disks & Washers) Volume by Slicing (Disks & Washers) SUGGESTED REFERENCE MATERIAL: As you work through the problems listed below, you should reference Chapter 6.2 of the recommended textbook (or the equivalent chapter

More information

a. Plot the point (x, y, z) and understand it as a vertex of a rectangular prism. c. Recognize and understand equations of planes and spheres.

a. Plot the point (x, y, z) and understand it as a vertex of a rectangular prism. c. Recognize and understand equations of planes and spheres. Standard: MM3G3 Students will investigate planes and spheres. a. Plot the point (x, y, z) and understand it as a vertex of a rectangular prism. b. Apply the distance formula in 3-space. c. Recognize and

More information

MATH 2400: CALCULUS 3 MAY 9, 2007 FINAL EXAM

MATH 2400: CALCULUS 3 MAY 9, 2007 FINAL EXAM MATH 4: CALCULUS 3 MAY 9, 7 FINAL EXAM I have neither given nor received aid on this exam. Name: 1 E. Kim................ (9am) E. Angel.............(1am) 3 I. Mishev............ (11am) 4 M. Daniel...........

More information

Parametric Surfaces. Substitution

Parametric Surfaces. Substitution Calculus Lia Vas Parametric Surfaces. Substitution Recall that a curve in space is given by parametric equations as a function of single parameter t x = x(t) y = y(t) z = z(t). A curve is a one-dimensional

More information

WHAT YOU SHOULD LEARN

WHAT YOU SHOULD LEARN GRAPHS OF EQUATIONS WHAT YOU SHOULD LEARN Sketch graphs of equations. Find x- and y-intercepts of graphs of equations. Use symmetry to sketch graphs of equations. Find equations of and sketch graphs of

More information

Practice problems from old exams for math 233

Practice problems from old exams for math 233 Practice problems from old exams for math 233 William H. Meeks III October 26, 2012 Disclaimer: Your instructor covers far more materials that we can possibly fit into a four/five questions exams. These

More information

MATH 31A HOMEWORK 9 (DUE 12/6) PARTS (A) AND (B) SECTION 5.4. f(x) = x + 1 x 2 + 9, F (7) = 0

MATH 31A HOMEWORK 9 (DUE 12/6) PARTS (A) AND (B) SECTION 5.4. f(x) = x + 1 x 2 + 9, F (7) = 0 FROM ROGAWSKI S CALCULUS (2ND ED.) SECTION 5.4 18.) Express the antiderivative F (x) of f(x) satisfying the given initial condition as an integral. f(x) = x + 1 x 2 + 9, F (7) = 28.) Find G (1), where

More information

Topic 6: Calculus Integration Volume of Revolution Paper 2

Topic 6: Calculus Integration Volume of Revolution Paper 2 Topic 6: Calculus Integration Standard Level 6.1 Volume of Revolution Paper 1. Let f(x) = x ln(4 x ), for < x

More information

The diagram above shows a sketch of the curve C with parametric equations

The diagram above shows a sketch of the curve C with parametric equations 1. The diagram above shows a sketch of the curve C with parametric equations x = 5t 4, y = t(9 t ) The curve C cuts the x-axis at the points A and B. (a) Find the x-coordinate at the point A and the x-coordinate

More information

Graphs of Equations. MATH 160, Precalculus. J. Robert Buchanan. Fall Department of Mathematics. J. Robert Buchanan Graphs of Equations

Graphs of Equations. MATH 160, Precalculus. J. Robert Buchanan. Fall Department of Mathematics. J. Robert Buchanan Graphs of Equations Graphs of Equations MATH 160, Precalculus J. Robert Buchanan Department of Mathematics Fall 2011 Objectives In this lesson we will learn to: sketch the graphs of equations, find the x- and y-intercepts

More information

Ma MULTIPLE INTEGRATION

Ma MULTIPLE INTEGRATION Ma 7 - MULTIPLE INTEGATION emark: The concept of a function of one variable in which y gx may be extended to two or more variables. If z is uniquely determined by values of the variables x and y, thenwesayz

More information

The Three Dimensional Coordinate System

The Three Dimensional Coordinate System The Three-Dimensional Coordinate System The Three Dimensional Coordinate System You can construct a three-dimensional coordinate system by passing a z-axis perpendicular to both the x- and y-axes at the

More information

Key Idea. It is not helpful to plot points to sketch a surface. Mainly we use traces and intercepts to sketch

Key Idea. It is not helpful to plot points to sketch a surface. Mainly we use traces and intercepts to sketch Section 12.7 Quadric surfaces 12.7 1 Learning outcomes After completing this section, you will inshaallah be able to 1. know what are quadric surfaces 2. how to sketch quadric surfaces 3. how to identify

More information

Grad operator, triple and line integrals. Notice: this material must not be used as a substitute for attending the lectures

Grad operator, triple and line integrals. Notice: this material must not be used as a substitute for attending the lectures Grad operator, triple and line integrals Notice: this material must not be used as a substitute for attending the lectures 1 .1 The grad operator Let f(x 1, x,..., x n ) be a function of the n variables

More information

Symbolic Computational Approach to Construct a 3D Torus Via Curvature

Symbolic Computational Approach to Construct a 3D Torus Via Curvature Symbolic Computational Approach to Construct a 3D Torus Via Curvature A. Iglesias 1,2,, R. Velesmoro 3, R. Ipanaqué 3 1 Department of Applied Mathematics and Computational Sciences, University of Cantabria,

More information

7/8/2010 FIRST HOURLY PRACTICE II Maths 21a, O.Knill, Summer 2010

7/8/2010 FIRST HOURLY PRACTICE II Maths 21a, O.Knill, Summer 2010 7/8/2010 FIRST HOURLY PRACTICE II Maths 21a, O.Knill, Summer 2010 Name: Start by writing your name in the above box. Try to answer each question on the same page as the question is asked. If needed, use

More information

Introduction to MATLAB Step by Step Exercise

Introduction to MATLAB Step by Step Exercise Large list of exercise: start doing now! 1 35: Basic (variables, GUI, command window, basic plot, for, if, functions) 36 40: Medium (functions) 41 45: Medium (matrices) 46 51: Medium (plot) 52 55: Medium

More information

Matlab Notes for Calculus 3. Lia Vas

Matlab Notes for Calculus 3. Lia Vas Matlab Notes for Calculus 3 Lia Vas Content 0. Review of Matlab. Representing Functions. Solving Equations. Basic Graphing. Differentiation and Integration. 1. Vectors. 2. Differentiation of Multi-variable

More information

Conics, Parametric Equations, and Polar Coordinates. Copyright Cengage Learning. All rights reserved.

Conics, Parametric Equations, and Polar Coordinates. Copyright Cengage Learning. All rights reserved. 10 Conics, Parametric Equations, and Polar Coordinates Copyright Cengage Learning. All rights reserved. 10.5 Area and Arc Length in Polar Coordinates Copyright Cengage Learning. All rights reserved. Objectives

More information

Dr. Allen Back. Nov. 19, 2014

Dr. Allen Back. Nov. 19, 2014 Why of Dr. Allen Back Nov. 19, 2014 Graph Picture of T u, T v for a Lat/Long Param. of the Sphere. Why of Graph Basic Picture Why of Graph Why Φ(u, v) = (x(u, v), y(u, v), z(u, v)) Tangents T u = (x u,

More information