Geometria Computacional 2D

Size: px
Start display at page:

Download "Geometria Computacional 2D"

Transcription

1 Ole Peter Smith, IME, UFG EMSL '10 15/10/2010/2010 UFU, Uberlândia-MG

2 The Road to Knowledge? Simple: Err, and Err, and Err again But Less, and Less, and Less Piet Hein Real programmers can write assembly code in any language Larry Wall TIMTOWTDI: There is more than one Way to Do It! Larry Wall

3 Curiosity Inteligência: Potencial Sabedoria: Disciplina & Curiosidade Graphics Programming Math & Art Visualization - Animation The Road to Wisdom? Simple, my Friend: Err, Err and Err Again... But Less and Less and Less Programming vs. Medicine... Piet Hein

4 The Mathematics Geometria Analítica 2D - 3D Planos - Curvas - Superfícies Euclidian Álgebra Linear Matrizes - Transformações - AutoVetor/Valor Geometria Diferencial Cinemática Análise Numérica Ferramenta Geometria Projetiva Noneuclidian Fractais

5 Implementation Language: Perl, PHP, C/C++, Java,... Graphics Library: GD - Others Ex: Apache - HTML - PHP - Browser O mais Importante não é Saber de Tudo O mais Importante Saber onde Procurar! Limite da Minha Pesquisa Pessoal: Minha Própria Inteligência, Disciplina e Curiosidade

6 Estrutura: $image=createimageobject; $image->drawsomething; $image->imageline10,10,390,390; $image->imagearcfilled200,200,10,10; $image->writeimage; $image->close; Pixels - Coordenadas

7 Image Formats: PNG - GIF - JPG -... Animated GIF - MPG Resolution: X, Y = 800x600 Physical: [x min, x max ]x[y min, y max ] Canonical: [0, 1]x[0, 1] X, Y = 0, 0 é Upper Left Linear Transformation: X Y A X = A x x = A 1 X a = A x = 11 a 12 x = x min y min a 21 a 22 0 = Y, A y x max y max a 11 x + a 12 y a 21 x + a 22 y = X 0

8 Image A x min x max y min y max = 0 X Y 0 A = 0 X Y 0 X 1 Tarefa: Inversa de Matriz Regular det 0 - Gauss - LU Tarefa: Imagem de Aplicação Linear: for $i=0;$i<$dim;$i++ { $X[$i]=0.0; for $j=0;$j<$dim;$j++ { $X[$i]+=$A[$i][$j]*$x[$j]; } $X[i]=$sum }

9 Dot Product Measure: Lenths and Angles x = x 1,..., x n, y = y 1,..., y n x y = x 1 y x n y n = $dot=0.0; for $i=0;$i<$n;$i++ { $dot+=$x[$i]*$y[$i]; } n i=1 x i y i = x T y Length: x = x x Angle: cos a, b = a b a b

10 Plane Curves Equation: F x, y = 0 x Function: rx = f x Parametrization: rt = xt yt, t 1 t t 2 $dt=$t2-$t1/$n-1; for $i=0,$t=$t1;$i<$n;$i++ { array_push$ps,arrayx$t,y$t; } Building Stones: Line Segments - ArcFilled

11 Line Line Segment: p 1 = x 1, y 2 e p 2 = x 2, y 2. r = p 2 p 1. Versor de r = r x, r y : n = r = r y, r x Parametrization/Convex Combination: x y = x 1 y 1 + t x 2 x 1 y 2 y 1, 0 t 1 Normal: a b = ry r x Equation: ax x 1 + by y 1 = 0 ax + by = ax 1 + by 1 = c

12 Circle/Ellipse Center: p c = x c, y c, half-axes: a, b a = b: Circle Equation: x x c a 2 + y y c b 2 = 1 Parametrization: xt yt = x c + a cos t y c + b sin t 0 t 2π

13 Hiperbola Center: p c = x c, y c e halfaxes, a, b Equation: x x c a 2 y y c Parametrization: xt = yt b x c + a cosh t y c + b sinh t 2 = ±1 α t α Funções Hiperbólicas cosh t = et + e t sinh t = et e t 2 2 cosh 2 t sinh 2 t = 1

14 Cinematics Position: rt = xt yt Tangent & Velocity: r x t = t y vt = r t t r t = Unit Tangent & Normal: tt = 1 x t vt y t Acceleration:, nt = tt = 1 vt r t = x t y t Arc Length: st st 0 = t t 0 x t 2 + y t 2 dt 1 x t 2 + y t 2 y t x t,

15 Curvature Oscillating Circe: Same tangent & Accelleration ρ = [r tr t] x t 2 + y t 23 Radius of Oscillating Circe, ρ: Curvature: ρt = [r tr t] x t 2 + y t 23 κt = 1 ρt Curvature Vector & Center of Curvature Curvature: p c t = rt + ρtnt

16 Transformations Linear: f x = Ax, f αx + βy = αf x + βf y If det A 0: f 1 y = A 1 y An: f x = Ax + b Rotate Coordinate System: x = Dx, D 1 = D T D ortogonal: Preserves Lengths and Angles: D x D x = x x

17 Scaling Scaling resp. Origin, factor λ R around x-axis: x λ 0 λx = x = = Lλ x 0 1 y λ = 1: Identity, I λ = 1: Reection in y axis < Rev. Orient. λ = 0: Projection onto y axis λ > 1: Expansion 0 < λ < 1: Dilatation Bidirectional Scaling: x λx 0 λx x = x = = Lλ 0 λ y λ x, λ y x y y λx 0 0 λ y = λx λ y

18 Translation & Rotation Translation, a - Não Linear: x = t + x Rotation resp. Origin, Angle θ - Linear: x cos θ sin θ = x = Dθ x, sin θ cos θ Dθ 1 = D θ = Dθ T

