Assignment 1. Prolog to Problem 1. Two cylinders. ü Visualization. Problems by Branko Curgus

Size: px
Start display at page:

Download "Assignment 1. Prolog to Problem 1. Two cylinders. ü Visualization. Problems by Branko Curgus"

Transcription

1 Assignment In[]:= Problems by Branko Curgus SetOptions $FrontEndSession, Magnification Prolog to Problem. Two cylinders In[]:= This is a tribute to a problem that I was assigned as an undergraduate student in the mid-970s at the Department of Mathematics of the University of Sarajevo. The problem involves the intersection of two circular cylinders. The smaller cylinder is vertical with the equation: x + y = x (this is the circle centered at 0 with the radius ) and z is arbitrary. The larger cylinder is horizontal with the equation: x + z = and y is arbitrary. I do not recall exactly what I was asked to do with these two cylinders. However, I remember well that I spent a lot of time trying to visualize the intersection. At that time I did not have access to any technology to help with visualization. Since I do not recall what was the exact question related to these two cylinders I will calculate all quantities that come to mind related to this object. ü Visualization This is a convenient view point in the graph below which I determined through experimentation. vp.3`,.`,.` Out[]=.3,.,.

2 070_A.nb In[]:= cyl ParametricPlot3D Cos t, Cos t Sin t z t,, z, 3, 3 PlotStyle Opacity.8 Mesh None, PlotPoints 00, 00 ; cyl ParametricPlot3D Cos t y, Sin t y, 3.3, 3.3 t, 0, PlotStyle Opacity.3 Mesh 3, 6 ; int ParametricPlot3D Cos t, Cos t Sin t Cos t t,, PlotStyle Thickness Blue ; int ParametricPlot3D Cos t, Cos t Sin t Cos t t,, PlotStyle Thickness Blue ; cirh ParametricPlot3D Cos t, Cos t Sin t 0 t,, PlotStyle Thickness Red, Opacity Mesh None ; cirv ParametricPlot3D Cos t 0,Sin t t,, PlotStyle Thickness Red, Opacity Mesh None ; CylCyl Show cyl, cyl, int, int, cirh,cirv, PlotRange.,.6.6,.6 5.3, 5.3 AxesEdge AxesLabel x, y, z ImageSize 00, ViewPoint vp

3 Out[8]= 070_A.nb 3

4 070_A.nb In[9]:= sur ParametricPlot3D s Cos t, Cos t Sin t Cos t s Cos t, Cos t Sin t Cos t t, 0, s, 0, PlotStyle Opacity.9 Mesh 0, 0 PlotPoints 50, 50 ; sur ParametricPlot3D s Cos t, Cos t Sin t Cos t s Cos t, Cos t Sin t Cos t t, 0, s, 0, PlotStyle Opacity.9 Mesh None, PlotPoints 50, 50 ; sur3 ParametricPlot3D s Cos t, Cos t Sin t Cos t s Cos t, Cos t Sin t Cos t t,, s, 0, PlotStyle Opacity.9 Mesh 0, 0 PlotPoints 00, 00 ; int ParametricPlot3D Cos t, Cos t Sin t Cos t t,, PlotStyle Thickness Blue ; int ParametricPlot3D Cos t, Cos t Sin t Cos t t,, PlotStyle Thickness Blue ; cir ParametricPlot3D Cos t, Cos t Sin t 0 t,, PlotStyle Thickness Red, Opacity Mesh None ;

5 070_A.nb 5 In[]:= CylCyl Show cyl, sur, sur, sur3, int, int, PlotRange.,.6.6,.6 5.3, 5.3 AxesEdge AxesLabel x, y, z ImageSize 00, ViewPoint vp Out[]=

6 6 070_A.nb In[5]:= CylCyl3 Show sur, sur, sur3, int, int, PlotRange.,.6.6,.6 5.3, 5.3 AxesEdge AxesLabel x, y, z ImageSize 00, ViewPoint vp Out[5]=

7 070_A.nb 7 In[6]:= surp ParametricPlot3D s Cos t, Cos t Sin t Cos t s Cos t, Cos t Sin t Cos t.6,0,0 t, 0, s, 0, PlotStyle Opacity.9 Mesh 0, 0 PlotPoints 50, 50 ; surp ParametricPlot3D s Cos t, Cos t Sin t Cos t s Cos t, Cos t Sin t Cos t.6,0,0 t, 0, s, 0, PlotStyle Opacity.9 Mesh None, PlotPoints 50, 50 ; sur3p ParametricPlot3D s Cos t, Cos t Sin t Cos t s Cos t, Cos t Sin t Cos t 0, 0 t,, s, 0, PlotStyle Opacity.9 Mesh 0, 0 PlotPoints 00, 00 ; int ParametricPlot3D Cos t, Cos t Sin t Cos t t,, PlotStyle Thickness Blue, Opacity Mesh None ; int ParametricPlot3D Cos t, Cos t Sin t Cos t t,, PlotStyle Thickness Blue, Opacity Mesh None ; CylCyl Show surp, surp, sur3p, int, int, PlotRange.,.6.6,.6 5.3, 5.3 AxesEdge AxesLabel x, y, z ImageSize 00, ViewPoint vp

8 8 070_A.nb Out[0]= ü Unwrapping Each cylinder can be unwrapped to a plane. Hence the blue curve above and two surfaces bounded by the blue curve can be unwrapped into planes. How to find the equation for the blue curve when unwrapped to a plane? The following picture can help.

9 070_A.nb 9 In[]:= Show surp, surp, sur3p, ParametricPlot3D Cos Cos Cos, Sin, PlotStyle Blue, Thickness 0.0 ParametricPlot3D Cos Cos Cos, Sin, PlotStyle Blue, Thickness 0.0 cirh, cirv, PlotRange.,.6.6,.6 5.3, 5.3 AxesEdge AxesLabel x, y, z ImageSize 00, ViewPoint vp Out[]= ü Large cylinder Let us consider first unwrapping the blue curve into the plane by unwrapping the larger cylinder. As the larger cylinder is unwrapped to a plane, the vertical red half-circle is unwrapped to a vertical line segment of length p. The parametric equation of the top part of the blue curve is Cos t, Cos t Sin t Cos t The equation of the red horizontal circle is Cos t, Cos t Sin t 0 and the blue curve is above the red horizontal circle and on the large cylinder whose top part is given by z = - x. Now we will determine the equation of the top part of the blue curve in relation to the arc length on the vertical red circle. Let P be the point on the vertical red circle such that s is the arc length between the point 0, 0. The

10 0 070_A.nb coordinates of P are Cos s 0, Sin s. Which point on the blue curve has the same z-coordinate? Call that point B. The point B has the same x-coordinate as P. Thus, Cos s Cos t Solving for t we get In[]:= Solve Cos s Cos t,t Solve::ifun : Inverse functions are being used by Solve, so some solutions may not be found; use Reduce for complete solution information. à Out[]= t ArcCos Cos s t ArcCos Cos s t ArcCos Cos s t ArcCos Cos s Substituting t ArcCos Cos s in Cos t, Cos t Sin t Cos t In[3]:= FullSimplify Cos t, Cos t Sin t Cos t. t ArcCos Cos s And 0 s, s Out[3]= Cos s Sin s Csc s Sin s, Sin s This expression can be further simplified to In[]:= Cos s Sin s Csc s Sin s Cos s, Sin s Out[]= Cos s Cos s Sin s Sin s Thus, the blue point B is at the distance Sin s Cos s from the point P. Thus, when flattened the equation of the blue curve is as follows:

11 070_A.nb In[5]:= Plot Cos s Sin s Cos s Sin s s, PlotStyle Thickness Blue Thickness Blue AspectRatio Automatic, Ticks Range, Range PlotRange.,..,. ImageSize 00 Out[5]= -p - 3 p - p - p p p 3 p p - It is interesting to point out that the equivalent expression for the blue curve above is as follows In[6]:= FullSimplify Cos s Cos s Cos s Sin s And 0 s, s Out[6]= True ü Small cylinder Now we will unwrap the blue curve by unwrapping the smaller cylinder. As a parameter we will take the arc length s along the horizontal red circle starting from 0, 0. As before, call P the point on this circle such that the arc length between P and 0, 0 is s. From the geometry of the unit circle it follows the polar angle q for this point is q =s. Therefore this point is given as Cos s, Cos s Sin s 0 The parametric equation for the top part of the blue curve is Cos t, Cos t Sin t Cos t Thus the point on the blue curve vertically above the point P is Cos s, Cos s Sin s Cos s.

12 070_A.nb In[7]:= Plot Cos s, Cos s s, PlotStyle Thickness Blue Thickness Blue AspectRatio Automatic, Ticks Range, Range PlotRange.,..,. ImageSize 00 Out[7]= -p - 3 p - p - p p p 3 p p - - Or, cutting the surface at the point 0, 0. In[8]:= Plot Cos, Cos PlotStyle Thickness Blue Thickness Blue AspectRatio Automatic, Ticks Range, Range PlotRange.,..,. ImageSize 00 Out[8]= -p - 3 p - p - p p p 3 p p - - ü Calculations ü The surface area of the eight-shaped region This is the surface area on the larger cylinder. It is the transparent surface in the picture. The area is

13 070_A.nb 3 In[9]:= TrigToExp Integrate Cos s Sin s s, 0, Out[9]= 6 6 Log In[30]:= N 6 6 Log Out[30]= 8.55 A different way to calculate this surface is to use the surface integral. In[3]:= Cross D x, y, x x D x, y, x y Out[3]= x x,0, In[3]:= Simplify x x,0,. x x,0,,x 0 Out[3]= x In[33]:= Solve x y x,y Out[33]= y x x y x x In[3]:= Integrate x, y, x x, x x Out[3]= x x x In[35]:= TrigToExp Integrate Integrate x, y, x x, x x x, 0, Out[35]= 6 6 Log In[36]:= N Out[36]= 8.55 Exactly the same value. ü The vertical surface area We found the equation so we just integrate. In[37]:= TrigToExp Integrate Cos s, s, 0, Out[37]= 8 Log 8 Log In[38]:= N 8 Log 8 Log Out[38]= 8.367

14 070_A.nb This expression can be simplified by hand to In[39]:= 8 Log 3 Out[39]= 8 Log 3 In[0]:= N 8 Log 3 Out[0]= It is interesting to point out that the above formula for the blue curve has equivalent form as follows: In[]:= FullSimplify Cos s Cos s Out[]= True In[]:= TrigToExp Integrate Cos t, t, 0, Out[]= 8 Log Log In[3]:= N 8 Log Log Out[3]= A different way to calculate this surface is to use the surface integral. I was not able to get the exact value in this way, just an approximation. To get equation for the surface In[]:= Solve x y, y Out[]= y x x y x x In[5]:= FullSimplify Cross D x, z, x x x D x, z, x x z Out[5]= x x x,0, In[6]:= Simplify x x x,0,. x x x,0,,x 0 Out[6]= x x We need to integrate this quantity over the half circle in xz-plane In[7]:= Integrate Integrate, x,0, y y, x x But this integral is not evaluating. Try for the indefinite integral, that is anti-derivative:

15 070_A.nb 5 In[8]:= FullSimplify Integrate x x,x And x 0, x Out[8]= Log x x Now use the Fundamental Theorem of Calculus In[9]:= FullSimplify Log x x. x y Log x x. x 0 And y x Out[9]= Log Log y y And integrate numerically: In[50]:= Chop NIntegrate Log Log y y y, Out[50]= ü The volume To calculate the volume we integrate the big cylinder over the small disk: In[5]:= TrigToExp Integrate Integrate x, y, x x, x x x, 0, Out[5]= 3 Log In[5]:= N 3 Out[5]= Log Or the small cylinder over the big half-circle. I was not able to get the exact value in this way. In[53]:= TrigToExp Integrate Integrate x x, x,0, z z, In[5]:= Integrate x x, x, 0, z Assumptions And z 0, z Out[5]= z z z z ArcSin In[55]:= NIntegrate z z z z ArcSin z, 0, Out[55]= ü The length of the blue curve: We first use the first parametrization in the plane obtained above:

16 6 070_A.nb In[56]:= FullSimplify D Cos s Sin s s Out[56]= 3 Cos s Sec s In[57]:= NIntegrate 3 Cos s Sec s, s, 0, Out[57]= The second parametrization in the plane In[58]:= FullSimplify D Cos s,s Out[58]= 9 6 Cos s 3 Cos s In[59]:= NIntegrate Out[59]= Cos s 3 Cos s, s, 0, Finally we use the parametrization of the blue curve in space: In[60]:= Cos t, Cos t Sin t Cos t Out[60]= Cos t, Cos t Sin t Cos t In[6]:= FullSimplify D Cos t, Cos t Sin t Cos t t Out[6]= In[6]:= Cos t Sin t Cos t Cos t 3 Sin t Cos t FullSimplify Cos t Sin t Cos t Cos t 3 Sin t Cos t. Cos t Sin t Cos t Cos t 3 Sin t Cos t 6 Out[6]= 9 Cos t 3 Cos t 6 In[63]:= NIntegrate 9 Cos t, t,, 3 Cos t Out[63]= One more parametrization in space

17 070_A.nb 7 In[6]:= D Cos s Cos s Sin s Sin s s Out[6]= s Sin s Cos Cos s Sin s Sin s, Cos s Cos s In[65]:= s FullSimplify Sin s Cos Cos s Sin s Sin s, Cos s. Cos s s Sin s Cos Cos s Sin s Sin s, Cos s Cos s Out[65]= In[66]:= 3s Cos Sec s NIntegrate 3s Cos Sec s, s, 0, Out[66]= Problem : Your task In[67]:= Repeat as much as you can of what I did in Prolog to Problem when the large Cylinder is replaced by the sphere of radius centered at the origin vp `, `, ` Out[67]=.386,.0909,.8707

