12.3 Curvature, torsion and the TNB frame

Size: px
Start display at page:

Download "12.3 Curvature, torsion and the TNB frame"

Transcription

1 1.3 Curvature, torsion and the TNB frame Acknowledgments: Material from a Georgia Tech worksheet by Jim Herod, School of Mathematics, herod@math.gatech.edu, is incorporated into the section on curvature, torsion and the TNB frame. Definition [Curvature] If T is the unit tangent vector of a smooth curve, the dt curvature function of the curve is κ = ds. Definition [Principal unit normal vector] At a point where normal vector for a curve in the plane is N= 1 dt κ ds. κ 0, the principal unit Definition [The binormal vector] The binormal vector of a smooth curve is B = T x N. Definition [Torsion] Let B = T x N. The torsion function of a smooth curve is τ= db. N. Torsion measures how the curve twists. ds Definition [The tangential and normal components of acceleration] a = a T T + a N N, where a T = d s dt = d dt v, and a N = κ ds = κ v are the dt tangential and normal scalar components of acceleration. a N = a a T. A vector formula for curvature vxa κ =. v 3 Formulas for curves in space

2 Unit tangent vector: T = v v. Principal unit normal vector: N = dt dt / dt dt Binormal vector: B = T x N dt Curvature: κ = ds = vxa. v 3 Torsion: τ= db. x' y' z' ds N = det x" y" z" x"' y"' z"' vxa ( ) Tangential and normal scalar components of acceleration: a = a T T + a N N a T = d dt v a N = κ v = a a T > The velocity vector and unit tangent Perhaps as much as any other place, the computations for the tangent and the normal to a curve are best accomplished with a computer. The calculus to obtain these geometric notions for even simple functions can be formidable. Because these ideas arise so prominently in the task of resolving both motion and the forces causing motion, it is well that the ideas be understood at the beginnings of a study of multidimensional calculus. We will give computational tools and illustrate the ideas with examples. Contrast the graphs of R 1 (t) = [ t, f( t )] and R (t) = [ t, f( t )]. The graphs have exactly the same appearance. A unit tangent for R 1 or R should be the same, even though speed along the two graphs, as parameterized, is different. While the tangent vectors for the two should have the same directions, you should expect the tangent vector for the graphs to have different lengths. Below, we draw two graphs for comparison with their tangent vectors. The point will be that while the two graphs have the same appearance, they sweep out the shapes at different rates and draw a particular section in different time spans. > plot({[t,sin(t),t=0..*pi],[t^,sin(t^),t=0..(*pi)^(1/)]}) ;

3 Look at the animation below to compare the speed of the two functions. > restart:with(plots): h:=(t,u)->piecewise(u<t,sin(u)); Cc:=animate({h(t^,u)},u=0..17*Pi,t=0..17*Pi,frames=100,color =green,numpoints=400): Dd:=animate({h(t,u)},u=0..17*Pi,t=0..17*Pi,frames=100,numpoin ts=400,thickness=3,color=red): display({cc,dd},axes=normal,view=[0..50,-1..1]); Warning, the name changecoords has been redefined h := ( t, u ) piecewise ( u < t, sin( u) )