19 Projetive Geometry Camera at Origin, Looking at 0, 0, 1 Translation in non-linear... That Really Sucks! Remedy: Drawing plane is z = 1 instead of z = 0. Point in R 2 : x, y. Point in R 3 : x, y, 1. Do Something to Point Point in R 3 : x, y, z. Point in R 2, z 0: x/z, y/z. Point in Innity: z = 0: x, y.

20 Projetive, Translation Translation: Tt = 1 0 t x 0 1 t y x y 1 = x + t x y + t y 1 Inverse: 1 0 t x 0 1 t y x y 1 = x t x y t y 1 Tt 1 = T t

21 Projetive, Rotation Rotation: Rθ x y 1 = cos θ sin θ 0 sin θ cos θ Rθ 1 = R θ = Rθ T Rotation, Angle θ, Resp. to p = p x, p y : 1: Translation to p: Tp 2: Rotation by new Origin: Rθ 3: Translation back: p T p = Tp 1 Apply from Right: R θ = Tp 1 RθTp Similar Matrices: B = D 1 AD Describe same Transformation in Dierent Bases x y 1

22 Scaling Unidirectional Scaling with Resp. to y-axis: λ Unidirectional Scaling with Resp. to e = cos θ, sin θ: Coordinate System: e, ê cos θ sin θ Dθ = sin θ cos θ, x old = Dθx new x new = Dθ 1 x old 1: Change Coordinate System: cos θ sin θ 0 Rθ = sin θ cos θ

23 Scaling 2: Scale with Resp. to y-axis Lλ = λ : Rotate back R θ = Rθ 1 = cos θ sin θ 0 sin θ cos θ Composition from right: Again: Similar Matrices Rθ 1 LλRθ

24 Animation $nimages=79; $dt=2.0* /$nimages; system"/bin/rm Wheel*.gif"; for $t=0.0,$i=0;$i<$nimages;$i++ { $image = ImageCreate... $center=array3.0,3.0; DrawWheel$image,200,5,$center,0.2,2.0,$color,$t; imagegif$image,"wheel.$i.gif"; $t+=$dt; } //Merda! PHP nao tem suporte para GIF animado... system"/usr/bin/convert -delay 2 -loop 0 ". "Wheel.*.gif Wheel.gif";

25 Given: Fixed Curve X t, Y t, 0 t 1. Circle to Roll, Radius r Mark Point Initially: Point in X 0, Y 0. Roll Circle without Sliding: Cycloid: Circle on Line st = rθ Epicycloid: Circle Outside Circle Hypocycloid: Circle Inside Circle Trochoid, Epitrochoid, Hypotrochoid,... Oloid

26 Cycloid

27 Trochoid

28 Trochoid

29 Epicycloid

30 Hypocycloid

31 Oloid

Practice Problems for Exam 3 (Solutions) 1. Let F(x, y) = xyi+(y 3x)j, and let C be the curve r(t) = ti+(3t t 2 )j for 0 t 2. Compute F dr.

Practice Problems for Exam 3 (Solutions) 1. Let F(x, y) = xyi+(y 3x)j, and let C be the curve r(t) = ti+(3t t 2 )j for 0 t 2. Compute F dr. 1. Let F(x, y) xyi+(y 3x)j, and let be the curve r(t) ti+(3t t 2 )j for t 2. ompute F dr. Solution. F dr b a 2 2 F(r(t)) r (t) dt t(3t t 2 ), 3t t 2 3t 1, 3 2t dt t 3 dt 1 2 4 t4 4. 2. Evaluate the line

More information

MATH Final Review

MATH Final Review MATH 1592 - Final Review 1 Chapter 7 1.1 Main Topics 1. Integration techniques: Fitting integrands to basic rules on page 485. Integration by parts, Theorem 7.1 on page 488. Guidelines for trigonometric

More information

Name: SOLUTIONS Date: 11/9/2017. M20550 Calculus III Tutorial Worksheet 8

Name: SOLUTIONS Date: 11/9/2017. M20550 Calculus III Tutorial Worksheet 8 Name: SOLUTIONS Date: /9/7 M55 alculus III Tutorial Worksheet 8. ompute R da where R is the region bounded by x + xy + y 8 using the change of variables given by x u + v and y v. Solution: We know R is

More information

MTHE 227 Problem Set 2 Solutions

MTHE 227 Problem Set 2 Solutions MTHE 7 Problem Set Solutions 1 (Great Circles). The intersection of a sphere with a plane passing through its center is called a great circle. Let Γ be the great circle that is the intersection of the

More information

Solutions to old Exam 3 problems

Solutions to old Exam 3 problems Solutions to old Exam 3 problems Hi students! I am putting this version of my review for the Final exam review here on the web site, place and time to be announced. Enjoy!! Best, Bill Meeks PS. There are

More information

3 = arccos. A a and b are parallel, B a and b are perpendicular, C a and b are normalized, or D this is always true.

3 = arccos. A a and b are parallel, B a and b are perpendicular, C a and b are normalized, or D this is always true. Math 210-101 Test #1 Sept. 16 th, 2016 Name: Answer Key Be sure to show your work! 1. (20 points) Vector Basics: Let v = 1, 2,, w = 1, 2, 2, and u = 2, 1, 1. (a) Find the area of a parallelogram spanned

More information

Math 461 Homework 8. Paul Hacking. November 27, 2018

Math 461 Homework 8. Paul Hacking. November 27, 2018 Math 461 Homework 8 Paul Hacking November 27, 2018 (1) Let S 2 = {(x, y, z) x 2 + y 2 + z 2 = 1} R 3 be the sphere with center the origin and radius 1. Let N = (0, 0, 1) S 2 be the north pole. Let F :

More information

Math 461 Homework 8 Paul Hacking November 27, 2018

Math 461 Homework 8 Paul Hacking November 27, 2018 (1) Let Math 461 Homework 8 Paul Hacking November 27, 2018 S 2 = {(x, y, z) x 2 +y 2 +z 2 = 1} R 3 be the sphere with center the origin and radius 1. Let N = (0, 0, 1) S 2 be the north pole. Let F : S