18 8 070_A.nb In[68]:= cyl ParametricPlot3D Cos t, Cos t Sin t z t,, z, 3, 3 PlotStyle Opacity Mesh None, PlotPoints 00, 00 ; sph ParametricPlot3D Cos Sin Sin Sin Cos 0, 0, PlotStyle Opacity.6 Mesh 8, ; CylSph Show cyl, sph, PlotRange.,.6.6,.6 5.3, 5.3 AxesEdge AxesLabel x, y, z ImageSize 00, ViewPoint vp Out[70]= Prolog to Problem. Two famous multiple integrals In[7]:= ü A famous double integral Consider the integral 0 0 x y. - x y Mathematica does calculate this integral. Integrate Integrate, x, 0, y, 0, x y Out[7]= 8 However, calculating this integral by hand using the Fundamental theorem of calculus is not easy. Here is why

19 070_A.nb 9 In[7]:= Out[7]= In[73]:= Out[73]= In[7]:= Out[7]= In[75]:= Out[75]= Integrate x y,x ArcTanh x y y This is doable by hand. Now we apply the FTC and get ArcTanh x y y. x ArcTanh y y Next we integrate Integrate ArcTanh y,y y PolyLog y PolyLog y ArcTanh x y. x 0 y But this integral is a special function that is not familiar to an undergraduate student. In fact this is not often studied function. Applying FTC again we get. PolyLog y PolyLog y. y 8 PolyLog y PolyLog y. y 0 Our goal is to understand this result using change of variables in double integral. We use the following change of variables: x u v uv, y u v uv Good way to think about this change of variables is as a mapping from uv-plane into xy-plane. u, v is being mapped in u v uv, u v uv One way to visualize this mapping is to plot the grid of coordinate lines in uv-plane and map them into curves in xyplane. For example the line u=/ is being mapped into the curve { v v, v v }

20 0 070_A.nb In[76]:= GraphicsGrid Graphics Table Hue u Line u, 5 u, 5 u,,.5 PlotRange Frame True, ImageSize 5, FrameLabel "u", "v" RotateLabel False Graphics Table Hue u PointSize Table Point u v uv, u v v, 5, 5, u,,.5 vu 00 PlotRange Frame True, ImageSize 5, FrameLabel "x", "y" RotateLabel False Out[76]= v 0 y u x

21 070_A.nb In[77]:= GraphicsGrid Graphics Table Hue v Line 5, v 5, v v,,.5 PlotRange Frame True, ImageSize 5, FrameLabel "u", "v" RotateLabel False Graphics Table Hue v PointSize Table Point u v uv, u v u, 5, 5, v,,.5 vu 00 PlotRange Frame True, ImageSize 5, FrameLabel "x", "y" RotateLabel False Out[77]= v 0 y u x Since we see some overlap it is clear that we will have to narrow down the area in uv-plane.

