Contour Diagrams. restart:with(plots): setoptions3d(axes=normal,labels=["x","y","z"],orientation=[20,70]);

Size: px
Start display at page:

Download "Contour Diagrams. restart:with(plots): setoptions3d(axes=normal,labels=["x","y","z"],orientation=[20,70]);"

Transcription

1 > > We start with the graph of z = f x, y = > z:=sqrt(x^2+y^2); > Contour Diagrams restart:with(plots): setoptions3d(axes=normal,labels=["x","y","z"],orientation=[20,70]); x 2 C y 2 and we plot its graph. z := x 2 C y 2 plot3d(z,x=-9..9,y=-9..9,view=[-9..9,-9..9,0..9],style=patchnogrid) ; The graph appears to be that of an inverted cone of height 9. To find a contour line or level set for the surface, we first look at the intersection of the surface with a horizontal plane, say the plane z = 6. > p1:=plot3d(z,x=-9..9,y=-9..9,view=[-9..9,-9..9,0..9],style= patchnogrid): p2:=plot3d(6,x=-9..9,y=-9..9,view=[-9..9,-9..9,0..9],style= patchnogrid): p3:=plot3d([6*cos(t),6*sin(t),6],t=0..2*pi,u=0..5): display(p1,p2,p3);

2 > Then we project the curve(s) of intersection onto the xy-plane to get the contour line(s) or level set. p1:=plot3d(z,x=-9..9,y=-9..9,view=[-9..9,-9..9,0..9],style= wireframe): p2:=plot3d(6,x=-9..9,y=-9..9,view=[-9..9,-9..9,0..9],style= wireframe): p3:=plot3d([6*cos(t),6*sin(t),6],t=0..2*pi,u=0..5): p4:=plot3d([6*cos(t),6*sin(t),0],t=0..2*pi,u=0..5): p5:=plot3d([-6,0,t],t=0..6,u=0..5): p6:=plot3d([6,0,t],t=0..6,u=0..5): p7:=plot3d([0,-6,t],t=0..6,u=0..5): p8:=plot3d([0,6,t],t=0..6,u=0..5): display(p1,p2,p3,p4,p5,p6,p7,p8);

3 Using the plottools package and the transform command, we can get another view at how the contour diagram is developed by the intersections of planes with the surface being projected onto the xy-plane. > with(plottools); annulus, arc, arrow, circle, cone, cuboid, curve, cutin, cutout, cylinder, disk, dodecahedron, ellipse, > ellipticarc, exportplot, extrude, getdata, hemisphere, hexahedron, homothety, hyperbola, icosahedron, importplot, line, octahedron, parallelepiped, pieslice, point, polygon, prism, project, rectangle, reflect, rotate, scale, sector, semitorus, sphere, stellate, tetrahedron, torus, transform, translate p := plot3d(z,x=-9..9,y=-9..9,view=[-9..9,-9..9,0..9],style= contour,contours=8): q := contourplot(z,x=-9..9,y=-9..9): f := transform((x,y) -> [x,y,0]): display({p,f(q)});

4 > A modification of the above shows the contours on the surface itself. p := contourplot3d(z,x=-9..9,y=-9..9,view=[-9..9,-9..9,0..9], filled=true): q := contourplot(z,x=-9..9,y=-9..9,filled=true): f := transform((x,y) -> [x,y,0]): display({p,f(q)});

5 Now let's focus on just the contourplot for this surface. The option"scaling=constrained" is used to get the same scale on both the x- and the y-axis. > contourplot(z,x=-9..9,y=-9..9,scaling=constrained);

6 8 6 y 4 2 K8 K6 K4 K x K2 K4 K6 K8 Curve 1 Curve 2 Curve 3 Curve 4 Curve 5 Curve 6 Curve 7 Curve 8 Maple chooses 8 equally spaced levels by default, with the contours colored in shades from red to blue as they increase in size. You can also choose to fill in the contours > contourplot(z,x=-9..9,y=-9..9,scaling=constrained,filled=true);

7 You can choose how many contours you wish. > contourplot(z,x=-9..9,y=-9..9,contours=20,scaling=constrained);

8 8 y K8 K6 K K2 x K4 K6 K8 Curve 1 Curve 2 Curve 3 Curve 4 Curve 5 Curve 6 Curve 7 Curve 8 Curve 9 Curve 10 Curve 11 Curve 12 Curve 13 Curve 14 Curve 15 Curve 16 Curve 17 Curve 18 Curve 19 Curve 20 You can also choose the levels for your contours. > contourplot(z,x=-9..9,y=-9..9,contours=[1,2,3,4,5,6,7,8,9],scaling= constrained);