More information

10.1 Curves Defined by Parametric Equation

10.1 Curves Defined by Parametric Equation 10.1 Curves Defined by Parametric Equation 1. Imagine that a particle moves along the curve C shown below. It is impossible to describe C by an equation of the form y = f (x) because C fails the Vertical

More information

Practice Final Solutions

Practice Final Solutions Practice Final Solutions Math 1, Fall 17 Problem 1. Find a parameterization for the given curve, including bounds on the parameter t. Part a) The ellipse in R whose major axis has endpoints, ) and 6, )

More information

Exercises for Multivariable Differential Calculus XM521

Exercises for Multivariable Differential Calculus XM521 This document lists all the exercises for XM521. The Type I (True/False) exercises will be given, and should be answered, online immediately following each lecture. The Type III exercises are to be done

More information

SOLUTIONS TO SECOND PRACTICE EXAM Math 21a, Spring 2003

SOLUTIONS TO SECOND PRACTICE EXAM Math 21a, Spring 2003 SOLUTIONS TO SECOND PRACTICE EXAM Math a, Spring 3 Problem ) ( points) Circle for each of the questions the correct letter. No justifications are needed. Your score will be C W where C is the number of

More information

1.1 Single Variable Calculus versus Multivariable Calculus Rectangular Coordinate Systems... 4

1.1 Single Variable Calculus versus Multivariable Calculus Rectangular Coordinate Systems... 4 MATH2202 Notebook 1 Fall 2015/2016 prepared by Professor Jenny Baglivo Contents 1 MATH2202 Notebook 1 3 1.1 Single Variable Calculus versus Multivariable Calculus................... 3 1.2 Rectangular Coordinate

More information

MATH 228: Calculus III (FALL 2016) Sample Problems for FINAL EXAM SOLUTIONS

MATH 228: Calculus III (FALL 2016) Sample Problems for FINAL EXAM SOLUTIONS MATH 228: Calculus III (FALL 216) Sample Problems for FINAL EXAM SOLUTIONS MATH 228 Page 2 Problem 1. (2pts) Evaluate the line integral C xy dx + (x + y) dy along the parabola y x2 from ( 1, 1) to (2,

More information

(1) Recap of Differential Calculus and Integral Calculus (2) Preview of Calculus in three dimensional space (3) Tools for Calculus 3

(1) Recap of Differential Calculus and Integral Calculus (2) Preview of Calculus in three dimensional space (3) Tools for Calculus 3 Math 127 Introduction and Review (1) Recap of Differential Calculus and Integral Calculus (2) Preview of Calculus in three dimensional space (3) Tools for Calculus 3 MATH 127 Introduction to Calculus III

More information

MA3D9. Geometry of curves and surfaces. T (s) = κ(s)n(s),

MA3D9. Geometry of curves and surfaces. T (s) = κ(s)n(s), MA3D9. Geometry of 2. Planar curves. Let : I R 2 be a curve parameterised by arc-length. Given s I, let T(s) = (s) be the unit tangent. Let N(s) be the unit normal obtained by rotating T(s) through π/2

More information

MATH 2433 Homework 1

MATH 2433 Homework 1 MATH 433 Homework 1 1. The sequence (a i ) is defined recursively by a 1 = 4 a i+1 = 3a i find a closed formula for a i in terms of i.. In class we showed that the Fibonacci sequence (a i ) defined by

More information

(b) Find the range of h(x, y) (5) Use the definition of continuity to explain whether or not the function f(x, y) is continuous at (0, 0)

(b) Find the range of h(x, y) (5) Use the definition of continuity to explain whether or not the function f(x, y) is continuous at (0, 0) eview Exam Math 43 Name Id ead each question carefully. Avoid simple mistakes. Put a box around the final answer to a question (use the back of the page if necessary). For full credit you must show your

More information

MATH 280 Multivariate Calculus Fall Integrating a vector field over a curve

MATH 280 Multivariate Calculus Fall Integrating a vector field over a curve MATH 280 Multivariate alculus Fall 2012 Definition Integrating a vector field over a curve We are given a vector field F and an oriented curve in the domain of F as shown in the figure on the left below.

More information

Tangent and Normal Vector - (11.5)

Tangent and Normal Vector - (11.5) Tangent and Normal Vector - (.5). Principal Unit Normal Vector Let C be the curve traced out by the vector-valued function rt vector T t r r t t is the unit tangent vector to the curve C. Now define N

More information

MATH 32A: MIDTERM 1 REVIEW. 1. Vectors. v v = 1 22

MATH 32A: MIDTERM 1 REVIEW. 1. Vectors. v v = 1 22 MATH 3A: MIDTERM 1 REVIEW JOE HUGHES 1. Let v = 3,, 3. a. Find e v. Solution: v = 9 + 4 + 9 =, so 1. Vectors e v = 1 v v = 1 3,, 3 b. Find the vectors parallel to v which lie on the sphere of radius two

More information

16.2 Line Integrals. Lukas Geyer. M273, Fall Montana State University. Lukas Geyer (MSU) 16.2 Line Integrals M273, Fall / 21

16.2 Line Integrals. Lukas Geyer. M273, Fall Montana State University. Lukas Geyer (MSU) 16.2 Line Integrals M273, Fall / 21 16.2 Line Integrals Lukas Geyer Montana State University M273, Fall 211 Lukas Geyer (MSU) 16.2 Line Integrals M273, Fall 211 1 / 21 Scalar Line Integrals Definition f (x) ds = lim { s i } N f (P i ) s

More information

SOME PROBLEMS YOU SHOULD BE ABLE TO DO

SOME PROBLEMS YOU SHOULD BE ABLE TO DO OME PROBLEM YOU HOULD BE ABLE TO DO I ve attempted to make a list of the main calculations you should be ready for on the exam, and included a handful of the more important formulas. There are no examples

More information

Math Vector Calculus II

Math Vector Calculus II Math 255 - Vector Calculus II Review Notes Vectors We assume the reader is familiar with all the basic concepts regarding vectors and vector arithmetic, such as addition/subtraction of vectors in R n,

More information

MATH 317 Fall 2016 Assignment 5

MATH 317 Fall 2016 Assignment 5 MATH 37 Fall 26 Assignment 5 6.3, 6.4. ( 6.3) etermine whether F(x, y) e x sin y îı + e x cos y ĵj is a conservative vector field. If it is, find a function f such that F f. enote F (P, Q). We have Q x

More information

Mathematics (Course B) Lent Term 2005 Examples Sheet 2

Mathematics (Course B) Lent Term 2005 Examples Sheet 2 N12d Natural Sciences, Part IA Dr M. G. Worster Mathematics (Course B) Lent Term 2005 Examples Sheet 2 Please communicate any errors in this sheet to Dr Worster at M.G.Worster@damtp.cam.ac.uk. Note that

More information

(a) The points (3, 1, 2) and ( 1, 3, 4) are the endpoints of a diameter of a sphere.

(a) The points (3, 1, 2) and ( 1, 3, 4) are the endpoints of a diameter of a sphere. MATH 4 FINAL EXAM REVIEW QUESTIONS Problem. a) The points,, ) and,, 4) are the endpoints of a diameter of a sphere. i) Determine the center and radius of the sphere. ii) Find an equation for the sphere.