22 070_A.nb In[78]:= GraphicsGrid Graphics Table Hue u Thickness 0.0 Line u, u, u, 0.975,,.05 PlotRange Frame True, ImageSize 5, FrameLabel "u", "v" RotateLabel False Graphics Table Hue u Thickness 0.0 Line Table u v uv, u v v,, u,.975,,.05 vu 00 PlotRange Frame True, ImageSize 5, FrameLabel "x", "y" RotateLabel False Out[78]= v 0.0 y u x

23 070_A.nb 3 In[79]:= GraphicsGrid Graphics Table Hue v 3 Thickness 0.0 Line v v v, 0.975,,.05 PlotRange Frame True, ImageSize 5, FrameLabel "u", "v" RotateLabel False Graphics Table Hue v 3 Thickness 0.0 Line Table u v uv, u v u,, v, 0.975,,.05 vu 00 PlotRange Frame True, ImageSize 5, FrameLabel "x", "y" RotateLabel False Out[79]= v 0.0 y u x

24 070_A.nb In[80]:= GraphicsGrid Graphics Table Hue u Thickness Line u, u, u, 0.975,,.05 Table Hue v 3 Thickness Opacity 0.5 Line v v v, 0.975,,.05 PlotRange Frame True, ImageSize 5, FrameLabel "u", "v" RotateLabel False Graphics Table Hue u Thickness Line Table u v uv, u v v,, u,.975,,.05 vu 00 Table Hue v 3 Thickness Opacity 0.5 Line Table u v uv, u v u,, v, 0.975,,.05 vu 00 PlotRange Frame True, ImageSize 5, FrameLabel "x", "y" RotateLabel False

25 070_A.nb 5 Out[80]= Just for fun

26 6 070_A.nb In[8]:= Manipulate GraphicsGrid Graphics Table Hue t Point rr Cos t Sin t t, 0,, 6 PlotRange Frame True, ImageSize 5, FrameLabel "u", "v" RotateLabel False Graphics Table Hue t Point rr Cos t Sin t rr Cos t Sin t Cos t Sin t rr Sin t Cos t t, 0,, 6 PlotRange Frame True, ImageSize 5, FrameLabel "x", "y" RotateLabel False rr,.5.,.9 rr Out[8]= v 0.0 y u x

27 070_A.nb 7 In[8]:= Manipulate GraphicsGrid Graphics Table Hue k Thickness 0.0 Line rr Cos k Sin k rr Cos k Sin k k, 0, 8, 6 6 PlotRange Frame True, ImageSize 5, FrameLabel "u", "v" RotateLabel False Graphics Table Hue t Thickness 0.0 Line rr Cos t Sin t rr Cos t Sin t Cos t Sin t rr Sin t Cos t rr Cos t Sin t 6 6 rr Cos t Sin t, Cos t Sin t 6 rr Sin t Cos t t, 0, PlotRange Frame True, ImageSize 5, FrameLabel "x", "y" RotateLabel False rr,.5.0,.99

28 8 070_A.nb rr Out[8]= v 0.0 y u x In[83]:= Out[83]= In[8]:= Out[8]= In[85]:= Out[85]= Let us go back to the change of variables: x u v uv, y u v uv This is how Mathematica calculates the Jacobian matrix: D u v u v, u v u, v u v v u v u u v, uv uv u v v uv uv u u v, uv uv uv uv We need the determinant of the Jacobian matrix FullSimplify Det D u v u v, u v u, v u v u v u v We notice that this quantity is negative for u, v being in [-,]. So the absolute value is FullSimplify Det D u v u v, u v u, v u v u v u v We need to understand which set in uv-plane is being mapped onto the unit square with vertices (0,0), (,0), (,), (,0) in xy-plane. Next we list points in uv-plane and their images in xy-plane (0,0) goes to (0,0) (,) goes to (,0)

29 070_A.nb 9 (,-) goes to (0,) (,0) goes to (,) This indicates that the triangle with vertices (0,0), (,-), (,) is being mapped onto the unit square. The following graphics confirms that. In[86]:= GraphicsGrid Graphics Table Hue u Line Table u, v v, u, u,.0 u, 0,.00,.05 PlotRange 0, Frame True, ImageSize 00, FrameLabel "u", "v" RotateLabel False Graphics Table Hue u Line Table u v uv, u v v, u, u,.0 u, 0,.00,.05 vu PlotRange 0, 0, Frame True, ImageSize 5, FrameLabel "x", "y" RotateLabel False Out[86]= v 0.0 y x u

30 30 070_A.nb In[87]:= Out[87]= In[88]:= Now we substitute the new variables into the integrand FullSimplify u v u v u v u v x y. x uv,y vu We notice that this quantity is positive. This expression needs to be multiplied by the absolute value of the determinant of the Jacobian matrix. Thus, the new integrand is u v FullSimplify u v Det D u v uv, u v u, v uv Out[88]= u v So, we need to calculate the integral 0 u u v u. u v In[89]:= This integral is easily calculable by hand. However, for efficiency I do it in Mathematica here. Integrate, v, u, u u v Out[89]= In[90]:= Out[90]= In[9]:= ArcTan u u Now we integrate with respect to u. This is also a simple change of variables integral. Integrate ArcTan u, u, 0, u 8 ü A famous triple integral We consider the integral x y z. + x yz Mathematica does calculate this integral. Integrate Integrate Integrate, x, 0, y, 0, z, 0, x y z Out[9]= 3 3 Our goal is to understand this result using change of variables in double integral. The change of variables here is x Sin u Cos v, y Sin v Cos w, z Sin w Cos u Good way to think about this change of variables is as a mapping from uvw-space into xyz-space.

31 070_A.nb 3 In[9]:= u, v, w is being mapped in Sin u Cos v, Sin v Cos w, Sin w Cos u This is how Mathematica calculates the Jacobian matrix: D Sin u Cos v, Sin v Cos w, Sin w u, v, w Cos u Out[9]= Cos u Sec v Sec v Sin u Tan v 0 0, Cos v Sec w Sec w Sin v Tan w Sec u Sin w Tan u 0,Cos w Sec u In[93]:= We need the determinant of the Jacobian matrix FullSimplify Det D Sin u Cos v, Sin v Cos w, Sin w u, v, w Cos u Out[93]= Tan u Tan v Tan w This function is always positive. So, no problems here. We need to understand which set in uv-plane is being mapped onto the unit cube with the vertices (0,0,0), (,0,0), (,,0), (,0,0), (0,0,), (,0,), (,,), (,0,) in xyz-space. Next we list points in uvw-space and their images in xyz-space (0,0,0) goes to (0,0,0) ( p,0,0) goes to (,0,0) (0, p,0) goes to (0,,0) (0,0, p ) goes to (0,0,) ( p, p, p ) goes to (,,) This indicates that the polytope with vertices (0,0,0), ( p,0,0), (0, p,0), (0,0, p,0), ( p, p, p ) is being mapped onto the unit cube. Our next goal is to confirm that. Here is the image of the polytope:

32 3 070_A.nb In[9]:= Graphics3D Blue, Thickness Line 0, 0, 0,0,0 Line 0, 0, 0 0,,0 Line 0, 0, 0 0, 0, Line,0,0 0,,0 0, 0,,0,0 Opacity 0.6 Polygon 0, 0, 0 0, 0, 0,,0 Polygon 0, 0, 0,0,0 0,,0 Polygon 0, 0, 0,,0 Polygon,0,0 0,,0 Opacity. Polygon 0, 0, 0,0,0 0, 0, Polygon 0, 0,,0,0 PlotRange 0, 0, 0, Ticks Range 0,, Range 0,, Range 0,, Boxed True, Axes True, AxesLabel x, y, z ImageSize 00 Out[9]=

33 070_A.nb 33 This polytope can be described mathematically as x, y, z œ R 3 x > 0, y > 0, z > 0, x + y < p, y + z < p, z + x < p In[95]:= Mathematica can plot this polytope using these inequalities: RegionPlot3D And x 0, y 0, z 0, x y,y z,x z x, 0, y, 0, z, 0, PlotPoints 65, 65, 65 PlotStyle Opacity.5 Mesh False, AxesLabel x, y, z Ticks Range 0,, Range 0,, Range 0,, Out[95]= Next we will use Manipulate to slice this polytope into triangles which we will map into the unit cube.