9 8 6 y 4 2 The equal spacing of the contours for this function is due to the fact that the "sides" of the cone increase at a constant rate. Let's compare our original function to z=g x, y = x 2 C y 2. > z:=x^2+y^2; z := x 2 C y 2 > K8 K6 K4 K K2 x K4 K6 K8 Curve 1 Curve 2 Curve 3 Curve 4 Curve 5 Curve 6 Curve 7 Curve 8 Curve 9 plot3d(z,x=-9..9,y=-9..9,view=[-9..9,-9..9,0..60],style= patchnogrid);

10 We see that the sides here do not increase at a constant rate. We consider 20 equally spaced contours, the multiples of 3 from 3 to 60. > contourplot(z,x=-9..9,y=-9..9,contours=[seq(3*i,i=1..20)],scaling= constrained);

11 6 y 4 2 K6 K4 K K2 x K4 K6 We see that the contours become closer as the height of the level increases, indicating a greater rate of change in the positive direction as the height of the level increases. Now let's flip this surface upside down. > z:=60-(x^2+y^2); z := Kx 2 K y 2 C 60 > Curve 1 Curve 2 Curve 3 Curve 4 Curve 5 Curve 6 Curve 7 Curve 8 Curve 9 Curve 10 Curve 11 Curve 12 Curve 13 Curve 14 Curve 15 Curve 16 Curve 17 Curve 18 Curve 19 Curve 20 plot3d(z,x=-9..9,y=-9..9,view=[-9..9,-9..9,0..60],style= patchnogrid);

12 > We compare the contour plot here with the previous one. contourplot(z,x=-9..9,y=-9..9,contours=[seq(3*i,i=1..20)],scaling= constrained,filled=true);

13 We see that the contours become closer as the height of the level decreases, indicating a greater rate of change in the negative direction as the height of the level decreases. We next look at a more interesting surface, the saddle, with this one given by the function z = f x, y = x 2 K y 2. > z:=x^2-y^2; z := x 2 K y 2 > plot3d(z,x=-4..4,y=-4..4,style=patchnogrid);

14 > We look first at the level z = 0. p1:=plot3d(z,x=-4..4,y=-4..4,style=patchnogrid): p2:=plot3d(0,x=-4..4,y=-4..4,style=patchnogrid,color=blue): p3:=plot3d([x,x,0],x=-4..4,y=-4..4,thickness=5): p4:=plot3d([-x,x,0],x=-4..4,y=-4..4,thickness=5): display(p1,p2,p3,p4);

15 A close inspection suggests the plane intersects the saddle in two intersecting lines. Changing the view gives a better perspective on this. > p1:=plot3d(z,x=-4..4,y=-4..4,style=patchnogrid): p2:=plot3d(0,x=-4..4,y=-4..4,style=patchnogrid,color=blue): p3:=plot3d([x,x,0],x=-4..4,y=-4..4,thickness=5): p4:=plot3d([-x,x,0],x=-4..4,y=-4..4,thickness=5): display(p1,p2,p3,p4,orientation=[27,32]);

16 In fact, the lines we see are the lines x C y = 0 and x K y = 0. What will we get from the intersections of other horizontal planes? We look at the contour diagram for 19 equally spaced contours. > contourplot(z,x=-9..9,y=-9..9,contours=[seq(3*i,i=-9..9)],scaling= constrained);

17 8 y K8 K6 K K2 x K4 K6 K8 Curve 1 Curve 2 Curve 3 Curve 4 Curve 5 Curve 6 Curve 7 Curve 8 Curve 9 Curve 10 Curve 11 Curve 12 Curve 13 Curve 14 Curve 15 Curve 16 Curve 17 Curve 18 Curve 19 We first notice the two intersecting lines at the origin resulting from the plane z = 0 viewed above. The nine horizontal planes for negative levels intersect the saddle in hyperbolas, with the two branches shown above and below the x-axis in shades of red. The nine horizontal planes for positive levels also intersect the saddle in hyperbolas, but with the two branches shown left and right of the y-axis in shades of blue. We view another contourplot for the same function. > contourplot(z,x=-9..9,y=-9..9,contours=20,scaling=constrained);

18 8 y Next we look at the contour diagram for a plane. > z:=-4*x-3*y+24; z := K4 x K 3 y C 24 > K8 K6 K K2 x K4 K6 K8 Curve 1 Curve 2 Curve 3 Curve 4 Curve 5 Curve 6 Curve 7 Curve 8 Curve 9 Curve 10 Curve 11 Curve 12 Curve 13 Curve 14 Curve 15 Curve 16 Curve 17 Curve 18 Curve 19 Curve 20 plot3d(z,x=-8..8,y= ,view=[0..8,-0..10,0..26],style= patchnogrid);