More information

MA 351 Fall 2007 Exam #1 Review Solutions 1

MA 351 Fall 2007 Exam #1 Review Solutions 1 MA 35 Fall 27 Exam # Review Solutions THERE MAY BE TYPOS in these solutions. Please let me know if you find any.. Consider the two surfaces ρ 3 csc θ in spherical coordinates and r 3 in cylindrical coordinates.

More information

x + ye z2 + ze y2, y + xe z2 + ze x2, z and where T is the

x + ye z2 + ze y2, y + xe z2 + ze x2, z and where T is the 1.(8pts) Find F ds where F = x + ye z + ze y, y + xe z + ze x, z and where T is the T surface in the pictures. (The two pictures are two views of the same surface.) The boundary of T is the unit circle

More information

Parametric Functions and Vector Functions (BC Only)

Parametric Functions and Vector Functions (BC Only) Parametric Functions and Vector Functions (BC Only) Parametric Functions Parametric functions are another way of viewing functions. This time, the values of x and y are both dependent on another independent

More information

JUST THE MATHS UNIT NUMBER INTEGRATION APPLICATIONS 10 (Second moments of an arc) A.J.Hobson

JUST THE MATHS UNIT NUMBER INTEGRATION APPLICATIONS 10 (Second moments of an arc) A.J.Hobson JUST THE MATHS UNIT NUMBER 13.1 INTEGRATION APPLICATIONS 1 (Second moments of an arc) by A.J.Hobson 13.1.1 Introduction 13.1. The second moment of an arc about the y-axis 13.1.3 The second moment of an

More information

Curves - A lengthy story

Curves - A lengthy story MATH 2401 - Harrell Curves - A lengthy story Lecture 4 Copyright 2007 by Evans M. Harrell II. Reminder What a lonely archive! Who in the cast of characters might show up on the test? Curves r(t), velocity

More information

Calculus III. Math 233 Spring Final exam May 3rd. Suggested solutions

Calculus III. Math 233 Spring Final exam May 3rd. Suggested solutions alculus III Math 33 pring 7 Final exam May 3rd. uggested solutions This exam contains twenty problems numbered 1 through. All problems are multiple choice problems, and each counts 5% of your total score.

More information

CHAPTER 6 VECTOR CALCULUS. We ve spent a lot of time so far just looking at all the different ways you can graph

CHAPTER 6 VECTOR CALCULUS. We ve spent a lot of time so far just looking at all the different ways you can graph CHAPTER 6 VECTOR CALCULUS We ve spent a lot of time so far just looking at all the different ways you can graph things and describe things in three dimensions, and it certainly seems like there is a lot

More information

APPM 2350, Summer 2018: Exam 1 June 15, 2018

APPM 2350, Summer 2018: Exam 1 June 15, 2018 APPM 2350, Summer 2018: Exam 1 June 15, 2018 Instructions: Please show all of your work and make your methods and reasoning clear. Answers out of the blue with no supporting work will receive no credit

More information

1 + f 2 x + f 2 y dy dx, where f(x, y) = 2 + 3x + 4y, is

1 + f 2 x + f 2 y dy dx, where f(x, y) = 2 + 3x + 4y, is 1. The value of the double integral (a) 15 26 (b) 15 8 (c) 75 (d) 105 26 5 4 0 1 1 + f 2 x + f 2 y dy dx, where f(x, y) = 2 + 3x + 4y, is 2. What is the value of the double integral interchange the order

More information

MTH 277 Test 4 review sheet Chapter , 14.7, 14.8 Chalmeta

MTH 277 Test 4 review sheet Chapter , 14.7, 14.8 Chalmeta MTH 77 Test 4 review sheet Chapter 13.1-13.4, 14.7, 14.8 Chalmeta Multiple Choice 1. Let r(t) = 3 sin t i + 3 cos t j + αt k. What value of α gives an arc length of 5 from t = 0 to t = 1? (a) 6 (b) 5 (c)

More information

BROWN UNIVERSITY MATH 0350 MIDTERM 19 OCTOBER 2017 INSTRUCTOR: SAMUEL S. WATSON

BROWN UNIVERSITY MATH 0350 MIDTERM 19 OCTOBER 2017 INSTRUCTOR: SAMUEL S. WATSON BROWN UNIVERSITY MATH 0350 MIDTERM 19 OCTOBER 2017 INSTRUCTOR: SAMUEL S. WATSON Name: Problem 1 In this problem, we will use vectors to show that an angle formed by connecting a point on a circle to two