34 3 070_A.nb In[96]:= Manipulate Graphics3D Blue, Thickness Line 0, 0, 0,0,0 Line 0, 0, 0 0,,0 Line 0, 0, 0 0, 0, Line,0,0 0,,0 0, 0,,0,0 Opacity 0.6 Polygon 0, 0, 0 0, 0, 0,,0 Polygon 0, 0, 0,0,0 0,,0 Polygon 0, 0, 0,,0 Polygon,0,0 0,,0 Opacity. Polygon 0, 0, 0,0,0 0, 0, Polygon 0, 0,,0,0 Opacity If a, Polygon a,0,0 0, a,0 0, 0, a Polygon a,0,0 a a 0,,0 a a 0, 0, a PlotRange 0, 0, 0, Ticks Range 0,, Range 0,, Range 0,, Boxed True, Axes True, ImageSize 00 a,.5 0,

35 070_A.nb 35 a Out[96]= In[97]:= Out[97]= In the above Manipulation I used Polygon command to draw the slicing triangles. For that I needed only the vertices of the triangles. However, to map the triangles into xyz-space I need to represent the triangles using two parameters s and t. How to do that? If we have two points say A and B, then all the point on the line segment AB are given by - s A + sb where 0 s. We use the same idea for three points, say A, B, C. First we represent all the points on the line segments AB and AC - s A + sb, 0 s and - s A + sc, 0 s. Now for a fixed s I use parameter t to represent all the point on the line segment connecting the point - s A + sb and - s A + sc : - t -s A + sb + t - s A + sc where 0 s, t. Simplifying the last expression we get the following formula for the surface of the triangle with vertices A, B, C Clear pa, pb, pc, s, t ; Collect FullSimplify t s pa spb t s pa spc pa, pb, pc pa s pc s t pb s st

36 36 070_A.nb Thus the formula - s A + s - t B + stc where 0 s, t represents the surface of the triangle with vertices A, B, C. I will illustrate this with a graphics: In[98]:= Manipulate If a, Show Graphics3D Blue, Thickness Line 0, 0, 0,0,0 Line 0, 0, 0 0,,0 Line 0, 0, 0 0, 0, Line,0,0 0,,0 0, 0,,0,0 Opacity 0.6 Polygon 0, 0, 0 0, 0, 0,,0 Polygon 0, 0, 0,0,0 0,,0 Polygon 0, 0, 0,,0 Polygon,0,0 0,,0 Opacity. Polygon 0, 0, 0,0,0 0, 0, Polygon 0, 0,,0,0 ParametricPlot3D s a,0,0 t s 0, a,0 s t 0, 0, a s, 0, t, 0, PlotRange 0, 0, 0, Ticks Range 0,, Range 0,, Range 0,, Boxed True, Axes True, ImageSize 300 Show Graphics3D Blue, Thickness Line 0, 0, 0,0,0 Line 0, 0, 0 0,,0 Line 0, 0, 0 0, 0, Line,0,0 0,,0 0, 0,,0,0 Opacity 0.6 Polygon 0, 0, 0 0, 0, 0,,0 Polygon 0, 0, 0,0,0 0,,0 Polygon 0, 0, 0,,0 Polygon,0,0 0,,0

37 070_A.nb 37 Opacity. Polygon 0, 0, 0,0,0 0, 0, Polygon 0, 0,,0,0 ParametricPlot3D s t s s t a 0, a 0, 0, a,0,0 a,0 a a, s, 0, t, 0, PlotRange 0, 0, 0, Ticks Range 0,, Range 0,, Range 0,, Boxed True, Axes True, ImageSize 300 a,.5 0, a Out[98]= Next I use the mapping u, v, w is being mapped in Sin u Cos v, Sin v Cos w, Sin w Cos u

38 38 070_A.nb In[99]:= Manipulate If a, ParametricPlot3D Evaluate Sin u Cos v, Sin v Cos w, Sin w Cos u. u a s v a s t w a st, s, 0, t, 0, PlotRange 0, 0, 0, Ticks Range 0,,. Range 0,,. Range 0,,. Boxed True, Axes True, ImageSize 300 ParametricPlot3D Evaluate Sin u Cos v, Sin v Cos w, Sin w. u 3 a a s Cos u v a s as a st w a a st, s, 0, t, 0, PlotRange 0, 0, 0, Ticks Range 0,,. Range 0,,. Range 0,,. Boxed True, Axes True, ImageSize 300 a,.5 0, a Out[99]= In[00]:= Manipulate If a, GraphicsGrid Show Graphics3D Blue, Thickness Line 0, 0, 0,0,0

39 070_A.nb 39 Line 0, 0, 0 0,,0 Line 0, 0, 0 0, 0, Line,0,0 0,,0 0, 0,,0,0 Opacity 0.6 Polygon 0, 0, 0 0, 0, 0,,0 Polygon 0, 0, 0,0,0 0,,0 Polygon 0, 0, 0,,0 Polygon,0,0 0,,0 Opacity. Polygon 0, 0, 0,0,0 0, 0, Polygon 0, 0,,0,0 ParametricPlot3D s a,0,0 t s 0, a,0 s t 0, 0, a s, 0, t, 0, PlotRange 0, 0, 0, Ticks Range 0,, Range 0,, Range 0,, Boxed True, Axes True, ImageSize 600, ParametricPlot3D Evaluate Sin u Cos v, Sin v Cos w, Sin w Cos u. u a s v a s t w a st, s, 0, t, 0, PlotRange 0, 0, 0, Ticks Range 0,,. Range 0,,. Range 0,,. Boxed True, Axes True, ImageSize 600 ImageSize 500 GraphicsGrid Show Graphics3D Blue, Thickness Line 0, 0, 0,0,0 Line 0, 0, 0 0,,0 Line 0, 0, 0 0, 0, Line,0,0 0,,0 0, 0,,0,0 Opacity 0.6 Polygon 0, 0, 0 0, 0, 0,,0 Polygon 0, 0, 0,0,0 0,,0 Polygon 0, 0, 0,,0 Polygon,0,0 0,,0

40 0 070_A.nb Opacity. Polygon 0, 0, 0,0,0 0, 0, Polygon 0, 0,,0,0 ParametricPlot3D s t s s t a 0, a 0, 0, a,0,0 a,0 a a, s, 0, t, 0, PlotRange 0, 0, 0, Ticks Range 0,, Range 0,, Range 0,, Boxed True, Axes True, ImageSize 600, ParametricPlot3D Evaluate Sin u Cos v, Sin v Cos w, Sin w. u 3 a a s Cos u v a s as a st w a a st, s, 0, t, 0, PlotRange 0, 0, 0, Ticks Range 0,,. Range 0,,. Range 0,,. Boxed True, Axes True, ImageSize 600 ImageSize 500 a,.5 0, a Out[00]=

41 070_A.nb In[0]:= Out[0]= In[0]:= Out[0]= Now we substitute the new variables into the integrand FullSimplify Tan u Tan v Tan w Sin u Sin v. x,y x y z Cos v Cos w,z Sin w Cos u This expression needs to be multiplied by the absolute value of the determinant of the Jacobian matrix. Thus, the new integrand is FullSimplify Tan u Tan v Tan w Det D Sin u Cos v, Sin v Cos w, Sin w u, v, w Cos u Thus, the integral is simply the volume of the polytope that found. To calculate the volume of the polytope we split it into two pyramids. One pyramid has vertices 0, 0, 0 p,0,0 0, p,0 0, p,0. The base of this pyramid is equilateral triangle with the vertices p,0,0 0, p,0 0, p,0 and the height of this pyramid is the line segment with the endpoints 0, 0, 0 p, p, p. Thus the volume of this pyramid is *base*height = 3 * p 3 * p 8 6 * 3 = p3 8 One pyramid has vertices 0, 0, 0 p,0,0 0, p,0 0, p,0 p, p, p. The base of this pyramid is equilateral triangle with the vertices p,0,0 0, p,0 0, p,0 and the height of this pyramid is the line segment with the endpoints p, p, p p, p, p. Thus the volume of this pyramid is *base*height = 3 * p 3 * p 8 * 3 = p3 96 Thus the volume of the polytope is p p3 96 = p3 3 Problem. Your task Calculate the famous double integral by using a change of variables similar to what was used to calculate the famous triple integral. Provide all the illustrations as I did in my calculation of the famous double integral. Problem 3. Cissoid of Diocles ü Prolog to Cissoid of Diocles problem This problem is about the curve called Cissoid of Diocles. In fact this is a family of curves. Below is the construction of the Cissoid of Diocles based on circle with radius one.