19 The contour diagram. > contourplot(z,x= ,y= ,contours=20,scaling=constrained);

20 10 y 5 K10 K x K5 K10 Curve 1 Curve 2 Curve 3 Curve 4 Curve 5 Curve 6 Curve 7 Curve 8 Curve 9 Curve 10 Curve 11 Curve 12 Curve 13 Curve 14 Curve 15 Curve 16 Curve 17 Curve 18 Curve 19 Curve 20 Notice that the contours are parallel lines. Our final surface has many interesting aspects. > z:=cos(x)*cos(y)*exp(-sqrt(x^2+y^2)/4); z := cos x cos y e K1 4 x 2 C y 2 > plot3d(z,x= ,y= ,style=patchnogrid,numpoints=5000);

21 > We view a contour diagram with 20 equally spaced contours. contourplot(z,x= ,y= ,contours=20,scaling=constrained, numpoints=5000);

22 10 y 5 K10 K x K5 K10 Curve 1 Curve 2 Curve 3 Curve 4 Curve 5 Curve 6 Curve 7 Curve 8 Curve 9 Curve 10 Curve 11 Curve 12 Curve 13 Curve 14 Curve 15 Curve 16 Curve 17 Curve 18 Curve 19 Curve 20 This contour diagram shows that the most radical behavior for this function lies near the origin of the xyplane (deep reds and blues) with the surface staying pretty close to the xy-plane away from the origin (violets away from the origin). Last, we look at the 3d and 2d contour diagrams together. > p := contourplot3d(z,x=-9..9,y=-9..9,filled=true): q := contourplot(z,x=-9..9,y=-9..9,filled=true): f := transform((x,y) -> [x,y,-1]): display({p,f(q)});

23 Density Plots We use the densityplot command to form density plots. We will use the saddle function as an example. > z:=x^2-y^2; z := x 2 K y 2 > densityplot(z,x=-9..9,y=-9..9);

24 We can remove the gridlines. > densityplot(z,x=-9..9,y=-9..9,style=patchnogrid);

25 We can choose a color. > densityplot(z,x=-9..9,y=-9..9,style=patchnogrid,color=green);

26 We can use a variety of colors. > densityplot(z,x=-9..9,y=-9..9,style=patchnogrid,colorstyle=hue);

27 > Finally, we can change the brightness and contrast. densityplot(z,x=-9..9,y=-9..9,style=patchnogrid,colorstyle=hue, brightness=0.7,contrast=0.7);

28

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

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

Example: The following is an example of a polyhedron. Fill the blanks with the appropriate answer. Vertices:

Example: The following is an example of a polyhedron. Fill the blanks with the appropriate answer. Vertices: 11.1: Space Figures and Cross Sections Polyhedron: solid that is bounded by polygons Faces: polygons that enclose a polyhedron Edge: line segment that faces meet and form Vertex: point or corner where

More information

Spring 2011 Workshop ESSENTIALS OF 3D MODELING IN RHINOCEROS February 10 th 2011 S.R. Crown Hall Lower Core Computer Lab

Spring 2011 Workshop ESSENTIALS OF 3D MODELING IN RHINOCEROS February 10 th 2011 S.R. Crown Hall Lower Core Computer Lab [1] Open Rhinoceros. PART 1 INTRODUCTION [4] Click and hold on the Boundary Lines in where they form a crossing and Drag from TOP RIGHT to BOTTOM LEFT to enable only the PERSPECTIVE VIEW. [2] When the

More information

SHAPE AND STRUCTURE. Shape and Structure. An explanation of Mathematical terminology

SHAPE AND STRUCTURE. Shape and Structure. An explanation of Mathematical terminology Shape and Structure An explanation of Mathematical terminology 2005 1 POINT A dot Dots join to make lines LINE A line is 1 dimensional (length) A line is a series of points touching each other and extending

More information

Today we will be exploring three-dimensional objects, those that possess length, width, and depth.

Today we will be exploring three-dimensional objects, those that possess length, width, and depth. Lesson 22 Lesson 22, page 1 of 13 Glencoe Geometry Chapter 11.1 3-D figures & Polyhedra Today we will be exploring three-dimensional objects, those that possess length, width, and depth. In Euclidean,

More information

but both the "what" and the "how" can get quite complicated.

but both the what and the how can get quite complicated. plot3d Maple's plot3d command is used for drawing graphs of surfaces in three-dimensional space. The syntax and usage of the command is very similar to the plot command (which plots curves in the two-dimensional

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

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

COMPUTER AIDED ARCHITECTURAL GRAPHICS FFD 201/Fall 2013 HAND OUT 1 : INTRODUCTION TO 3D