More information

Practice Problems for the Final Exam

Practice Problems for the Final Exam Math 114 Spring 2017 Practice Problems for the Final Exam 1. The planes 3x + 2y + z = 6 and x + y = 2 intersect in a line l. Find the distance from the origin to l. (Answer: 24 3 ) 2. Find the area of

More information

Math 234. What you should know on day one. August 28, You should be able to use general principles like. x = cos t, y = sin t, 0 t π.

Math 234. What you should know on day one. August 28, You should be able to use general principles like. x = cos t, y = sin t, 0 t π. Math 234 What you should know on day one August 28, 2001 1 You should be able to use general principles like Length = ds, Area = da, Volume = dv For example the length of the semi circle x = cos t, y =

More information

Tangent and Normal Vector - (11.5)

Tangent and Normal Vector - (11.5) Tangent and Normal Vector - (.5). Principal Unit Normal Vector Let C be the curve traced out bythe vector-valued function r!!t # f!t, g!t, h!t $. The vector T!!t r! % r! %!t!t is the unit tangent vector

More information

Math 273 Solutions to Review Problems for Exam 1

Math 273 Solutions to Review Problems for Exam 1 Math 7 Solution to Review Problem for Exam True or Fale? Circle ONE anwer for each Hint: For effective tudy, explain why if true and give a counterexample if fale (a) T or F : If a b and b c, then a c

More information

10.3 Parametric Equations. 1 Math 1432 Dr. Almus

10.3 Parametric Equations. 1 Math 1432 Dr. Almus Math 1432 DAY 39 Dr. Melahat Almus almus@math.uh.edu OFFICE HOURS (212 PGH) MW12-1:30pm, F:12-1pm. If you email me, please mention the course (1432) in the subject line. Check your CASA account for Quiz

More information

EXAM 2 ANSWERS AND SOLUTIONS, MATH 233 WEDNESDAY, OCTOBER 18, 2000

EXAM 2 ANSWERS AND SOLUTIONS, MATH 233 WEDNESDAY, OCTOBER 18, 2000 EXAM 2 ANSWERS AND SOLUTIONS, MATH 233 WEDNESDAY, OCTOBER 18, 2000 This examination has 30 multiple choice questions. Problems are worth one point apiece, for a total of 30 points for the whole examination.

More information

Exam 1 Review SOLUTIONS

Exam 1 Review SOLUTIONS 1. True or False (and give a short reason): Exam 1 Review SOLUTIONS (a) If the parametric curve x = f(t), y = g(t) satisfies g (1) = 0, then it has a horizontal tangent line when t = 1. FALSE: To make

More information

Geometry and Motion Selected answers to Sections A and C Dwight Barkley 2016

Geometry and Motion Selected answers to Sections A and C Dwight Barkley 2016 MA34 Geometry and Motion Selected answers to Sections A and C Dwight Barkley 26 Example Sheet d n+ = d n cot θ n r θ n r = Θθ n i. 2. 3. 4. Possible answers include: and with opposite orientation: 5..

More information

Contents. MATH 32B-2 (18W) (L) G. Liu / (TA) A. Zhou Calculus of Several Variables. 1 Multiple Integrals 3. 2 Vector Fields 9

Contents. MATH 32B-2 (18W) (L) G. Liu / (TA) A. Zhou Calculus of Several Variables. 1 Multiple Integrals 3. 2 Vector Fields 9 MATH 32B-2 (8W) (L) G. Liu / (TA) A. Zhou Calculus of Several Variables Contents Multiple Integrals 3 2 Vector Fields 9 3 Line and Surface Integrals 5 4 The Classical Integral Theorems 9 MATH 32B-2 (8W)

More information

e x2 dxdy, e x2 da, e x2 x 3 dx = e

e x2 dxdy, e x2 da, e x2 x 3 dx = e STS26-4 Calculus II: The fourth exam Dec 15, 214 Please show all your work! Answers without supporting work will be not given credit. Write answers in spaces provided. You have 1 hour and 2minutes to complete

More information

Volumes of Solids of Revolution Lecture #6 a

Volumes of Solids of Revolution Lecture #6 a Volumes of Solids of Revolution Lecture #6 a Sphereoid Parabaloid Hyperboloid Whateveroid Volumes Calculating 3-D Space an Object Occupies Take a cross-sectional slice. Compute the area of the slice. Multiply

More information

5.2 The Levi-Civita Connection on Surfaces. 1 Parallel transport of vector fields on a surface M

5.2 The Levi-Civita Connection on Surfaces. 1 Parallel transport of vector fields on a surface M 5.2 The Levi-Civita Connection on Surfaces In this section, we define the parallel transport of vector fields on a surface M, and then we introduce the concept of the Levi-Civita connection, which is also

More information

DO NOT BEGIN THIS TEST UNTIL INSTRUCTED TO START

DO NOT BEGIN THIS TEST UNTIL INSTRUCTED TO START Math 265 Student name: KEY Final Exam Fall 23 Instructor & Section: This test is closed book and closed notes. A (graphing) calculator is allowed for this test but cannot also be a communication device

More information

Faculty of Engineering, Mathematics and Science School of Mathematics

Faculty of Engineering, Mathematics and Science School of Mathematics Faculty of Engineering, Mathematics and Science School of Mathematics GROUPS Trinity Term 06 MA3: Advanced Calculus SAMPLE EXAM, Solutions DAY PLACE TIME Prof. Larry Rolen Instructions to Candidates: Attempt

More information

BROWN UNIVERSITY MATH 0350 MIDTERM 19 OCTOBER 2017 INSTRUCTOR: SAMUEL S. WATSON. a b. Name: Problem 1