42 070_A.nb In[03]:= Manipulate Graphics Thickness 0.00 RGBColor.75,.75,.75 Line 0, 0 Cos Sin Thickness RGBColor 0, 0,.6 Line 9, 9, Thickness RGBColor 0, 0,.6 Circle 0, Thickness 0.00 RGBColor 0.8,0,0 Line Table Cos t Sin t Cos t Sin t Sin t t, 0.0,.0,.0 Sin t Thickness RGBColor, 0 Line Sin Cos Sin Sin Cos Sin Thickness 0.00 RGBColor 0, 0, 0 Line 0, 0 Cos Sin Cos Sin Sin Sin PointSize 0.0 RGBColor 0, 0,.6 Point Cos Sin PointSize RGBColor 0.8,0,0 Table Point Cos t Sin t Cos t Sin t Sin t t, Sin t PointSize 0.0 RGBColor 0.8,0,0, 8 8 Point Cos Sin Cos Sin Sin Sin PointSize 0.0 RGBColor 0.8,0,0 Point 0, 0 PointSize 0.0 RGBColor 0, 0,.6 Point Sin Cos Sin Sin PlotRange 5, 5 0,.3 Frame False, Axes True, Ticks Range 6, 6 Range 0, 3 ImageSize 500, 8 8 q Out[03]=

43 070_A.nb 3 ü Your task Learn about the Cissoid of Diocles family of curves. The corresponding Wikipedia page is very informative. Based on that information answer the following two questions: ü Length Calculate the length of the part of the Cissoid of Diocles which is inside the circle which is used in the definition of that Cissoid. That is the maroon length in the picture below. In[0]:= Graphics Thickness RGBColor 0.8,0,0 Line Table Cos t Sin t Cos t Sin t Sin t t,, 3, 6 Sin t Thickness RGBColor 0, 0,.6 Circle 0, PlotRange.,. 0.,. Frame False, Axes False, ImageSize 00 Out[0]= In your response to this question you should present and illustrate all the relevant information that you found on the Internet. You should present at least two distinct calculations for the length. The exact value for the length is expected. ü Area Calculate the area which is below the Cissoid of Diocles and which is inside the circle which is used in the definition of that Cissoid. That is the red area in the picture below.

44 070_A.nb In[05]:= Graphics RGBColor 0., 0. Polygon Join Table Cos t Sin t Cos t Sin t Sin t t,, Sin t 3 6 Table Sin Cos Sin Sin 3, 5 6 Thickness RGBColor 0.8,0,0 Line Table Cos t Sin t Sin t Cos t Sin t Sin t t,, 3, 6 Thickness RGBColor 0, 0,.6 Circle 0, PlotRange.,. 0.,. Frame False, Axes False, ImageSize 00 Out[05]= In your response to this question you should present and illustrate all the relevant information that you found on the Internet. You should present at least two distinct calculations for the area. The exact value for the area is expected. Problem. Explore Ellipses Let a and b be positive real numbers. Consider the ellipse x a y b. The parametric equation for this ellipse is

45 070_A.nb 5 a Cos t b Sin t 0 t. In this problem we consider only the ellipses in this canonical form. ü Area ü Calculate Present at least three different ways to evaluate the area enclosed by this ellipse. ü Together The most famous circle is the unit circle. The area enclosed by the unit circle is p. Determine the family of all ellipses each one of which encloses the area p. Replicate the picture below which shows 0 such ellipses ü Length ü Calculate Determine the exact formula for the circumference of the ellipse introduced in the introduction to this problem. Determine at least three different, but equivalent, ways of writing this formula. Give explanations of the functions that you are using. ü Together The most famous circle is the unit circle. The the circumference of the unit circle is p. Determine the family of all ellipses each one of which has the circumference p. Replicate the picture below which shows 0 such ellipses.

46 6 070_A.nb p - p - p p p - p - p - p

47 070_A.nb 7 p - p - p p p - p - p - p

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

Functions f and g are called a funny cosine and a funny sine if they satisfy the following properties:

Functions f and g are called a funny cosine and a funny sine if they satisfy the following properties: Assignment problems by Branko Ćurgus posted on 2070720 Problem. Funny trigonometry and its beauty ü Few Mathematica comments There are several standard Mathematica functions that can be useful here. For

More information

REPRESENTATION OF CURVES IN PARAMETRIC FORM

REPRESENTATION OF CURVES IN PARAMETRIC FORM - Representation of curves in parametric form 1 REPRESENTATION OF CURVES IN PARAMETRIC FORM.1. Parametrization of curves in the plane Given a curve in parametric form, its graphical representation in a

More information

Teaching Complex Analysis as a Lab- Type ( flipped ) Course with a Focus on Geometric Interpretations using Mathematica

Teaching Complex Analysis as a Lab- Type ( flipped ) Course with a Focus on Geometric Interpretations using Mathematica Teaching Complex Analysis as a Lab- Type ( flipped ) Course with a Focus on Geometric Interpretations using Mathematica Bill Kinney, Bethel University, St. Paul, MN 2 KinneyComplexAnalysisLabCourse.nb

More information

A plane. Or, with more details, NotebookDirectory. C:\Dropbox\Work\myweb\Courses\Math_pages\Math_225\

A plane. Or, with more details, NotebookDirectory. C:\Dropbox\Work\myweb\Courses\Math_pages\Math_225\ In[1]:= NotebookDirectory Out[1]= C:\Dropbox\Work\myweb\Courses\Math_pages\Math_5\ A plane Given a point in R 3 (below it is vr) and two non-collinear vectors (below uu and vv) the parametric equation

More information

Problem #130 Ant On Cylinders

Problem #130 Ant On Cylinders Problem #130 Ant On Cyliners The Distance The Ant Travels Along The Surface John Snyer November, 009 Problem Consier the soli boune by the three right circular cyliners x y (greenish-yellow), x z (re),

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.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

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

Explore 3D Figures. Dr. Jing Wang (517) , Lansing Community College, Michigan, USA

Explore 3D Figures. Dr. Jing Wang (517) , Lansing Community College, Michigan, USA Explore 3D Figures Dr. Jing Wang (517)2675965, wangj@lcc.edu Lansing Community College, Michigan, USA Part I. 3D Modeling In this part, we create 3D models using Mathematica for various solids in 3D space,

More information

Moore Catholic High School Math Department

Moore Catholic High School Math Department Moore Catholic High School Math Department Geometry Vocabulary The following is a list of terms and properties which are necessary for success in a Geometry class. You will be tested on these terms during

More information

In this chapter, we will investigate what have become the standard applications of the integral:

In this chapter, we will investigate what have become the standard applications of the integral: Chapter 8 Overview: Applications of Integrals Calculus, like most mathematical fields, began with trying to solve everyday problems. The theory and operations were formalized later. As early as 70 BC,

More information

Walt Whitman High School SUMMER REVIEW PACKET. For students entering AP CALCULUS BC

Walt Whitman High School SUMMER REVIEW PACKET. For students entering AP CALCULUS BC Walt Whitman High School SUMMER REVIEW PACKET For students entering AP CALCULUS BC Name: 1. This packet is to be handed in to your Calculus teacher on the first day of the school year.. All work must be

More information

I IS II. = 2y"\ V= n{ay 2 l 3 -\y 2 )dy. Jo n [fy 5 ' 3 1