COMPUTER AIDED ARCHITECTURAL GRAPHICS FFD 201/Fall 2013 HAND OUT 1 : INTRODUCTION TO 3D COMPUTER AIDED ARCHITECTURAL GRAPHICS FFD 201/Fall 2013 INSTRUCTORS E-MAIL ADDRESS OFFICE HOURS Özgür Genca ozgurgenca@gmail.com part time Tuba Doğu tubadogu@gmail.com part time Şebnem Yanç Demirkan sebnem.demirkan@gmail.com

More information

Multiply using the grid method.

Multiply using the grid method. Multiply using the grid method. Learning Objective Read and plot coordinates in all quadrants DEFINITION Grid A pattern of horizontal and vertical lines, usually forming squares. DEFINITION Coordinate

More information

We have set up our axioms to deal with the geometry of space but have not yet developed these ideas much. Let s redress that imbalance.

We have set up our axioms to deal with the geometry of space but have not yet developed these ideas much. Let s redress that imbalance. Solid geometry We have set up our axioms to deal with the geometry of space but have not yet developed these ideas much. Let s redress that imbalance. First, note that everything we have proven for the

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

Ready To Go On? Skills Intervention 10-1 Solid Geometry

Ready To Go On? Skills Intervention 10-1 Solid Geometry 10A Find these vocabulary words in Lesson 10-1 and the Multilingual Glossary. Vocabulary Ready To Go On? Skills Intervention 10-1 Solid Geometry face edge vertex prism cylinder pyramid cone cube net cross

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

Grade VIII. Mathematics Geometry Notes. #GrowWithGreen

Grade VIII. Mathematics Geometry Notes. #GrowWithGreen Grade VIII Mathematics Geometry Notes #GrowWithGreen Polygons can be classified according to their number of sides (or vertices). The sum of all the interior angles of an n -sided polygon is given by,

More information

11.4 Three-Dimensional Figures

11.4 Three-Dimensional Figures 11. Three-Dimensional Figures Essential Question What is the relationship between the numbers of vertices V, edges E, and faces F of a polyhedron? A polyhedron is a solid that is bounded by polygons, called

More information

STATE MU ALPHA THETA 2008 GEOMETRY 3-D

STATE MU ALPHA THETA 2008 GEOMETRY 3-D STATE MU ALPHA THETA 2008 GEOMETRY 3-D 1) In terms of π, what is the volume of a sphere with a radius of 6? a) 36π b) 48π c) 288π d) 324π 2) In terms of π, what is the total surface area of a circular

More information

Worksheets for GCSE Mathematics. Volume and Surface Area. Mr Black's Maths Resources for Teachers GCSE 1-9. Shape

Worksheets for GCSE Mathematics. Volume and Surface Area. Mr Black's Maths Resources for Teachers GCSE 1-9. Shape Worksheets for GCSE Mathematics Volume and Surface Area Mr Black's Maths Resources for Teachers GCSE 1-9 Shape Volume & Surface Area Worksheets Contents Differentiated Independent Learning Worksheets Volume

More information

3D ModelingChapter1: Chapter. Objectives

3D ModelingChapter1: Chapter. Objectives Chapter 1 3D ModelingChapter1: The lessons covered in this chapter familiarize you with 3D modeling and how you view your designs as you create them. You also learn the coordinate system and how you can

More information

Worksheets for GCSE Mathematics. Volume and Surface Area. mr-mathematics.com Maths Resources for Teachers. Shape

Worksheets for GCSE Mathematics. Volume and Surface Area. mr-mathematics.com Maths Resources for Teachers. Shape Worksheets for GCSE Mathematics Volume and Surface Area mr-mathematics.com Maths Resources for Teachers Shape Volume & Surface Area Worksheets Contents Differentiated Independent Learning Worksheets Volume

More information

Section 2.5. Functions and Surfaces

Section 2.5. Functions and Surfaces Section 2.5. Functions and Surfaces ² Brief review for one variable functions and curves: A (one variable) function is rule that assigns to each member x in a subset D in R 1 a unique real number denoted

More information

Exercise Guide. Published: August MecSoft Corpotation

Exercise Guide. Published: August MecSoft Corpotation VisualCAD Exercise Guide Published: August 2018 MecSoft Corpotation Copyright 1998-2018 VisualCAD 2018 Exercise Guide by Mecsoft Corporation User Notes: Contents 2 Table of Contents About this Guide 4

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. of the recommended textbook or the equivalent chapter in

More information

Calypso Construction Features. Construction Features 1

Calypso Construction Features. Construction Features 1 Calypso 1 The Construction dropdown menu contains several useful construction features that can be used to compare two other features or perform special calculations. Construction features will show up

More information