4 Below, we compare the derivatives of R 1 and R. We expect these two to have the same direction, but different lengths. > restart:with(linalg): Warning, the protected names norm and trace have been redefined and unprotected > x:=t->t; y:=t->sin(t); R1:=t->vector([x(t),y(t)]); x := t t y := sin R1 := t [ x( t ), y( t) ] We compute R 1 prime -- the tangent to the graph of R 1. > assume(t,real); > R1p:=t->map(diff,R1(t),t); R1p(t); sqrt(dotprod(r1p(t),r1p(t))); R1p := t map ( diff, R1( t) [ 1, cos( t~ )] 1 + cos( t~ ) Here is the computation for R. > R:=t->vector([x(t^),y(t^)]); R := t [ x( t ), y( t )]

5 > Rp:=t->map(diff,R(t),t); Rp(t); sqrt(dotprod(rp(t),rp(t))); Rp := t map ( diff, R( t) [ t~, cos( t~ ) t~ ] t~ + cos( t~ ) t~ Note that the derivatives -- the tangent vectors -- for R 1 and for R are different. they have the same directions, but different lengths. > simplify(%); 1 + cos( t~ ) t~ The graph below shows the curves and the tangent vectors (velocity vectors), R 1 '(t) and R '(t). The longer tangent vector is the tangent for R. > with(plots):with(plottools): Warning, the name changecoords has been redefined Warning, the name arrow has been redefined > s1 := plot({[t,sin(t),t=0..16*pi],[t^,sin(t^),t=0..(16*pi)^(1/)] }): A:=plots[display](seq(PLOT(arrow(R(s/0),subs(t=s/0,evalm(R p(t))),.1,.3,.1, color=green)), s=0..00), insequence=true): > B:=plots[display](seq(PLOT(arrow(R1(s/0),subs(t=s/0,evalm(R 1p(t))),.1,.3,.1, color=pink)), s=0..00), insequence=true): display({a,b,s1},axes=normal,view=[0..50, ]);

6

7 The Unit Tangent Vector T We identity R '(t) as speed and T(t) = R'(t)/ R '(t) as the unit tangent vector. Definition: Speed(t) = R( t ) and T(t) = t t R( t ) speed( t ). For a three dimensional curve, R(t) = [x(t), y(t), z(t)], speed(t) = x( t ) + y( t) + t t t z( t). and T(t) = [x '(t), y '(t), z '(t)] / speed(t).

8 Example: > x:=t->cos(t); y:=t->sin(t); z:=t->t; R3:=t->vector([x(t),y(t),z(t)]); assume(t,real); x := cos y := sin z := t t R3 := t [ x( t ), y( t ), z( t) ] > R3p:=t->map(diff,R3(t),t); R3p(t); speed:=sqrt(dotprod(r3p(t),r3p(t))); T:=t->R3p(t)/speed; simplify(evalm(t(t))); R3p := t map ( diff, R3( t) [ sin( t~ ), cos( t~ ), 1] speed := 1 + sin( t~ ) + cos( t~ ) T := t R3p( t ) speed 1 sin( t~ ), 1 cos( t~ ), 1 > evalm(%); 1 sin( t~ ), 1 cos( t~ ), 1 Of course, this velocity vector R '(t) points in the direction of the tangent vector, T(t). R ' is a multiple of T: (*) R ' (t) = speed(t) * T(t). THE NORMAL VECTOR In thinking about how to define the unit normal vector, we ask what properties it should have? Here are three: (1) The normal vector should be perpendicular to the tangent vector. () The unit normal vector should have length one. (3) The normal vector should lie in the plane of R ' and R ' '. Toward getting such a vector, consider T '. This vector is perpendicular to the unit tangent for < T, T > = 1,

9 and < T ', T > + < T, T ' > = 0. (Prove this.) Thus, T ' meets Condition 1. However T ' does not meet condition (). Thus, we define the unit normal (**) N(t) = T '(t) / T '(t). This N meets Conditions (1) and (). What about Condition (3)? Recall (*). Take the derivative of both sides: (***) R ' '(t) = speed '(t) T(t) + speed(t) T '(t). Define curvature, κ to be the number valued function κ = T '(t) / speed(t). From (**), T '(t) = T '(t) N = κ speed(t) N(t). Substitute this into (***) and we have R ' '(t) = speed '(t) T(t) + speed κ N. Thus, the unit normal as defined above meets the Conditions (1), (), and (3). Computational summary: R(t) is the curve, speed = R '(t). Unit Tangent = T(t) = R( t ) t speed( t).

10 Unit Normal = T( t) t T( t) t. curvature = κ = T( t) t speed( t) = R ' x R ' ' / speed 3. It seems appropriate to work some problems. Illustrations Find the unit tangent, the unit normal, and curvature for each of the following. Example 1. R(t) = [ 3 cos(t), 3 sin(t), 0] > restart: > with(linalg):assume(t,real); Warning, the protected names norm and trace have been redefined and unprotected Define > x:=t->3*cos(t); y:=t->3*sin(t); z:=t->0; R:=t->vector([x(t),y(t),z(t)]); x := t 3 cos( t) y := t 3 sin( t) z := 0 R := t [ x( t ), y( t ), z( t) ] > Rp:=t->map(diff,R(t),t); Rp(t); Rp := t map ( diff, R( t) [ 3 sin( t~ ), 3 cos( t~ ), 0] > sqrt(dotprod(rp(t),rp(t))); simplify(%); > > speed:=unapply(%,t); 3 sin( t~ ) + cos( t~ ) 3

11 speed := 3 The Unit Tangent > unitt:=t->evalm(rp(t)/speed(t)); unitt(t); Rp( t) evalm speed( t) [ sin( t~ ), cos( t~ ), 0] unitt := t > Tp:=t->map(diff,unitT(t),t); map(simplify,tp(t)); Tp := t map ( diff, unitt( t) [ cos( t~ ), sin( t~ ), 0 ] The Unit Normal > N:=t->evalm(Tp(t)/sqrt(dotprod(Tp(t),Tp(t)))); map(simplify,n(t)); Tp( t) N := t evalm dotprod ( Tp( t ), Tp( t) ) [ cos( t~ ), sin( t~ ), 0 ] > Rpp:=t->map(diff,Rp(t),t); Rpp(t); Rpp := t map ( diff, Rp( t) [ 3 cos( t~ ), 3 sin( t~ ), 0 ] Curvature > topk:=crossprod(rp(t),rpp(t)); kappa:=simplify(sqrt(dotprod(topk,topk))/speed(t)^3); topk := [ 00,, 9 sin( t~ ) + 9 cos( t~ ) ] 1 κ := 3 > Example. R(t) = t t,, 0. > restart: > with(linalg):assume(t,real); Warning, the protected names norm and trace have been redefined and unprotected > x:=t->t; y:=t->t^/; z:=t->0; R:=t->vector([x(t),y(t),z(t)]); x := t t

12 1 y := t t z := 0 R := t [ x( t ), y( t ), z( t) ] > Rp:=t->map(diff,R(t),t); Rp(t); Rp := t map ( diff, R( t) [ 1, t~, 0 ] > sqrt(dotprod(rp(t),rp(t))); simplify(%); > > speed:=unapply(%,t); > 1 + t~ 1 + t~ speed := t~ 1 + t~ The Unit Tangent > unitt:=t->evalm(rp(t)/speed(t)); unitt(t); Rp( t) unitt := t evalm speed( t) 1 t~,, t~ 1 + t~ > Tp:=t->map(diff,unitT(t),t); map(simplify,tp(t)); Tp := t map ( diff, unitt( t) t~ 1,, 0 ( 1 + t~ ) ( 3 / ) ( 1 + t~ ) ( 3 / ) The Unit Normal > N:=t->evalm(Tp(t)/sqrt(dotprod(Tp(t),Tp(t)))); map(simplify,n(t)); Tp( t) N := t evalm dotprod ( Tp( t ), Tp( t) ) t~ 1,, t~ 1 + t~ > Rpp:=t->map(diff,Rp(t),t);

13 Rpp(t); Rpp := t map ( diff, Rp( t) [ 010,, ] Curvature > topk:=crossprod(rp(t),rpp(t)); kappa:=simplify(dotprod(topk,topk)/speed(t)^3); topk := [ 001,, ] 1 κ := ( 1 + t~ ) ( 3 / ) > Example 3:R(t) = [ exp(t) cos(t), exp(t) sin(t), exp(t) ] We also draw the unit tangent and the unit normal for this last graph. > restart: > with(linalg): with(plots): with(plottools):assume(t,real); Warning, the protected names norm and trace have been redefined and unprotected Warning, the name changecoords has been redefined Warning, the name arrow has been redefined > x:=t->exp(t)*cos(t); y:=t->exp(t)*sin(t); z:=t->exp(t); x := t e t cos( t) y := t e t sin( t ) z := exp > x:=t->cos(t); y:=t->sin(t); z:=t->1/*t; x := cos y := sin 1 z := t t > R:=t->vector([x(t),y(t),z(t)]); R := t [ x( t ), y( t ), z( t) ] > Rp:=t->map(diff,R(t),t); map(simplify,rp(t)); Rp := t map ( diff, R( t) [ e t~ ( cos( t~ ) sin( t~ )), e t~ ( sin( t~ ) + cos( t~ )), e t~ ] > sqrt(dotprod(rp(t),rp(t))); simplify(%);

14 ( e t~ cos( t~ ) e t~ sin( t~ )) + ( e t~ sin( t~ ) + e t~ cos( t~ )) + ( ) 3 e t~ > speed:=unapply(%,t); speed := t~ 3 e t~ The Unit Tangent > unitt:=t->evalm(rp(t)/speed(t)); unitt(t); Rp( t) unitt := t evalm speed( t) 1 3( e t~ cos( t~ ) e t~ sin( t~ )) 1 3( e t~ sin( t~ ) + e t~ cos( t~ )) 1,, 3 e t~ 3 e t~ 3 > Tp:=t->map(diff,unitT(t),t); map(simplify,tp(t)); Tp := t map ( diff, unitt( t) 1 3( sin( t~ ) + cos( t~ )), 1 3( cos( t~ ) + sin( t~ )), The Unit Normal > N:=t->evalm(Tp(t)/sqrt(dotprod(Tp(t),Tp(t)))); map(simplify,n(t)); Tp( t) N := t evalm dotprod ( Tp( t ), Tp( t) ) 1 ( sin( t~ ) + cos( t~ )), 1 ( cos( t~ ) + sin( t~ )), 0 > Rpp:=t->map(diff,Rp(t),t); Rpp(t); Rpp := t map ( diff, Rp( t) [ e t~ sin( t~ ), e t~ cos( t~ ), e t~ ] The Binormal vector > B:=t->evalm(crossprod(unitT(t),N(t))); map(simplify,b(t)); B := t evalm ( crossprod ( unitt( t ), N( t) ) ) 1 6( cos( t~ ) + sin( t~ )), 1 1 6( sin( t~ ) + cos( t~ )), Curvature > topk:=crossprod(rp(t),rpp(t)); kappa:=simplify(dotprod(topk,topk)/speed(t)^3); e t~ 6 3

15 topk := [ ( e t~ sin( t~ ) + e t~ cos( t~ )) e t~ ( e t~ ) cos( t~ ), > ( e t~ ) sin( t~ ) ( e t~ cos( t~ ) e t~ sin( t~ )) e t~, ( e t~ cos( t~ ) e t~ sin( t~ )) e t~ cos( t~ ) + ( e t~ sin( t~ ) + e t~ cos( t~ )) e t~ sin( t~ )] κ := 3 e t~ 3 Here, we draw the curve, the unit tangent, and the unit normal > base:=convert(map(evalf,subs(t=pi/4,r(t))),list); directiont:=convert(map(evalf,subs(t=pi/4,unitt(t))),list); directionn:=convert(map(evalf,subs(t=pi/4,n(t))),list); directionb:=convert(map(evalf,subs(t=pi/4,b(t))),list); base := [ , , ] directiont := [ 0., , ] directionn := [ , , 0. ] directionb := [ , , ] > sqrt(dotprod(directiont,directionb));digits:=0; 0. Digits := 0 > K:=spacecurve([x(t),y(t),z(t)],t=0..Pi/,axes=NORMAL,color=GR EEN): J:=arrow(base, directiont, [1/4, 1/4, 1/4],.,.4,1/10,axes=NORMAL,color=red): L:=arrow(base, directionn, [1/4, 1/4, 1/4],.,.4,1/10,axes=NORMAL,color=BLACK): M:=arrow(base, directionb, [1/4, 1/4, 1/4],.,.4,1/10,axes=NORMAL,color=blue): > display({j,k,l,m},axes=normal,orientation=[-10,80],scaling=co nstrained,color=black);

16 > n:=0:lastpt:=pi/:jj:=array(1..n):ll:=array(1..n):mm:=array( 1..n):base:=array(1..n):pic:=array(1..n): K:=spacecurve([x(t),y(t),z(t)],t=0..lastpt,scaling=constraine d,axes=normal,color=green): for i from 1 to n do base[i]:=convert(map(evalf,subs(t=lastpt*i/n,r(t))),list): Jj[i]:=arrow(base[i], convert(map(evalf,subs(t=lastpt*i/n,unitt(t))),list), [1/4, 1/4, 1/4],.,.4,1/10,axes=NORMAL,color=red): Ll[i]:=arrow(base[i], convert(map(evalf,subs(t=lastpt*i/n,n(t))),list), [1/4, 1/4, 1/4],.,.4,1/10,axes=NORMAL,color=BLACK): Mm[i]:=arrow(base[i], convert(map(evalf,subs(t=lastpt*i/n,b(t))),list), [1/4, 1/4, 1/4],.,.4,1/10,axes=NORMAL,color=blue): pic[i]:=display({k,jj[i],ll[i],mm[i]},axes=normal,orientation =[-10,80],scaling=constrained,color=BLACK): od: > display(seq(pic[i], i=1..n), scaling=constrained,insequence=true);

17 > > Exercise for the student. Find the unit tangent, the unit normal, and curvature for the ellipse x y + = 1, a > b. a b Determine where the curvature is maximum and where it is minimum. Note that a parametric representation for this ellipse is x(t)=a cos(t), y(t)=b sin(t), z(t)=0.

18 > >

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

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

HOMEWORK 2 SOLUTIONS

HOMEWORK 2 SOLUTIONS HOMEWORK SOLUTIONS MA11: ADVANCED CALCULUS, HILARY 17 (1) Find parametric equations for the tangent line of the graph of r(t) = (t, t + 1, /t) when t = 1. Solution: A point on this line is r(1) = (1,,

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

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

There is a function, the arc length function s(t) defined by s(t) = It follows that r(t) = p ( s(t) )

There is a function, the arc length function s(t) defined by s(t) = It follows that r(t) = p ( s(t) ) MATH 20550 Acceleration, Curvature and Related Topics Fall 2016 The goal of these notes is to show how to compute curvature and torsion from a more or less arbitrary parametrization of a curve. We will

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

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

Unit Speed Curves. Recall that a curve Α is said to be a unit speed curve if

Unit Speed Curves. Recall that a curve Α is said to be a unit speed curve if Unit Speed Curves Recall that a curve Α is said to be a unit speed curve if The reason that we like unit speed curves that the parameter t is equal to arc length; i.e. the value of t tells us how far along

More information

II. Unit Speed Curves

II. Unit Speed Curves The Geometry of Curves, Part I Rob Donnelly From Murray State University s Calculus III, Fall 2001 note: This material supplements Sections 13.3 and 13.4 of the text Calculus with Early Transcendentals,

More information

Section Arclength and Curvature. (1) Arclength, (2) Parameterizing Curves by Arclength, (3) Curvature, (4) Osculating and Normal Planes.

Section Arclength and Curvature. (1) Arclength, (2) Parameterizing Curves by Arclength, (3) Curvature, (4) Osculating and Normal Planes. Section 10.3 Arclength and Curvature (1) Arclength, (2) Parameterizing Curves by Arclength, (3) Curvature, (4) Osculating and Normal Planes. MATH 127 (Section 10.3) Arclength and Curvature The University

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

Vectors and Vector Arithmetic

Vectors and Vector Arithmetic Vectors and Vector Arithmetic Introduction and Goals: The purpose of this lab is to become familiar with the syntax of Maple commands for manipulating and graphing vectors. It will introduce you to basic

More information

e 2 = e 1 = e 3 = v 1 (v 2 v 3 ) = det(v 1, v 2, v 3 ).

e 2 = e 1 = e 3 = v 1 (v 2 v 3 ) = det(v 1, v 2, v 3 ). 3. Frames In 3D space, a sequence of 3 linearly independent vectors v 1, v 2, v 3 is called a frame, since it gives a coordinate system (a frame of reference). Any vector v can be written as a linear combination

More information

Week 3: Differential Geometry of Curves

Week 3: Differential Geometry of Curves Week 3: Differential Geometry of Curves Introduction We now know how to differentiate and integrate along curves. This week we explore some of the geometrical properties of curves that can be addressed

More information

Chapter 14: Vector Calculus

Chapter 14: Vector Calculus Chapter 14: Vector Calculus Introduction to Vector Functions Section 14.1 Limits, Continuity, Vector Derivatives a. Limit of a Vector Function b. Limit Rules c. Component By Component Limits d. Continuity

More information

1 Vectors and 3-Dimensional Geometry

1 Vectors and 3-Dimensional Geometry Calculus III (part ): Vectors and 3-Dimensional Geometry (by Evan Dummit, 07, v..55) Contents Vectors and 3-Dimensional Geometry. Functions of Several Variables and 3-Space..................................

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

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

The Calculus of Vec- tors

The Calculus of Vec- tors Physics 2460 Electricity and Magnetism I, Fall 2007, Lecture 3 1 The Calculus of Vec- Summary: tors 1. Calculus of Vectors: Limits and Derivatives 2. Parametric representation of Curves r(t) = [x(t), y(t),

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

Math 32A Discussion Session Week 5 Notes November 7 and 9, 2017

Math 32A Discussion Session Week 5 Notes November 7 and 9, 2017 Math 32A Discussion Session Week 5 Notes November 7 and 9, 2017 This week we want to talk about curvature and osculating circles. You might notice that these notes contain a lot of the same theory or proofs

More information

CHAPTER 4 DIFFERENTIAL VECTOR CALCULUS

CHAPTER 4 DIFFERENTIAL VECTOR CALCULUS CHAPTER 4 DIFFERENTIAL VECTOR CALCULUS 4.1 Vector Functions 4.2 Calculus of Vector Functions 4.3 Tangents REVIEW: Vectors Scalar a quantity only with its magnitude Example: temperature, speed, mass, volume

More information

Vector Functions & Space Curves MATH 2110Q

Vector Functions & Space Curves MATH 2110Q Vector Functions & Space Curves Vector Functions & Space Curves Vector Functions Definition A vector function or vector-valued function is a function that takes real numbers as inputs and gives vectors

More information

Exploring the Mathematics Behind Skateboarding: Analysis of the Directional Derivative

Exploring the Mathematics Behind Skateboarding: Analysis of the Directional Derivative Exploring the Mathematics Behind Skateboarding: Analysis of the Directional Derivative Chapter 13, Section 6 Adapted from a worksheet prepared for Thomas' Calculus, Finney, Weir, Giordano updated for Maple

More information

MATH 12 CLASS 5 NOTES, SEP

MATH 12 CLASS 5 NOTES, SEP MATH 12 CLASS 5 NOTES, SEP 30 2011 Contents 1. Vector-valued functions 1 2. Differentiating and integrating vector-valued functions 3 3. Velocity and Acceleration 4 Over the past two weeks we have developed

More information

Exam. There are 6 problems. Your 5 best answers count. Please pay attention to the presentation of your work! Best 5

Exam. There are 6 problems. Your 5 best answers count. Please pay attention to the presentation of your work! Best 5 Department of Mathematical Sciences Instructor: Daiva Pucinskaite Calculus III June, 06 Name: Exam There are 6 problems. Your 5 best answers count. Please pay attention to the presentation of your work!

More information

CURRENT MATERIAL: Vector Calculus.

CURRENT MATERIAL: Vector Calculus. Math 275, section 002 (Ultman) Spring 2012 FINAL EXAM REVIEW The final exam will be held on Wednesday 9 May from 8:00 10:00am in our regular classroom. You will be allowed both sides of two 8.5 11 sheets

More information

Plane Curves and Parametric Equations

Plane Curves and Parametric Equations Plane Curves and Parametric Equations MATH 211, Calculus II J. Robert Buchanan Department of Mathematics Spring 2018 Introduction We typically think of a graph as a curve in the xy-plane generated by the

More information

Chapter Four. Derivatives. in the interior of a set S of real numbers means there is an interval centered at t 0

Chapter Four. Derivatives. in the interior of a set S of real numbers means there is an interval centered at t 0 Chapter Four Derivatives 4 Derivatives Suppose f is a vector function and t 0 is a point in the interior of the domain of f ( t 0 in the interior of a set S of real numbers means there is an interval centered

More information

Math 53: Worksheet 9 Solutions

Math 53: Worksheet 9 Solutions Math 5: Worksheet 9 Solutions November 1 1 Find the work done by the force F xy, x + y along (a) the curve y x from ( 1, 1) to (, 9) We first parametrize the given curve by r(t) t, t with 1 t Also note

More information

(6, 4, 0) = (3, 2, 0). Find the equation of the sphere that has the line segment from P to Q as a diameter.

(6, 4, 0) = (3, 2, 0). Find the equation of the sphere that has the line segment from P to Q as a diameter. Solutions Review for Eam #1 Math 1260 1. Consider the points P = (2, 5, 1) and Q = (4, 1, 1). (a) Find the distance from P to Q. Solution. dist(p, Q) = (4 2) 2 + (1 + 5) 2 + (1 + 1) 2 = 4 + 36 + 4 = 44

More information

Figure 10: Tangent vectors approximating a path.

Figure 10: Tangent vectors approximating a path. 3 Curvature 3.1 Curvature Now that we re parametrizing curves, it makes sense to wonder how we might measure the extent to which a curve actually curves. That is, how much does our path deviate from being

More information

Worksheet 1.7: Introduction to Vector Functions - Position

Worksheet 1.7: Introduction to Vector Functions - Position Boise State Math 275 (Ultman) Worksheet 1.7: Introduction to Vector Functions - Position From the Toolbox (what you need from previous classes): Cartesian Coordinates: Coordinates of points in general,

More information

Math 153 Calculus III Notes

Math 153 Calculus III Notes Math 153 Calculus III Notes 10.1 Parametric Functions A parametric function is a where x and y are described by a function in terms of the parameter t: Example 1 (x, y) = {x(t), y(t)}, or x = f(t); y =

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

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

Math 317 M1A, October 8th, 2010 page 1 of 7 Name:

Math 317 M1A, October 8th, 2010 page 1 of 7 Name: Math 317 M1A, October 8th, 2010 page 1 of 7 Name: Problem 1 (5 parts, 30 points): Consider the curve r(t) = 3 sin(t 2 ), 4t 2 + 7, 3 cos(t 2 ), 0 t < a) (5 points) Find the arclength function s(t) giving

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

Calculus and Parametric Equations

Calculus and Parametric Equations Calculus and Parametric Equations MATH 211, Calculus II J. Robert Buchanan Department of Mathematics Spring 2018 Introduction Given a pair a parametric equations x = f (t) y = g(t) for a t b we know how

More information

MATH 332: Vector Analysis Summer 2005 Homework

MATH 332: Vector Analysis Summer 2005 Homework MATH 332, (Vector Analysis), Summer 2005: Homework 1 Instructor: Ivan Avramidi MATH 332: Vector Analysis Summer 2005 Homework Set 1. (Scalar Product, Equation of a Plane, Vector Product) Sections: 1.9,

More information

13.3 Arc Length and Curvature

13.3 Arc Length and Curvature 13 Vector Functions 13.3 Copyright Cengage Learning. All rights reserved. Copyright Cengage Learning. All rights reserved. We have defined the length of a plane curve with parametric equations x = f(t),

More information

Calculus of Vector-Valued Functions

Calculus of Vector-Valued Functions Chapter 3 Calculus of Vector-Valued Functions 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

More information

THE FUNDAMENTAL THEOREM OF SPACE CURVES

THE FUNDAMENTAL THEOREM OF SPACE CURVES THE FUNDAMENTAL THEOREM OF SPACE CURVES JOSHUA CRUZ Abstract. In this paper, we show that curves in R 3 can be uniquely generated by their curvature and torsion. By finding conditions that guarantee the

More information

Later in this chapter, we are going to use vector functions to describe the motion of planets and other objects through space.

Later in this chapter, we are going to use vector functions to describe the motion of planets and other objects through space. 10 VECTOR FUNCTIONS VECTOR FUNCTIONS Later in this chapter, we are going to use vector functions to describe the motion of planets and other objects through space. Here, we prepare the way by developing

More information

Examiner: D. Burbulla. Aids permitted: Formula Sheet, and Casio FX-991 or Sharp EL-520 calculator.

Examiner: D. Burbulla. Aids permitted: Formula Sheet, and Casio FX-991 or Sharp EL-520 calculator. University of Toronto Faculty of Applied Science and Engineering Solutions to Final Examination, June 017 Duration: and 1/ hrs First Year - CHE, CIV, CPE, ELE, ENG, IND, LME, MEC, MMS MAT187H1F - Calculus

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

Topic 2.3: The Geometry of Derivatives of Vector Functions

Topic 2.3: The Geometry of Derivatives of Vector Functions BSU Math 275 Notes Topic 2.3: The Geometry of Derivatives of Vector Functions Textbook Sections: 13.2 From the Toolbox (what you nee from previous classes): Be able to compute erivatives scalar-value functions

More information

The Frenet Serret formulas

The Frenet Serret formulas The Frenet Serret formulas Attila Máté Brooklyn College of the City University of New York January 19, 2017 Contents Contents 1 1 The Frenet Serret frame of a space curve 1 2 The Frenet Serret formulas

More information

Vector Calculus Lecture Notes

Vector Calculus Lecture Notes Vector Calculus Lecture Notes by Thomas Baird December 5, 213 Contents 1 Geometry of R 3 2 1.1 Coordinate Systems............................... 2 1.1.1 Distance................................. 4 1.1.2

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

18.02 Multivariable Calculus Fall 2007

18.02 Multivariable Calculus Fall 2007 MIT OpenCourseWare http://ocw.mit.edu 18.02 Multivariable Calculus Fall 2007 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. V11. Line Integrals in Space

More information

Geodesics: Minimizing Distance on a Surface

Geodesics: Minimizing Distance on a Surface Geodesics: Minimizing Distance on a Surface Seth Donahue 5/13/13 Abstract Geodesics use the principles of differential geometry. The system of differential equations and the analysis of these will be done

More information

Curves I: Curvature and Torsion. Table of contents

Curves I: Curvature and Torsion. Table of contents Math 48 Fall 07 Curves I: Curvature and Torsion Disclaimer. As we have a textbook, this lecture note is for guidance and sulement only. It should not be relied on when rearing for exams. In this lecture

More information

Motion in Space Parametric Equations of a Curve

Motion in Space Parametric Equations of a Curve Motion in Space Parametric Equations of a Curve A curve, C, inr 3 can be described by parametric equations of the form x x t y y t z z t. Any curve can be parameterized in many different ways. For example,

More information

SPLIT QUATERNIONS and CANAL SURFACES. in MINKOWSKI 3-SPACE

SPLIT QUATERNIONS and CANAL SURFACES. in MINKOWSKI 3-SPACE INTERNATIONAL JOURNAL OF GEOMETRY Vol. 5 (016, No., 51-61 SPLIT QUATERNIONS and CANAL SURFACES in MINKOWSKI 3-SPACE SELAHATTIN ASLAN and YUSUF YAYLI Abstract. A canal surface is the envelope of a one-parameter

More information

Introduction to Vector Functions

Introduction to Vector Functions Introduction to Vector Functions Differentiation and Integration Philippe B. Laval KSU Today Philippe B. Laval (KSU) Vector Functions Today 1 / 14 Introduction In this section, we study the differentiation

More information

Vector Calculus lecture notes

Vector Calculus lecture notes Vector Calculus lecture notes Thomas Baird December 13, 21 Contents 1 Geometry of R 3 2 1.1 Coordinate Systems............................... 2 1.1.1 Distance................................. 3 1.1.2 Surfaces.................................

More information

Lecture D4 - Intrinsic Coordinates

Lecture D4 - Intrinsic Coordinates J. Peraire 16.07 Dynamics Fall 2004 Version 1.1 Lecture D4 - Intrinsic Coordinates In lecture D2 we introduced the position, velocity and acceleration vectors and referred them to a fixed cartesian coordinate

More information

GLOBAL PROPERTIES OF PLANE AND SPACE CURVES

GLOBAL PROPERTIES OF PLANE AND SPACE CURVES GLOBAL PROPERTIES OF PLANE AND SPACE CURVES KEVIN YAN Abstract. The purpose of this paper is purely expository. Its goal is to explain basic differential geometry to a general audience without assuming

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

Worksheet 1.8: Geometry of Vector Derivatives

Worksheet 1.8: Geometry of Vector Derivatives Boise State Math 275 (Ultman) Worksheet 1.8: Geometry of Vector Derivatives From the Toolbox (what you need from previous classes): Calc I: Computing derivatives of single-variable functions y = f (t).

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

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

V11. Line Integrals in Space

V11. Line Integrals in Space V11. Line Integrals in Space 1. urves in space. In order to generalize to three-space our earlier work with line integrals in the plane, we begin by recalling the relevant facts about parametrized space

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

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

Study guide for Exam 1. by William H. Meeks III October 26, 2012

Study guide for Exam 1. by William H. Meeks III October 26, 2012 Study guide for Exam 1. by William H. Meeks III October 2, 2012 1 Basics. First we cover the basic definitions and then we go over related problems. Note that the material for the actual midterm may include

More information

Calculus Vector Principia Mathematica. Lynne Ryan Associate Professor Mathematics Blue Ridge Community College

Calculus Vector Principia Mathematica. Lynne Ryan Associate Professor Mathematics Blue Ridge Community College Calculus Vector Principia Mathematica Lynne Ryan Associate Professor Mathematics Blue Ridge Community College Defining a vector Vectors in the plane A scalar is a quantity that can be represented by a

More information

Homwework JWR. Jan Problem numbers refer to the do Carmo text.

Homwework JWR. Jan Problem numbers refer to the do Carmo text. Homwework JWR Jan 30 014 Problem numbers refer to the do Carmo text. 1. 1.-1 The curve αs) cos s), sin s)) coss), sins)) parameterizes the circle x +y 1 in the clockwise orientation.. 1.-Thedistanceformthepointαt)

More information

Vector Calculus handout

Vector Calculus handout Vector Calculus handout The Fundamental Theorem of Line Integrals Theorem 1 (The Fundamental Theorem of Line Integrals). Let C be a smooth curve given by a vector function r(t), where a t b, and let f

More information

Arbitrary-Speed Curves

Arbitrary-Speed Curves Arbitrary-Speed Curves (Com S 477/577 Notes) Yan-Bin Jia Oct 12, 2017 The Frenet formulas are valid only for unit-speed curves; they tell the rate of change of the orthonormal vectors T, N, B with respect

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

Chapter 0 of Calculus ++, Differential calculus with several variables

Chapter 0 of Calculus ++, Differential calculus with several variables Chapter of Calculus ++, Differential calculus with several variables Background material by Eric A Carlen Professor of Mathematics Georgia Tech Spring 6 c 6 by the author, all rights reserved - Table of

More information

Practice problems. 1. Given a = 3i 2j and b = 2i + j. Write c = i + j in terms of a and b.

Practice problems. 1. Given a = 3i 2j and b = 2i + j. Write c = i + j in terms of a and b. Practice problems 1. Given a = 3i 2j and b = 2i + j. Write c = i + j in terms of a and b. 1, 1 = c 1 3, 2 + c 2 2, 1. Solve c 1, c 2. 2. Suppose a is a vector in the plane. If the component of the a in

More information

Chapter 5 of Calculus ++ : Description and prediction of motion

Chapter 5 of Calculus ++ : Description and prediction of motion Chapter 5 of Calculus ++ : Description and prediction of motion by Eric A Carlen Professor of Mathematics Georgia Tech c 2003 by the author, all rights reserved - Section : Curves in IR n Functions from

More information

Topic 5.1: Line Element and Scalar Line Integrals

Topic 5.1: Line Element and Scalar Line Integrals Math 275 Notes Topic 5.1: Line Element and Scalar Line Integrals Textbook Section: 16.2 More Details on Line Elements (vector dr, and scalar ds): http://www.math.oregonstate.edu/bridgebook/book/math/drvec

More information

Dr. Allen Back. Sep. 10, 2014

Dr. Allen Back. Sep. 10, 2014 Dr. Allen Back Sep. 10, 2014 The chain rule in multivariable calculus is in some ways very simple. But it can lead to extremely intricate sorts of relationships (try thermodynamics in physical chemistry...

More information

Differentiation of Parametric Space Curves. Goals: Velocity in parametric curves Acceleration in parametric curves

Differentiation of Parametric Space Curves. Goals: Velocity in parametric curves Acceleration in parametric curves Block #2: Differentiation of Parametric Space Curves Goals: Velocity in parametric curves Acceleration in parametric curves 1 Displacement in Parametric Curves - 1 Displacement in Parametric Curves Using

More information

Math 210, Exam 1, Practice Fall 2009 Problem 1 Solution

Math 210, Exam 1, Practice Fall 2009 Problem 1 Solution Math 20, Exam, Practice Fall 2009 Problem Solution. Let A = (,,2), B = (0,,), C = (2,,). (a) Find the vector equation of the plane through A, B, C. (b) Find the area of the triangle with these three vertices.

More information

1 question on the cycloid

1 question on the cycloid Answers to question sheet, qs.tex question on the cycloid cycloid The position ct of particle of mass m and electric charge e in combined electric and magnetic fields E and B according to Newton and Lorenz

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

Vector Calculus, Maths II

Vector Calculus, Maths II Section A Vector Calculus, Maths II REVISION (VECTORS) 1. Position vector of a point P(x, y, z) is given as + y and its magnitude by 2. The scalar components of a vector are its direction ratios, and represent

More information

Vector-valued functions

Vector-valued functions Vector-valued functions MATH 243 2018 Victoria University of Wellington Wellington, New Zealand For a complimentary reading, this set of slides corresponds roughly to Chapter of the same title from Anton,

More information

MATH 200 WEEK 5 - WEDNESDAY DIRECTIONAL DERIVATIVE

MATH 200 WEEK 5 - WEDNESDAY DIRECTIONAL DERIVATIVE WEEK 5 - WEDNESDAY DIRECTIONAL DERIVATIVE GOALS Be able to compute a gradient vector, and use it to compute a directional derivative of a given function in a given direction. Be able to use the fact that

More information

MAT 272 Test 1 Review. 1. Let P = (1,1) and Q = (2,3). Find the unit vector u that has the same

MAT 272 Test 1 Review. 1. Let P = (1,1) and Q = (2,3). Find the unit vector u that has the same 11.1 Vectors in the Plane 1. Let P = (1,1) and Q = (2,3). Find the unit vector u that has the same direction as. QP a. u =< 1, 2 > b. u =< 1 5, 2 5 > c. u =< 1, 2 > d. u =< 1 5, 2 5 > 2. If u has magnitude

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

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

The moving trihedron and all that

The moving trihedron and all that MATH 2411 - Harrell The moving trihedron and all that B Lecture 5 T N Copyright 2013 by Evans M. Harrell II. This week s learning plan You will be tested on the mathematics of curves. You will think about

More information

Topic 5.6: Surfaces and Surface Elements

Topic 5.6: Surfaces and Surface Elements Math 275 Notes Topic 5.6: Surfaces and Surface Elements Textbook Section: 16.6 From the Toolbox (what you need from previous classes): Using vector valued functions to parametrize curves. Derivatives of

More information

Math 233 Calculus 3 - Fall 2016

Math 233 Calculus 3 - Fall 2016 Math 233 Calculus 3 - Fall 2016 2 12.1 - Three-Dimensional Coordinate Systems 12.1 - THREE-DIMENSIONAL COORDINATE SYSTEMS Definition. R 3 means By convention, we graph points in R 3 using a right-handed

More information

Geometry of Cylindrical Curves over Plane Curves

Geometry of Cylindrical Curves over Plane Curves Applied Mathematical Sciences, Vol 9, 015, no 113, 5637-5649 HIKARI Ltd, wwwm-hikaricom http://dxdoiorg/101988/ams01556456 Geometry of Cylindrical Curves over Plane Curves Georgi Hristov Georgiev, Radostina

More information

Examiner: D. Burbulla. Aids permitted: Formula Sheet, and Casio FX-991 or Sharp EL-520 calculator.

Examiner: D. Burbulla. Aids permitted: Formula Sheet, and Casio FX-991 or Sharp EL-520 calculator. University of Toronto Faculty of Applied Science and Engineering Solutions to Final Examination, June 216 Duration: 2 and 1/2 hrs First Year - CHE, CIV, CPE, ELE, ENG, IND, LME, MEC, MMS MAT187H1F - Calculus

More information

1 The Differential Geometry of Surfaces

1 The Differential Geometry of Surfaces 1 The Differential Geometry of Surfaces Three-dimensional objects are bounded by surfaces. This section reviews some of the basic definitions and concepts relating to the geometry of smooth surfaces. 1.1

More information

Practice Midterm Exam 1. Instructions. You have 60 minutes. No calculators allowed. Show all your work in order to receive full credit.

Practice Midterm Exam 1. Instructions. You have 60 minutes. No calculators allowed. Show all your work in order to receive full credit. MATH202X-F01/UX1 Spring 2015 Practice Midterm Exam 1 Name: Answer Key Instructions You have 60 minutes No calculators allowed Show all your work in order to receive full credit 1 Consider the points P

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

Curves from the inside

Curves from the inside MATH 2401 - Harrell Curves from the inside Lecture 5 Copyright 2008 by Evans M. Harrell II. Who in the cast of characters might show up on the test? Curves r(t), velocity v(t). Tangent and normal lines.

More information

Introduction to Vector Functions

Introduction to Vector Functions Introduction to Vector Functions Limits and Continuity Philippe B Laval KSU Spring 2012 Philippe B Laval (KSU) Introduction to Vector Functions Spring 2012 1 / 14 Introduction In this section, we study

More information

, where s is the arclength parameter. Prove that. κ = w = 1 κ (θ) + 1. k (θ + π). dγ dθ. = 1 κ T. = N dn dθ. = T, N T = 0, N = T =1 T (θ + π) = T (θ)

, where s is the arclength parameter. Prove that. κ = w = 1 κ (θ) + 1. k (θ + π). dγ dθ. = 1 κ T. = N dn dθ. = T, N T = 0, N = T =1 T (θ + π) = T (θ) Here is a collection of old exam problems: 1. Let β (t) :I R 3 be a regular curve with speed = dβ, where s is the arclength parameter. Prove that κ = d β d β d s. Let β (t) :I R 3 be a regular curve such

More information

Lecture 4: Partial and Directional derivatives, Differentiability

Lecture 4: Partial and Directional derivatives, Differentiability Lecture 4: Partial and Directional derivatives, Differentiability Rafikul Alam Department of Mathematics IIT Guwahati Differential Calculus Task: Extend differential calculus to the functions: Case I:

More information