I IS II. = 2y\ V= n{ay 2 l 3 -\y 2 )dy. Jo n [fy 5 ' 3 1 r Exercises 5.2 Figure 530 (a) EXAMPLE'S The region in the first quadrant bounded by the graphs of y = i* and y = 2x is revolved about the y-axis. Find the volume of the resulting solid. SOLUTON The region

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

Making Holes and Windows in Surfaces

Making Holes and Windows in Surfaces The Mathematica Journal Making Holes and Windows in Surfaces Alan Horwitz In this article, we demonstrate makehole, a program which removes points from any Graphics or Graphics3D picture whose coordinates

More information

Problem 25 in Section 16.3

Problem 25 in Section 16.3 Problem 5 in Section 16.3 In[1]:= Recall that in this problem we are studying the pyramid bounded by the planes z 6, y 0, y x 4 and x y z 4. In class we calculated all the vertices of this pyramid. Now

More information

Parametric Curves, Polar Plots and 2D Graphics

Parametric Curves, Polar Plots and 2D Graphics Parametric Curves, Polar Plots and 2D Graphics Fall 2016 In[213]:= Clear "Global`*" 2 2450notes2_fall2016.nb Parametric Equations In chapter 9, we introduced parametric equations so that we could easily

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

Answer Key: Three-Dimensional Cross Sections

Answer Key: Three-Dimensional Cross Sections Geometry A Unit Answer Key: Three-Dimensional Cross Sections Name Date Objectives In this lesson, you will: visualize three-dimensional objects from different perspectives be able to create a projection

More information

Introduction to Mathematica and Graphing in 3-Space

Introduction to Mathematica and Graphing in 3-Space 1 Mathematica is a powerful tool that can be used to carry out computations and construct graphs and images to help deepen our understanding of mathematical concepts. This document will serve as a living

More information

Triple Integrals: Setting up the Integral

Triple Integrals: Setting up the Integral Triple Integrals: Setting up the Integral. Set up the integral of a function f x, y, z over the region above the upper nappe of the cone z x y from z to z. Use the following orders of integration: d x

More information

Geometry: Semester 2 Practice Final Unofficial Worked Out Solutions by Earl Whitney

Geometry: Semester 2 Practice Final Unofficial Worked Out Solutions by Earl Whitney Geometry: Semester 2 Practice Final Unofficial Worked Out Solutions by Earl Whitney 1. Wrapping a string around a trash can measures the circumference of the trash can. Assuming the trash can is circular,

More information

Algebra II. Slide 1 / 162. Slide 2 / 162. Slide 3 / 162. Trigonometric Functions. Trig Functions

Algebra II. Slide 1 / 162. Slide 2 / 162. Slide 3 / 162. Trigonometric Functions. Trig Functions Slide 1 / 162 Algebra II Slide 2 / 162 Trigonometric Functions 2015-12-17 www.njctl.org Trig Functions click on the topic to go to that section Slide 3 / 162 Radians & Degrees & Co-terminal angles Arc

More information

B.Stat / B.Math. Entrance Examination 2017

B.Stat / B.Math. Entrance Examination 2017 B.Stat / B.Math. Entrance Examination 017 BOOKLET NO. TEST CODE : UGA Forenoon Questions : 0 Time : hours Write your Name, Registration Number, Test Centre, Test Code and the Number of this Booklet in

More information

Birkdale High School - Higher Scheme of Work

Birkdale High School - Higher Scheme of Work Birkdale High School - Higher Scheme of Work Module 1 - Integers and Decimals Understand and order integers (assumed) Use brackets and hierarchy of operations (BODMAS) Add, subtract, multiply and divide

More information

INSTRUCTIONS FOR THE USE OF THE SUPER RULE TM

INSTRUCTIONS FOR THE USE OF THE SUPER RULE TM INSTRUCTIONS FOR THE USE OF THE SUPER RULE TM NOTE: All images in this booklet are scale drawings only of template shapes and scales. Preparation: Your SUPER RULE TM is a valuable acquisition for classroom

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

Math 113 Exam 1 Practice

Math 113 Exam 1 Practice Math Exam Practice January 6, 00 Exam will cover sections 6.-6.5 and 7.-7.5 This sheet has three sections. The first section will remind you about techniques and formulas that you should know. The second

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

Coordinate Transformations in Advanced Calculus

Coordinate Transformations in Advanced Calculus Coordinate Transformations in Advanced Calculus by Sacha Nandlall T.A. for MATH 264, McGill University Email: sacha.nandlall@mail.mcgill.ca Website: http://www.resanova.com/teaching/calculus/ Fall 2006,

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

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

A Quick Review of Trigonometry

A Quick Review of Trigonometry A Quick Review of Trigonometry As a starting point, we consider a ray with vertex located at the origin whose head is pointing in the direction of the positive real numbers. By rotating the given ray (initial

More information

Chapter 7 curve. 3. x=y-y 2, x=0, about the y axis. 6. y=x, y= x,about y=1

Chapter 7 curve. 3. x=y-y 2, x=0, about the y axis. 6. y=x, y= x,about y=1 Chapter 7 curve Find the volume of the solid obtained by rotating the region bounded by the given cures about the specified line. Sketch the region, the solid, and a typical disk or washer.. y-/, =, =;

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

A1:Orthogonal Coordinate Systems

A1:Orthogonal Coordinate Systems A1:Orthogonal Coordinate Systems A1.1 General Change of Variables Suppose that we express x and y as a function of two other variables u and by the equations We say that these equations are defining a

More information

USING THE DEFINITE INTEGRAL

USING THE DEFINITE INTEGRAL Print this page Chapter Eight USING THE DEFINITE INTEGRAL 8.1 AREAS AND VOLUMES In Chapter 5, we calculated areas under graphs using definite integrals. We obtained the integral by slicing up the region,

More information

Math 21a Homework 22 Solutions Spring, 2014

Math 21a Homework 22 Solutions Spring, 2014 Math 1a Homework Solutions Spring, 014 1. Based on Stewart 11.8 #6 ) Consider the function fx, y) = e xy, and the constraint x 3 + y 3 = 16. a) Use Lagrange multipliers to find the coordinates x, y) of

More information

Algebra II Trigonometric Functions

Algebra II Trigonometric Functions Slide 1 / 162 Slide 2 / 162 Algebra II Trigonometric Functions 2015-12-17 www.njctl.org Slide 3 / 162 Trig Functions click on the topic to go to that section Radians & Degrees & Co-terminal angles Arc

More information

AP Calculus Summer Review Packet

AP Calculus Summer Review Packet AP Calculus Summer Review Packet Name: Date began: Completed: **A Formula Sheet has been stapled to the back for your convenience!** Email anytime with questions: danna.seigle@henry.k1.ga.us Complex Fractions

More information

A lg e b ra II. Trig o n o m e tric F u n c tio

A lg e b ra II. Trig o n o m e tric F u n c tio 1 A lg e b ra II Trig o n o m e tric F u n c tio 2015-12-17 www.njctl.org 2 Trig Functions click on the topic to go to that section Radians & Degrees & Co-terminal angles Arc Length & Area of a Sector

More information

Homework 8. Due: Tuesday, March 31st, 2009

Homework 8. Due: Tuesday, March 31st, 2009 MATH 55 Applied Honors Calculus III Winter 9 Homework 8 Due: Tuesday, March 3st, 9 Section 6.5, pg. 54: 7, 3. Section 6.6, pg. 58:, 3. Section 6.7, pg. 66: 3, 5, 47. Section 6.8, pg. 73: 33, 38. Section

More information

Lecture 5. If, as shown in figure, we form a right triangle With P1 and P2 as vertices, then length of the horizontal

Lecture 5. If, as shown in figure, we form a right triangle With P1 and P2 as vertices, then length of the horizontal Distance; Circles; Equations of the form Lecture 5 y = ax + bx + c In this lecture we shall derive a formula for the distance between two points in a coordinate plane, and we shall use that formula to

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

Mathematics. Geometry Revision Notes for Higher Tier

Mathematics. Geometry Revision Notes for Higher Tier Mathematics Geometry Revision Notes for Higher Tier Thomas Whitham Sixth Form S J Cooper Pythagoras Theorem Right-angled trigonometry Trigonometry for the general triangle rea & Perimeter Volume of Prisms,

More information

Math 2260 Exam #1 Practice Problem Solutions

Math 2260 Exam #1 Practice Problem Solutions Math 6 Exam # Practice Problem Solutions. What is the area bounded by the curves y x and y x + 7? Answer: As we can see in the figure, the line y x + 7 lies above the parabola y x in the region we care

More information

Alaska Mathematics Standards Vocabulary Word List Grade 7

Alaska Mathematics Standards Vocabulary Word List Grade 7 1 estimate proportion proportional relationship rate ratio rational coefficient rational number scale Ratios and Proportional Relationships To find a number close to an exact amount; an estimate tells

More information

Number/Computation. addend Any number being added. digit Any one of the ten symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, or 9

Number/Computation. addend Any number being added. digit Any one of the ten symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, or 9 14 Number/Computation addend Any number being added algorithm A step-by-step method for computing array A picture that shows a number of items arranged in rows and columns to form a rectangle associative

More information

f sin the slope of the tangent line is given by f sin f cos cos sin , but it s also given by 2. So solve the DE with initial condition: sin cos

f sin the slope of the tangent line is given by f sin f cos cos sin , but it s also given by 2. So solve the DE with initial condition: sin cos Math 414 Activity 1 (Due by end of class August 1) 1 Four bugs are placed at the four corners of a square with side length a The bugs crawl counterclockwise at the same speed and each bug crawls directly

More information

Specific Objectives Students will understand that that the family of equation corresponds with the shape of the graph. Students will be able to create a graph of an equation by plotting points. In lesson

More information

Examples of Fourier series

Examples of Fourier series Examples of Fourier series Preliminaries In[]:= Below is the definition of a periodic extension of a function defined on L, L. This definition takes a function as a variable. The function has to be inputted

More information

Grade 9 Math Terminology

Grade 9 Math Terminology Unit 1 Basic Skills Review BEDMAS a way of remembering order of operations: Brackets, Exponents, Division, Multiplication, Addition, Subtraction Collect like terms gather all like terms and simplify as

More information

Precalculus, Quarter 2, Unit 2.1. Trigonometry Graphs. Overview

Precalculus, Quarter 2, Unit 2.1. Trigonometry Graphs. Overview 13 Precalculus, Quarter 2, Unit 2.1 Trigonometry Graphs Overview Number of instructional days: 12 (1 day = 45 minutes) Content to be learned Convert between radian and degree measure. Determine the usefulness

More information

Outcomes List for Math Multivariable Calculus (9 th edition of text) Spring

Outcomes List for Math Multivariable Calculus (9 th edition of text) Spring Outcomes List for Math 200-200935 Multivariable Calculus (9 th edition of text) Spring 2009-2010 The purpose of the Outcomes List is to give you a concrete summary of the material you should know, and

More information

Geometry I Can Statements I can describe the undefined terms: point, line, and distance along a line in a plane I can describe the undefined terms:

Geometry I Can Statements I can describe the undefined terms: point, line, and distance along a line in a plane I can describe the undefined terms: Geometry I Can Statements I can describe the undefined terms: point, line, and distance along a line in a plane I can describe the undefined terms: point, line, and distance along a line in a plane I can

More information

Exam 3 SCORE. MA 114 Exam 3 Spring Section and/or TA:

Exam 3 SCORE. MA 114 Exam 3 Spring Section and/or TA: MA 114 Exam 3 Spring 217 Exam 3 Name: Section and/or TA: Last Four Digits of Student ID: Do not remove this answer page you will return the whole exam. You will be allowed two hours to complete this test.

More information

FURTHER MATHS. WELCOME TO A Level FURTHER MATHEMATICS AT CARDINAL NEWMAN CATHOLIC SCHOOL

FURTHER MATHS. WELCOME TO A Level FURTHER MATHEMATICS AT CARDINAL NEWMAN CATHOLIC SCHOOL FURTHER MATHS WELCOME TO A Level FURTHER MATHEMATICS AT CARDINAL NEWMAN CATHOLIC SCHOOL This two-year Edexcel Pearson syllabus is intended for high ability candidates who have achieved, or are likely to

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

1. The Pythagorean Theorem

1. The Pythagorean Theorem . The Pythagorean Theorem The Pythagorean theorem states that in any right triangle, the sum of the squares of the side lengths is the square of the hypotenuse length. c 2 = a 2 b 2 This theorem can be

More information

MATH 200 WEEK 9 - WEDNESDAY TRIPLE INTEGRALS

MATH 200 WEEK 9 - WEDNESDAY TRIPLE INTEGRALS MATH WEEK 9 - WEDNESDAY TRIPLE INTEGRALS MATH GOALS Be able to set up and evaluate triple integrals using rectangular, cylindrical, and spherical coordinates MATH TRIPLE INTEGRALS We integrate functions

More information

2009 GCSE Maths Tutor All Rights Reserved

2009 GCSE Maths Tutor All Rights Reserved 2 This book is under copyright to GCSE Maths Tutor. However, it may be distributed freely provided it is not sold for profit. Contents angles 3 bearings 8 triangle similarity 9 triangle congruency 11 Pythagoras

More information

Geometry 10 and 11 Notes

Geometry 10 and 11 Notes Geometry 10 and 11 Notes Area and Volume Name Per Date 10.1 Area is the amount of space inside of a two dimensional object. When working with irregular shapes, we can find its area by breaking it up into

More information

Chislehurst and Sidcup Grammar School Mathematics Department Year 9 Programme of Study

Chislehurst and Sidcup Grammar School Mathematics Department Year 9 Programme of Study Chislehurst and Sidcup Grammar School Mathematics Department Year 9 Programme of Study Timings Topics Autumn Term - 1 st half (7 weeks - 21 lessons) 1. Algebra 1: Expressions, Formulae, Equations and Inequalities

More information

Course Number: Course Title: Geometry

Course Number: Course Title: Geometry Course Number: 1206310 Course Title: Geometry RELATED GLOSSARY TERM DEFINITIONS (89) Altitude The perpendicular distance from the top of a geometric figure to its opposite side. Angle Two rays or two line

More information

Moore Catholic High School Math Department

Moore Catholic High School Math Department Moore Catholic High School Math Department Geometry Vocabulary The following is a list of terms and properties which are necessary for success in a Geometry class. You will be tested on these terms during

More information

COMP 175 COMPUTER GRAPHICS. Ray Casting. COMP 175: Computer Graphics April 26, Erik Anderson 09 Ray Casting

COMP 175 COMPUTER GRAPHICS. Ray Casting. COMP 175: Computer Graphics April 26, Erik Anderson 09 Ray Casting Ray Casting COMP 175: Computer Graphics April 26, 2018 1/41 Admin } Assignment 4 posted } Picking new partners today for rest of the assignments } Demo in the works } Mac demo may require a new dylib I

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

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

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

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