BROWN UNIVERSITY MATH 0350 MIDTERM 19 OCTOBER 2017 INSTRUCTOR: SAMUEL S. WATSON. a b. Name: Problem 1 BROWN UNIVERSITY MATH 0350 MIDTERM 19 OCTOBER 2017 INSTRUCTOR: SAMUEL S. WATSON Name: Problem 1 In this problem, we will use vectors to show that an angle formed by connecting a point on a circle to two

More information

0, such that. all. for all. 0, there exists. Name: Continuity. Limits and. calculus. the definitionn. satisfying. limit. However, is the limit of its

0, such that. all. for all. 0, there exists. Name: Continuity. Limits and. calculus. the definitionn. satisfying. limit. However, is the limit of its L Marizzaa A Bailey Multivariable andd Vector Calculus Name: Limits and Continuity Limits and Continuity We have previously defined limit in for single variable functions, but how do we generalize this

More information

Practice problems for Exam 1. a b = (2) 2 + (4) 2 + ( 3) 2 = 29

Practice problems for Exam 1. a b = (2) 2 + (4) 2 + ( 3) 2 = 29 Practice problems for Exam.. Given a = and b =. Find the area of the parallelogram with adjacent sides a and b. A = a b a ı j k b = = ı j + k = ı + 4 j 3 k Thus, A = 9. a b = () + (4) + ( 3)

More information

Tangent and Normal Vectors

Tangent and Normal Vectors Tangent and Normal Vectors MATH 311, Calculus III J. Robert Buchanan Department of Mathematics Fall 2011 Navigation When an observer is traveling along with a moving point, for example the passengers in

More information

Math 210, Final Exam, Spring 2012 Problem 1 Solution. (a) Find an equation of the plane passing through the tips of u, v, and w.

Math 210, Final Exam, Spring 2012 Problem 1 Solution. (a) Find an equation of the plane passing through the tips of u, v, and w. Math, Final Exam, Spring Problem Solution. Consider three position vectors (tails are the origin): u,, v 4,, w,, (a) Find an equation of the plane passing through the tips of u, v, and w. (b) Find an equation

More information

Parametric Curves You Should Know

Parametric Curves You Should Know Parametric Curves You Should Know Straight Lines Let a and c be constants which are not both zero. Then the parametric equations determining the straight line passing through (b d) with slope c/a (i.e.

More information

Math 212-Lecture 20. P dx + Qdy = (Q x P y )da. C

Math 212-Lecture 20. P dx + Qdy = (Q x P y )da. C 15. Green s theorem Math 212-Lecture 2 A simple closed curve in plane is one curve, r(t) : t [a, b] such that r(a) = r(b), and there are no other intersections. The positive orientation is counterclockwise.

More information

WORKSHEET #13 MATH 1260 FALL 2014

WORKSHEET #13 MATH 1260 FALL 2014 WORKSHEET #3 MATH 26 FALL 24 NOT DUE. Short answer: (a) Find the equation of the tangent plane to z = x 2 + y 2 at the point,, 2. z x (, ) = 2x = 2, z y (, ) = 2y = 2. So then the tangent plane equation

More information

Math 103, Review Problems for the First Midterm

Math 103, Review Problems for the First Midterm Math 0, Review Problems for the First Mierm Ivan Matić. Draw the curve r (t) = cost, sin t, sint and find the tangent line to the curve at t = 0. Find the normal vector to the curve at t = 0.. Find the

More information

Section Vector Functions and Space Curves

Section Vector Functions and Space Curves Section 13.1 Section 13.1 Goals: Graph certain plane curves. Compute limits and verify the continuity of vector functions. Multivariable Calculus 1 / 32 Section 13.1 Equation of a Line The equation of

More information

Midterm 1 Review. Distance = (x 1 x 0 ) 2 + (y 1 y 0 ) 2.

Midterm 1 Review. Distance = (x 1 x 0 ) 2 + (y 1 y 0 ) 2. Midterm 1 Review Comments about the midterm The midterm will consist of five questions and will test on material from the first seven lectures the material given below. No calculus either single variable

More information

Solutions for the Practice Final - Math 23B, 2016

Solutions for the Practice Final - Math 23B, 2016 olutions for the Practice Final - Math B, 6 a. True. The area of a surface is given by the expression d, and since we have a parametrization φ x, y x, y, f x, y with φ, this expands as d T x T y da xy

More information

OHSx XM521 Multivariable Differential Calculus: Homework Solutions 14.1

OHSx XM521 Multivariable Differential Calculus: Homework Solutions 14.1 OHSx XM5 Multivariable Differential Calculus: Homework Solutions 4. (8) Describe the graph of the equation. r = i + tj + (t )k. Solution: Let y(t) = t, so that z(t) = t = y. In the yz-plane, this is just

More information

Math 20C Homework 2 Partial Solutions

Math 20C Homework 2 Partial Solutions Math 2C Homework 2 Partial Solutions Problem 1 (12.4.14). Calculate (j k) (j + k). Solution. The basic properties of the cross product are found in Theorem 2 of Section 12.4. From these properties, we

More information

AP Calculus (BC) Chapter 10 Test No Calculator Section. Name: Date: Period:

AP Calculus (BC) Chapter 10 Test No Calculator Section. Name: Date: Period: AP Calculus (BC) Chapter 10 Test No Calculator Section Name: Date: Period: Part I. Multiple-Choice Questions (5 points each; please circle the correct answer.) 1. The graph in the xy-plane represented

More information

One side of each sheet is blank and may be used as scratch paper.

One side of each sheet is blank and may be used as scratch paper. Math 244 Spring 2017 (Practice) Final 5/11/2017 Time Limit: 2 hours Name: No calculators or notes are allowed. One side of each sheet is blank and may be used as scratch paper. heck your answers whenever

More information

9.4 CALCULUS AND PARAMETRIC EQUATIONS

9.4 CALCULUS AND PARAMETRIC EQUATIONS 9.4 Calculus with Parametric Equations Contemporary Calculus 1 9.4 CALCULUS AND PARAMETRIC EQUATIONS The previous section discussed parametric equations, their graphs, and some of their uses for visualizing

More information

MATH 32A: MIDTERM 2 REVIEW. sin 2 u du z(t) = sin 2 t + cos 2 2

MATH 32A: MIDTERM 2 REVIEW. sin 2 u du z(t) = sin 2 t + cos 2 2 MATH 3A: MIDTERM REVIEW JOE HUGHES 1. Curvature 1. Consider the curve r(t) = x(t), y(t), z(t), where x(t) = t Find the curvature κ(t). 0 cos(u) sin(u) du y(t) = Solution: The formula for curvature is t

More information

Calculus: Several Variables Lecture 27

Calculus: Several Variables Lecture 27 alculus: Several Variables Lecture 27 Instructor: Maksim Maydanskiy Lecture 27 Plan 1. Work integrals over a curve continued. (15.4) Work integral and circulation. Example by inspection. omputation via

More information

Calculus with Analytic Geometry 3 Fall 2018

Calculus with Analytic Geometry 3 Fall 2018 alculus with Analytic Geometry 3 Fall 218 Practice Exercises for the Final Exam I present here a number of exercises that could serve as practice for the final exam. Some are easy and straightforward;

More information

Math S1201 Calculus 3 Chapters , 14.1

Math S1201 Calculus 3 Chapters , 14.1 Math S1201 Calculus 3 Chapters 13.2 13.4, 14.1 Summer 2015 Instructor: Ilia Vovsha h@p://www.cs.columbia.edu/~vovsha/calc3 1 Outline CH 13.2 DerivaIves of Vector FuncIons Extension of definiion Tangent

More information

Arc Length and Riemannian Metric Geometry

Arc Length and Riemannian Metric Geometry Arc Length and Riemannian Metric Geometry References: 1 W F Reynolds, Hyperbolic geometry on a hyperboloid, Amer Math Monthly 100 (1993) 442 455 2 Wikipedia page Metric tensor The most pertinent parts

More information

Math 120: Precalculus Autumn 2017 A List of Topics for the Final

Math 120: Precalculus Autumn 2017 A List of Topics for the Final Math 120: Precalculus Autumn 2017 A List of Topics for the Final Here s a fairly comprehensive list of things you should be comfortable doing for the final. Really Old Stuff 1. Unit conversion and rates

More information

Practice problems from old exams for math 132 William H. Meeks III

Practice problems from old exams for math 132 William H. Meeks III Practice problems from old exams for math 32 William H. Meeks III Disclaimer: Your instructor covers far more materials that we can possibly fit into a four/five questions exams. These practice tests are

More information

Math 263 Final. (b) The cross product is. i j k c. =< c 1, 1, 1 >

Math 263 Final. (b) The cross product is. i j k c. =< c 1, 1, 1 > Math 63 Final Problem 1: [ points, 5 points to each part] Given the points P : (1, 1, 1), Q : (1,, ), R : (,, c 1), where c is a parameter, find (a) the vector equation of the line through P and Q. (b)

More information

1 4 (1 cos(4θ))dθ = θ 4 sin(4θ)

1 4 (1 cos(4θ))dθ = θ 4 sin(4θ) M48M Final Exam Solutions, December 9, 5 ) A polar curve Let C be the portion of the cloverleaf curve r = sin(θ) that lies in the first quadrant a) Draw a rough sketch of C This looks like one quarter