Beaumont Middle School Design Project April May 2014 Carl Lee and Craig Schroeder

Beaumont Middle School Design Project April May 2014 Carl Lee and Craig Schroeder Beaumont Middle School Design Project April May 2014 Carl Lee and Craig Schroeder 1 2 SketchUp 1. SketchUp is free, and you can download it from the website www.sketchup.com. For some K12 use, see www.sketchup.com/3dfor/k12-education.

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

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

Lecture 3 Sections 2.2, 4.4. Mon, Aug 31, 2009

Lecture 3 Sections 2.2, 4.4. Mon, Aug 31, 2009 Model s Lecture 3 Sections 2.2, 4.4 World s Eye s Clip s s s Window s Hampden-Sydney College Mon, Aug 31, 2009 Outline Model s World s Eye s Clip s s s Window s 1 2 3 Model s World s Eye s Clip s s s Window

More information

1.6 Quadric Surfaces Brief review of Conic Sections 74 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE. Figure 1.18: Parabola y = 2x 2

1.6 Quadric Surfaces Brief review of Conic Sections 74 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE. Figure 1.18: Parabola y = 2x 2 7 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE Figure 1.18: Parabola y = x 1.6 Quadric Surfaces Figure 1.19: Parabola x = y 1.6.1 Brief review of Conic Sections You may need to review conic sections for

More information

GDL Toolbox 2 Reference Manual

GDL Toolbox 2 Reference Manual Reference Manual Archi-data Ltd. Copyright 2002. New Features Reference Manual New Save GDL command Selected GDL Toolbox elements can be exported into simple GDL scripts. During the export process, the

More information

Chapter 10. Exploring Conic Sections

Chapter 10. Exploring Conic Sections Chapter 10 Exploring Conic Sections Conics A conic section is a curve formed by the intersection of a plane and a hollow cone. Each of these shapes are made by slicing the cone and observing the shape

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

Polygons and Convexity

Polygons and Convexity Geometry Week 4 Sec 2.5 to ch. 2 test Polygons and Convexity section 2.5 convex set has the property that any two of its points determine a segment contained in the set concave set a set that is not convex

More information

Topic 3-1: Introduction to Multivariate Functions (Functions of Two or More Variables) Big Ideas. The Story So Far: Notes. Notes.

Topic 3-1: Introduction to Multivariate Functions (Functions of Two or More Variables) Big Ideas. The Story So Far: Notes. Notes. Topic 3-1: Introduction to Multivariate Functions (Functions of Two or More Variables) Textbook: Section 14.1 Big Ideas The input for a multivariate function is a point. The set of all inputs is the domain

More information

Worksheet 2.1: Introduction to Multivariate Functions (Functions of Two or More Independent Variables)

Worksheet 2.1: Introduction to Multivariate Functions (Functions of Two or More Independent Variables) Boise State Math 275 (Ultman) Worksheet 2.1: Introduction to Multivariate Functions (Functions of Two or More Independent Variables) From the Toolbox (what you need from previous classes) Know the meaning

More information

Maple for Math Majors. 6. How Maple draws graphs

Maple for Math Majors. 6. How Maple draws graphs Maple for Math Majors Roger Kraft Department of Mathematics, Computer Science, and Statistics Purdue University Calumet roger@calumet.purdue.edu 6.1. Introduction 6. How Maple draws graphs By now you should

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

Chapter 6. Concept Modeling. ANSYS, Inc. Proprietary Inventory # May 11, ANSYS, Inc. All rights reserved.

Chapter 6. Concept Modeling. ANSYS, Inc. Proprietary Inventory # May 11, ANSYS, Inc. All rights reserved. Chapter 6 Concept Modeling 6-1 Contents Concept Modeling Creating Line Bodies Modifying i Line Bodies Cross Sections Cross Section Alignment Cross Section Offset Surfaces From Lines Surfaces From Sketches

More information

Draw and Classify 3-Dimensional Figures

Draw and Classify 3-Dimensional Figures Introduction to Three-Dimensional Figures Draw and Classify 3-Dimensional Figures Identify various three-dimensional figures. Course 2 Introduction to Three-Dimensional Figures Insert Lesson Title Here

More information

Suggested List of Mathematical Language. Geometry

Suggested List of Mathematical Language. Geometry Suggested List of Mathematical Language Geometry Problem Solving A additive property of equality algorithm apply constraints construct discover explore generalization inductive reasoning parameters reason

More information

Explore Solids

Explore Solids 1212.1 Explore Solids Surface Area and Volume of Solids 12.2 Surface Area of Prisms and Cylinders 12.3 Surface Area of Pyramids and Cones 12.4 Volume of Prisms and Cylinders 12.5 Volume of Pyramids and

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

