MATH 251 Lecture 5

From Notes
Jump to navigation Jump to search

« previous | Friday, January 27, 2012 | next »


Curves and Surfaces

curves
2 equations in (x,y,z)
1 independent variable (parameterized)
surfaces
1 equation in (x,y,z)
2 independent variables (2 parameters)

Parameterizing a curve/line

  1. a point P and a direction vector v
  2. two points (convert to point and direction vector with v=QP)

Given a point P and a direction vector v, the parametric form of a line is

r(t)=P+tv

In general, a parameterized curve consists of 3 functions that give a position in space.

Tangent Line

To get a vector tangent to a curve in 3D space, take the derivative of each component in the parametric form.

Here's an elliptical helix:

r(t)=(2cost,sint,t)

The tangent vector will represent the velocity at time t

v(t)=r(t)=(2sint,cost,1)

The second derivative will be the acceleration:

a(t)=v(t)=r(t)=(2cost,sint,0)


Planes

  • Three noncolinear points determine a plane.
  • Point and a normal vector

Given:

Arbitrary point on plane: X=x,y,z
Point (on plane): P=x0,y0,z0
Normal Vector: n=p,q,r
  • The vector form of a plane is: (XP)n=0
  • the normal form equation of a plane is: p(xx0)+q(yy0)+r(zz0)=0

Distance between point and Plane

Find the distance between P=(1,1,3) and 4x+2yz=2.

n=4,2,1

Given any point on the plane—Q=(0,0,2), for example—the distance is given by: compn(PQ)=(PQ)n^.