More information

CALCULUS 3 February 6, st TEST

CALCULUS 3 February 6, st TEST MATH 400 (CALCULUS 3) Spring 008 1st TEST 1 CALCULUS 3 February, 008 1st TEST YOUR NAME: 001 A. Spina...(9am) 00 E. Wittenbn... (10am) 003 T. Dent...(11am) 004 J. Wiscons... (1pm) 005 A. Spina...(1pm)

More information

7a3 2. (c) πa 3 (d) πa 3 (e) πa3

7a3 2. (c) πa 3 (d) πa 3 (e) πa3 1.(6pts) Find the integral x, y, z d S where H is the part of the upper hemisphere of H x 2 + y 2 + z 2 = a 2 above the plane z = a and the normal points up. ( 2 π ) Useful Facts: cos = 1 and ds = ±a sin

More information

Topic 2-2: Derivatives of Vector Functions. Textbook: Section 13.2, 13.4

Topic 2-2: Derivatives of Vector Functions. Textbook: Section 13.2, 13.4 Topic 2-2: Derivatives of Vector Functions Textbook: Section 13.2, 13.4 Warm-Up: Parametrization of Circles Each of the following vector functions describe the position of an object traveling around the

More information

Look out for typos! Homework 1: Review of Calc 1 and 2. Problem 1. Sketch the graphs of the following functions:

Look out for typos! Homework 1: Review of Calc 1 and 2. Problem 1. Sketch the graphs of the following functions: Math 226 homeworks, Fall 2016 General Info All homeworks are due mostly on Tuesdays, occasionally on Thursdays, at the discussion section. No late submissions will be accepted. If you need to miss the

More information

Bézier Curves and Splines

Bézier Curves and Splines CS-C3100 Computer Graphics Bézier Curves and Splines Majority of slides from Frédo Durand vectorportal.com CS-C3100 Fall 2017 Lehtinen Before We Begin Anything on your mind concerning Assignment 1? CS-C3100

More information

Figure: Aparametriccurveanditsorientation

Figure: Aparametriccurveanditsorientation Parametric Equations Not all curves are functions. To deal with curves that are not of the form y = f (x) orx = g(y), we use parametric equations. Define both x and y in terms of a parameter t: x = x(t)

More information

Math 3435 Homework Set 11 Solutions 10 Points. x= 1,, is in the disk of radius 1 centered at origin