Design and Communication Graphics

Design and Communication Graphics An approach to teaching and learning Design and Communication Graphics Solids in Contact Syllabus Learning Outcomes: Construct views of up to three solids having curved surfaces and/or plane surfaces in

More information

3D Design with 123D Design

3D Design with 123D Design 3D Design with 123D Design Introduction: 3D Design involves thinking and creating in 3 dimensions. x, y and z axis Working with 123D Design 123D Design is a 3D design software package from Autodesk. A

More information

GEOMETRY REVIEW PROBLEMS, Spring 2018

GEOMETRY REVIEW PROBLEMS, Spring 2018 GEOMETRY REVIEW PROBLEMS, Spring 2018 Solve problems, describe problems algebraically, and simplify numerical expressions. 1. R(-3, -2), M(-1, -8) 2. R(11, -5), M(4, -4) 3. A(5, -4), B(-45, 20) 4. A(-10,

More information

8 Solids and Surfaces

8 Solids and Surfaces 8 Solids and Surfaces Intuitively, solids are objects that have volume, that is, occupy a region of space, and are all of one piece. They have insides and outsides and generally represent real-world objects

More information

336 Geometry for computer graphics

336 Geometry for computer graphics Index A acute angle, 4 triangle, 11 addition quaternions, 33 vectors, 30 algebra matrices, 2 vectors, 29 alternate exterior angles, 4 interior angles, 4, 86 segment theorem, 183 altitude, see height altitude

More information

Multivariable Calculus

Multivariable Calculus Multivariable Calculus Chapter 10 Topics in Analytic Geometry (Optional) 1. Inclination of a line p. 5. Circles p. 4 9. Determining Conic Type p. 13. Angle between lines p. 6. Parabolas p. 5 10. Rotation

More information

Section 7.2 Volume: The Disk Method

Section 7.2 Volume: The Disk Method Section 7. Volume: The Disk Method White Board Challenge Find the volume of the following cylinder: No Calculator 6 ft 1 ft V 3 1 108 339.9 ft 3 White Board Challenge Calculate the volume V of the solid

More information

Class Generated Review Sheet for Math 213 Final

Class Generated Review Sheet for Math 213 Final Class Generated Review Sheet for Math 213 Final Key Ideas 9.1 A line segment consists of two point on a plane and all the points in between them. Complementary: The sum of the two angles is 90 degrees

More information

Solid surface modeling in AutoCAD

Solid surface modeling in AutoCAD Solid surface modeling in AutoCAD Introduction into 3D modeling Managing views of 3D model Coordinate Systems 1 3D model advantages ability to view the whole model looking inside the model collision checking

More information

CATIA V5 Parametric Surface Modeling

CATIA V5 Parametric Surface Modeling CATIA V5 Parametric Surface Modeling Version 5 Release 16 A- 1 Toolbars in A B A. Wireframe: Create 3D curves / lines/ points/ plane B. Surfaces: Create surfaces C. Operations: Join surfaces, Split & Trim

More information

Chapter 12: Pull Toy - Solids and Transforms

Chapter 12: Pull Toy - Solids and Transforms This tutorial demonstrates using solid primitives and simple transforms. You will learn how to: Enter coordinates to place points exactly. Draw a free-form curve and polygon. Create a pipe along a curve.

More information

Module 1B: Parallel-Line Flat Pattern Development of Sheet- Metal Folded Model Wrapping the 3D Space of A Truncated Right Prism

Module 1B: Parallel-Line Flat Pattern Development of Sheet- Metal Folded Model Wrapping the 3D Space of A Truncated Right Prism Inventor (5) Module 1B: 1B- 1 Module 1B: Parallel-Line Flat Pattern Development of Sheet- Metal Folded Model Wrapping the 3D Space of A Truncated Right Prism In this Module, we will learn how to create

More information

SP about Rectangular Blocks

SP about Rectangular Blocks 1 3D Measure Outcomes Recognise and draw the nets of prisms, cylinders, and cones. Solve problems about the surface area and volume of rectangular blocks, cylinders, right cones, prisms, spheres, and solids

More information

The Geometry of Solids

The Geometry of Solids CONDENSED LESSON 10.1 The Geometry of Solids In this lesson you will Learn about polyhedrons, including prisms and pyramids Learn about solids with curved surfaces, including cylinders, cones, and spheres

More information

Section 9.4. Volume and Surface Area. Copyright 2013, 2010, 2007, Pearson, Education, Inc.

Section 9.4. Volume and Surface Area. Copyright 2013, 2010, 2007, Pearson, Education, Inc. Section 9.4 Volume and Surface Area What You Will Learn Volume Surface Area 9.4-2 Volume Volume is the measure of the capacity of a three-dimensional figure. It is the amount of material you can put inside

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

Module 4A: Creating the 3D Model of Right and Oblique Pyramids

Module 4A: Creating the 3D Model of Right and Oblique Pyramids Inventor (5) Module 4A: 4A- 1 Module 4A: Creating the 3D Model of Right and Oblique Pyramids In Module 4A, we will learn how to create 3D solid models of right-axis and oblique-axis pyramid (regular or

More information

Practice Test - Chapter 7

Practice Test - Chapter 7 Write an equation for an ellipse with each set of characteristics. 1. vertices (7, 4), ( 3, 4); foci (6, 4), ( 2, 4) The distance between the vertices is 2a. 2a = 7 ( 3) a = 5; a 2 = 25 The distance between

More information

SPECIAL TECHNIQUES-II

SPECIAL TECHNIQUES-II SPECIAL TECHNIQUES-II Lecture 19: Electromagnetic Theory Professor D. K. Ghosh, Physics Department, I.I.T., Bombay Method of Images for a spherical conductor Example :A dipole near aconducting sphere The

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

Perspective Mappings. Contents

Perspective Mappings. Contents Perspective Mappings David Eberly, Geometric Tools, Redmond WA 98052 https://www.geometrictools.com/ This work is licensed under the Creative Commons Attribution 4.0 International License. To view a copy

More information

ARCHITECTURE & GAMES. A is for Architect Simple Mass Modeling FORM & SPACE. Industry Careers Framework. Applied. Getting Started.

ARCHITECTURE & GAMES. A is for Architect Simple Mass Modeling FORM & SPACE. Industry Careers Framework. Applied. Getting Started. A is for Architect Simple Mass Modeling One of the first introductions to form and space usually comes at a very early age. As an infant, you might have played with building blocks to help hone your motor

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

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

SOLIDWORKS 2016: A Power Guide for Beginners and Intermediate Users

SOLIDWORKS 2016: A Power Guide for Beginners and Intermediate Users SOLIDWORKS 2016: A Power Guide for Beginners and Intermediate Users The premium provider of learning products and solutions www.cadartifex.com Table of Contents Dedication... 3 Preface... 15 Part 1. Introducing

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

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

S8.6 Volume. Section 1. Surface area of cuboids: Q1. Work out the surface area of each cuboid shown below:

S8.6 Volume. Section 1. Surface area of cuboids: Q1. Work out the surface area of each cuboid shown below: Things to Learn (Key words, Notation & Formulae) Complete from your notes Radius- Diameter- Surface Area- Volume- Capacity- Prism- Cross-section- Surface area of a prism- Surface area of a cylinder- Volume

More information

Cylinders and Quadric Surfaces A cylinder is a three dimensional shape that is determined by

Cylinders and Quadric Surfaces A cylinder is a three dimensional shape that is determined by Cylinders and Quadric Surfaces A cylinder is a three dimensional shape that is determined by a two dimensional (plane) curve C in three dimensional space a line L in a plane not parallel to the one in

More information

3D Modeler Creating Custom myhouse Symbols

3D Modeler Creating Custom myhouse Symbols 3D Modeler Creating Custom myhouse Symbols myhouse includes a large number of predrawn symbols. For most designs and floorplans, these should be sufficient. For plans that require that special table, bed,

More information

General Pyramids. General Cone. Right Circular Cone = "Cone"

General Pyramids. General Cone. Right Circular Cone = Cone Aim #6: What are general pyramids and cones? CC Geometry H Do Now: Put the images shown below into the groups (A,B,C and D) based on their properties. Group A: General Cylinders Group B: Prisms Group C:

More information

9.3 Hyperbolas and Rotation of Conics

9.3 Hyperbolas and Rotation of Conics 9.3 Hyperbolas and Rotation of Conics Copyright Cengage Learning. All rights reserved. What You Should Learn Write equations of hyperbolas in standard form. Find asymptotes of and graph hyperbolas. Use

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

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

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

Chapter 24. Creating Surfaces for Displaying and Reporting Data

Chapter 24. Creating Surfaces for Displaying and Reporting Data Chapter 24. Creating Surfaces for Displaying and Reporting Data FLUENT allows you to select portions of the domain to be used for visualizing the flow field. The domain portions are called surfaces, and

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

Unit 12 Topics in Analytic Geometry - Classwork

Unit 12 Topics in Analytic Geometry - Classwork Unit 1 Topics in Analytic Geometry - Classwork Back in Unit 7, we delved into the algebra and geometry of lines. We showed that lines can be written in several forms: a) the general form: Ax + By + C =

More information

Glossary of dictionary terms in the AP geometry units

Glossary of dictionary terms in the AP geometry units Glossary of dictionary terms in the AP geometry units affine linear equation: an equation in which both sides are sums of terms that are either a number times y or a number times x or just a number [SlL2-D5]

More information

Learning Task: Exploring Reflections and Rotations

Learning Task: Exploring Reflections and Rotations Learning Task: Exploring Reflections and Rotations Name Date Mathematical Goals Develop and demonstrate an understanding of reflections and rotations of figures in general and on a coordinate plane. Essential

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

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

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

120 cm respectively. Its base is a rectangle with

120 cm respectively. Its base is a rectangle with [ In this exercise, give your answers correct to significant figures if necessary. ] 1. The base of a pyramid is an isosceles right-angled triangle where the lengths of the two equal sides are. The height

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

Motic Images Plus 3.0 ML Software. Windows OS User Manual

Motic Images Plus 3.0 ML Software. Windows OS User Manual Motic Images Plus 3.0 ML Software Windows OS User Manual Motic Images Plus 3.0 ML Software Windows OS User Manual CONTENTS (Linked) Introduction 05 Menus and tools 05 File 06 New 06 Open 07 Save 07 Save

More information

CS 112 The Rendering Pipeline. Slide 1

CS 112 The Rendering Pipeline. Slide 1 CS 112 The Rendering Pipeline Slide 1 Rendering Pipeline n Input 3D Object/Scene Representation n Output An image of the input object/scene n Stages (for POLYGON pipeline) n Model view Transformation n

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

Rectangular prism. The two bases of a prism. bases

Rectangular prism. The two bases of a prism. bases Page 1 of 8 9.1 Solid Figures Goal Identify and name solid figures. Key Words solid polyhedron base face edge The three-dimensional shapes on this page are examples of solid figures, or solids. When a

More information

Math 32A Graphs and Contour Worksheet

Math 32A Graphs and Contour Worksheet Math 32 Graphs and ontour Worksheet Sections 5., 5.4 November 8, 208 This worksheet helps you practice matching graphs with its equations. Here are some general techniques and tricks that may help: (i)

More information

S3 (3.1) Volume.notebook March 02, 2016

S3 (3.1) Volume.notebook March 02, 2016 Daily Practice 22.2.2016 Q1. Multiply out and simplify (3x - 2)(x 2-7x + 3) Q2. Factorise fully 3x 2-75 L.I: Today we will be revising how to find the volume of a prism. Q3. Calculate the value of a house

More information

Let a line l and a point P not lying on it be given. By using properties of a transversal and parallel lines, a line which passes through the point P

Let a line l and a point P not lying on it be given. By using properties of a transversal and parallel lines, a line which passes through the point P Let a line l and a point P not lying on it be given. By using properties of a transversal and parallel lines, a line which passes through the point P and parallel to l, can be drawn. A triangle can be

More information

Nose Cone. Chapter 4. Rocket 3D Print. A. Revolve. Step 1. Click File Menu > New, click Part and OK. SOLIDWORKS 16 Nose Cone ROCKET 3D PRINT Page 4-1

Nose Cone. Chapter 4. Rocket 3D Print. A. Revolve. Step 1. Click File Menu > New, click Part and OK. SOLIDWORKS 16 Nose Cone ROCKET 3D PRINT Page 4-1 Chapter 4 Rocket 3D Print Nose Cone A. Revolve. Step 1. Click File Menu > New, click Part and OK. Step 2. Click Front Plane in the Feature Manager and click Sketch on the content toolbar, Fig. 1. Step

More information

DC2 File Format. 1. Header line 2. Entity line 3. Point line 4. String line

DC2 File Format. 1. Header line 2. Entity line 3. Point line 4. String line DC2 File Format The DesignCAD DC2 drawing file is an ASCII file, with the data present in character format. Each "record" in the file is actually a line in a text file. There are four types of records,

More information

Create a Rubber Duck. This tutorial shows you how to. Create simple surfaces. Rebuild a surface. Edit surface control points. Draw and project curves

Create a Rubber Duck. This tutorial shows you how to. Create simple surfaces. Rebuild a surface. Edit surface control points. Draw and project curves Page 1 of 24 Create a Rubber Duck This exercise focuses on the free form, squishy aspect. Unlike the flashlight model, the exact size and placement of the objects is not critical. The overall form is the

More information

14.5 Directional Derivatives and the Gradient Vector

14.5 Directional Derivatives and the Gradient Vector 14.5 Directional Derivatives and the Gradient Vector 1. Directional Derivatives. Recall z = f (x, y) and the partial derivatives f x and f y are defined as f (x 0 + h, y 0 ) f (x 0, y 0 ) f x (x 0, y 0

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