Unit 3 Higher topic list

Unit 3 Higher topic list This is a comprehensive list of the topics to be studied for the Edexcel unit 3 modular exam. Beside the topics listed are the relevant tasks on www.mymaths.co.uk that students can use to practice. Logon

More information

The radius for a regular polygon is the same as the radius of the circumscribed circle.

The radius for a regular polygon is the same as the radius of the circumscribed circle. Perimeter and Area The perimeter and area of geometric shapes are basic properties that we need to know. The more complex a shape is, the more complex the process can be in finding its perimeter and area.

More information

AP Calculus Summer Review Packet School Year. Name

AP Calculus Summer Review Packet School Year. Name AP Calculus Summer Review Packet 016-017 School Year Name Objectives for AP/CP Calculus Summer Packet 016-017 I. Solving Equations & Inequalities (Problems # 1-6) Using the properties of equality Solving

More information

To be a grade 1 I need to

To be a grade 1 I need to To be a grade 1 I need to Order positive and negative integers Understand addition and subtraction of whole numbers and decimals Apply the four operations in correct order to integers and proper fractions

More information

Question. Why is the third shape not convex?

Question. Why is the third shape not convex? 1. CONVEX POLYGONS Definition. A shape D in the plane is convex if every line drawn between two points in D is entirely inside D. Convex 6 gon Another convex 6 gon Not convex Question. Why is the third

More information

AQA GCSE Maths - Higher Self-Assessment Checklist

AQA GCSE Maths - Higher Self-Assessment Checklist AQA GCSE Maths - Higher Self-Assessment Checklist Number 1 Use place value when calculating with decimals. 1 Order positive and negative integers and decimals using the symbols =,, , and. 1 Round to

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

PRACTICAL GEOMETRY SYMMETRY AND VISUALISING SOLID SHAPES

PRACTICAL GEOMETRY SYMMETRY AND VISUALISING SOLID SHAPES UNIT 12 PRACTICAL GEOMETRY SYMMETRY AND VISUALISING SOLID SHAPES (A) Main Concepts and Results Let a line l and a point P not lying on it be given. By using properties of a transversal and parallel lines,

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

MATHEMATICS 105 Plane Trigonometry

MATHEMATICS 105 Plane Trigonometry Chapter I THE TRIGONOMETRIC FUNCTIONS MATHEMATICS 105 Plane Trigonometry INTRODUCTION The word trigonometry literally means triangle measurement. It is concerned with the measurement of the parts, sides,

More information

Lesson Polygons

Lesson Polygons Lesson 4.1 - Polygons Obj.: classify polygons by their sides. classify quadrilaterals by their attributes. find the sum of the angle measures in a polygon. Decagon - A polygon with ten sides. Dodecagon

More information

Log1 Contest Round 2 Theta Circles, Parabolas and Polygons. 4 points each

Log1 Contest Round 2 Theta Circles, Parabolas and Polygons. 4 points each Name: Units do not have to be included. 016 017 Log1 Contest Round Theta Circles, Parabolas and Polygons 4 points each 1 Find the value of x given that 8 x 30 Find the area of a triangle given that it

More information

3.3 Optimizing Functions of Several Variables 3.4 Lagrange Multipliers

3.3 Optimizing Functions of Several Variables 3.4 Lagrange Multipliers 3.3 Optimizing Functions of Several Variables 3.4 Lagrange Multipliers Prof. Tesler Math 20C Fall 2018 Prof. Tesler 3.3 3.4 Optimization Math 20C / Fall 2018 1 / 56 Optimizing y = f (x) In Math 20A, we

More information

Chapter 1. Linear Equations and Straight Lines. 2 of 71. Copyright 2014, 2010, 2007 Pearson Education, Inc.

Chapter 1. Linear Equations and Straight Lines. 2 of 71. Copyright 2014, 2010, 2007 Pearson Education, Inc. Chapter 1 Linear Equations and Straight Lines 2 of 71 Outline 1.1 Coordinate Systems and Graphs 1.4 The Slope of a Straight Line 1.3 The Intersection Point of a Pair of Lines 1.2 Linear Inequalities 1.5

More information

CCNY Math Review Chapters 5 and 6: Trigonometric functions and graphs

CCNY Math Review Chapters 5 and 6: Trigonometric functions and graphs Ch 5. Trigonometry 6. Angles 6. Right triangles 6. Trig funs for general angles 5.: Trigonometric functions and graphs 5.5 Inverse functions CCNY Math Review Chapters 5 and 6: Trigonometric functions and

More information

If you ask most people what A s strategy should be when all 3 duelists are alive, there are two common answers:

If you ask most people what A s strategy should be when all 3 duelists are alive, there are two common answers: The Truel Problem Imagine that you have a three-way duel (or truel ). The three duelists are named A, B, and C and have accuracy probabilities of a, b, and c with 0 < a < b < c < 1. The rules of the duel

More information

Make geometric constructions. (Formalize and explain processes)

Make geometric constructions. (Formalize and explain processes) Standard 5: Geometry Pre-Algebra Plus Algebra Geometry Algebra II Fourth Course Benchmark 1 - Benchmark 1 - Benchmark 1 - Part 3 Draw construct, and describe geometrical figures and describe the relationships

More information

You may know these...

You may know these... You may know these... Chapter 1: Multivariables Functions 1.1 Functions of Two Variables 1.1.1 Function representations 1.1. 3-D Coordinate System 1.1.3 Graph of two variable functions 1.1.4 Sketching

More information

Common Core Cluster. Experiment with transformations in the plane. Unpacking What does this standard mean that a student will know and be able to do?

Common Core Cluster. Experiment with transformations in the plane. Unpacking What does this standard mean that a student will know and be able to do? Congruence G.CO Experiment with transformations in the plane. G.CO.1 Know precise definitions of angle, circle, perpendicular line, parallel line, and line segment, based on the undefined notions of point,

More information

MATH DICTIONARY. Number Sense. Number Families. Operations. Counting (Natural) Numbers The numbers we say when we count. Example: {0, 1, 2, 3, 4 }

MATH DICTIONARY. Number Sense. Number Families. Operations. Counting (Natural) Numbers The numbers we say when we count. Example: {0, 1, 2, 3, 4 } Number Sense Number Families MATH DICTIONARY Counting (Natural) Numbers The numbers we say when we count Example: {1, 2, 3, 4 } Whole Numbers The counting numbers plus zero Example: {0, 1, 2, 3, 4 } Positive

More information

FOUNDATION HIGHER. F Autumn 1, Yr 9 Autumn 2, Yr 9 Spring 1, Yr 9 Spring 2, Yr 9 Summer 1, Yr 9 Summer 2, Yr 9

FOUNDATION HIGHER. F Autumn 1, Yr 9 Autumn 2, Yr 9 Spring 1, Yr 9 Spring 2, Yr 9 Summer 1, Yr 9 Summer 2, Yr 9 Year: 9 GCSE Mathematics FOUNDATION F Autumn 1, Yr 9 Autumn 2, Yr 9 Spring 1, Yr 9 Spring 2, Yr 9 Summer 1, Yr 9 Summer 2, Yr 9 HIGHER Integers and place value Decimals Indices, powers and roots Factors,multiples

More information

1 Basic Plotting. Radii Speeds Offsets 1, 1, 1 2, 5, 19 0, 0, 0 1, 0.8, 0.4, 0.2, 0.4, 0.2 1, 10, 17, 26, 28, 37 0, Π, Π, 0, 0, Π

1 Basic Plotting. Radii Speeds Offsets 1, 1, 1 2, 5, 19 0, 0, 0 1, 0.8, 0.4, 0.2, 0.4, 0.2 1, 10, 17, 26, 28, 37 0, Π, Π, 0, 0, Π 1 Basic Plotting Placing wheels on wheels on wheels and giving them different rates of spin leads to some interesting parametric plots. The images show four examples. They arise from the values below,

More information

6th Grade Report Card Mathematics Skills: Students Will Know/ Students Will Be Able To...

6th Grade Report Card Mathematics Skills: Students Will Know/ Students Will Be Able To... 6th Grade Report Card Mathematics Skills: Students Will Know/ Students Will Be Able To... Report Card Skill: Use ratio reasoning to solve problems a ratio compares two related quantities ratios can be

More information

Hustle Geometry SOLUTIONS MAΘ National Convention 2018 Answers:

Hustle Geometry SOLUTIONS MAΘ National Convention 2018 Answers: Hustle Geometry SOLUTIONS MAΘ National Convention 08 Answers:. 50.. 4. 8 4. 880 5. 6. 6 7 7. 800π 8. 6 9. 8 0. 58. 5.. 69 4. 0 5. 57 6. 66 7. 46 8. 6 9. 0.. 75. 00. 80 4. 8 5 5. 7 8 6+6 + or. Hustle Geometry

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

Mathematics High School Geometry An understanding of the attributes and relationships of geometric objects can be applied in diverse contexts

Mathematics High School Geometry An understanding of the attributes and relationships of geometric objects can be applied in diverse contexts Mathematics High School Geometry An understanding of the attributes and relationships of geometric objects can be applied in diverse contexts interpreting a schematic drawing, estimating the amount of

More information

Math 2 Coordinate Geometry Part 3 Inequalities & Quadratics

Math 2 Coordinate Geometry Part 3 Inequalities & Quadratics Math 2 Coordinate Geometry Part 3 Inequalities & Quadratics 1 DISTANCE BETWEEN TWO POINTS - REVIEW To find the distance between two points, use the Pythagorean theorem. The difference between x 1 and x

More information

Geometry. Cluster: Experiment with transformations in the plane. G.CO.1 G.CO.2. Common Core Institute

Geometry. Cluster: Experiment with transformations in the plane. G.CO.1 G.CO.2. Common Core Institute Geometry Cluster: Experiment with transformations in the plane. G.CO.1: Know precise definitions of angle, circle, perpendicular line, parallel line, and line segment, based on the undefined notions of

More information

f xx (x, y) = 6 + 6x f xy (x, y) = 0 f yy (x, y) = y In general, the quantity that we re interested in is

f xx (x, y) = 6 + 6x f xy (x, y) = 0 f yy (x, y) = y In general, the quantity that we re interested in is 1. Let f(x, y) = 5 + 3x 2 + 3y 2 + 2y 3 + x 3. (a) Final all critical points of f. (b) Use the second derivatives test to classify the critical points you found in (a) as a local maximum, local minimum,

More information