Math 3435 Homework Set 11 Solutions 10 Points. x= 1,, is in the disk of radius 1 centered at origin Math 45 Homework et olutions Points. ( pts) The integral is, x + z y d = x + + z da 8 6 6 where is = x + z 8 x + z = 4 o, is the disk of radius centered on the origin. onverting to polar coordinates then

More information

t f(u)g (u) g(u)f (u) du,

t f(u)g (u) g(u)f (u) du, Chapter 2 Notation. Recall that F(R 3 ) denotes the set of all differentiable real-valued functions f : R 3 R and V(R 3 ) denotes the set of all differentiable vector fields on R 3. 2.1 7. The problem

More information

Figure 1: Functions Viewed Optically. Math 425 Lecture 4. The Chain Rule

Figure 1: Functions Viewed Optically. Math 425 Lecture 4. The Chain Rule Figure 1: Functions Viewed Optically Math 425 Lecture 4 The Chain Rule The Chain Rule in the One Variable Case We explain the chain rule in the one variable case. To do this we view a function f as a impossible

More information

Disclaimer: This Final Exam Study Guide is meant to help you start studying. It is not necessarily a complete list of everything you need to know.

Disclaimer: This Final Exam Study Guide is meant to help you start studying. It is not necessarily a complete list of everything you need to know. Disclaimer: This is meant to help you start studying. It is not necessarily a complete list of everything you need to know. The MTH 234 final exam mainly consists of standard response questions where students

More information

Math 210, Final Exam, Practice Fall 2009 Problem 1 Solution AB AC AB. cosθ = AB BC AB (0)(1)+( 4)( 2)+(3)(2)

Math 210, Final Exam, Practice Fall 2009 Problem 1 Solution AB AC AB. cosθ = AB BC AB (0)(1)+( 4)( 2)+(3)(2) Math 2, Final Exam, Practice Fall 29 Problem Solution. A triangle has vertices at the points A (,,), B (, 3,4), and C (2,,3) (a) Find the cosine of the angle between the vectors AB and AC. (b) Find an

More information

MATH H53 : Final exam

MATH H53 : Final exam MATH H53 : Final exam 11 May, 18 Name: You have 18 minutes to answer the questions. Use of calculators or any electronic items is not permitted. Answer the questions in the space provided. If you run out

More information

Lecture 6, September 1, 2017

Lecture 6, September 1, 2017 Engineering Mathematics Fall 07 Lecture 6, September, 07 Escape Velocity Suppose we have a planet (or any large near to spherical heavenly body) of radius R and acceleration of gravity at the surface of

More information

APPM 2350 Section Exam points Wednesday September 26, 6:00pm 7:30pm, 2018

APPM 2350 Section Exam points Wednesday September 26, 6:00pm 7:30pm, 2018 APPM 2350 Section Exam 1 140 points Wednesday September 26, 6:00pm 7:30pm, 2018 ON THE FRONT OF YOUR BLUEBOOK write: (1) your name, (2) your student ID number, (3) lecture section/time (4) your instructor

More information

REVIEW 2, MATH 3020 AND MATH 3030

REVIEW 2, MATH 3020 AND MATH 3030 REVIEW, MATH 300 AND MATH 3030 1. Let P = (0, 1, ), Q = (1,1,0), R(0,1, 1), S = (1,, 4). (a) Find u = PQ and v = PR. (b) Find the angle between u and v. (c) Find a symmetric equation of the plane σ that

More information

Mathematics Engineering Calculus III Fall 13 Test #1

Mathematics Engineering Calculus III Fall 13 Test #1 Mathematics 2153-02 Engineering Calculus III Fall 13 Test #1 Instructor: Dr. Alexandra Shlapentokh (1) Which of the following statements is always true? (a) If x = f(t), y = g(t) and f (1) = 0, then dy/dx(1)

More information

Space curves, vector fields and strange surfaces. Simon Salamon

Space curves, vector fields and strange surfaces. Simon Salamon Space curves, vector fields and strange surfaces Simon Salamon Lezione Lagrangiana, 26 May 2016 Curves in space 1 A curve is the path of a particle moving continuously in space. Its position at time t

More information

Math 23b Practice Final Summer 2011

Math 23b Practice Final Summer 2011 Math 2b Practice Final Summer 211 1. (1 points) Sketch or describe the region of integration for 1 x y and interchange the order to dy dx dz. f(x, y, z) dz dy dx Solution. 1 1 x z z f(x, y, z) dy dx dz

More information

MATH2000 Flux integrals and Gauss divergence theorem (solutions)

MATH2000 Flux integrals and Gauss divergence theorem (solutions) DEPARTMENT O MATHEMATIC MATH lux integrals and Gauss divergence theorem (solutions ( The hemisphere can be represented as We have by direct calculation in terms of spherical coordinates. = {(r, θ, φ r,

More information

HOMEWORK 3 MA1132: ADVANCED CALCULUS, HILARY 2017

HOMEWORK 3 MA1132: ADVANCED CALCULUS, HILARY 2017 HOMEWORK MA112: ADVANCED CALCULUS, HILARY 2017 (1) A particle moves along a curve in R with position function given by r(t) = (e t, t 2 + 1, t). Find the velocity v(t), the acceleration a(t), the speed

More information

Math 114: Make-up Final Exam. Instructions:

Math 114: Make-up Final Exam. Instructions: Math 114: Make-up Final Exam Instructions: 1. Please sign your name and indicate the name of your instructor and your teaching assistant: A. Your Name: B. Your Instructor: C. Your Teaching Assistant: 2.

More information

Math 234 Exam 3 Review Sheet

Math 234 Exam 3 Review Sheet Math 234 Exam 3 Review Sheet Jim Brunner LIST OF TOPIS TO KNOW Vector Fields lairaut s Theorem & onservative Vector Fields url Divergence Area & Volume Integrals Using oordinate Transforms hanging the

More information