Final Flashcards
if two vectors are orthogonal, then
a dot b = 0
what is the scalar projection of b onto a
(a dot b) / (|| a ||)
what is the vector projection of b onto a
( (a dot b) / (|| a ||)^2 ) * a
how do you find a vector orthogonal to both a and b
a x b
how do you tell if two vectors are parallel
a x b = 0
how do you find a volume of three vectors
|| a dot (b x c) ||
what is the parametric equation through the point (x0, y0, z0) and parallel to the point
x = x0 + at
how do you find a symmetric equation of a line
find the parametric equation and solve for t
what is the equation of the line segment from r0 to r1
r(t) = ( 1 - t )r0 + tr1
what is the scalar equation of a plane through the point P(x0, y0, z0) with the normal vector n(a, b, c)
a(x-x0) + b(y-y0) + c(z-z0) = 0
what is the distance from the point P(x0, y0, z0) to the plane ax + by + cz + d = 0
|| ax0 + by0 + cz0 + d || / sqrt( a^2 + b^2 + c^2 )
what is an equation of a tangent plane to the surface z = f(x,y) at the point P(x0, y0, z0)
z - z0 = fx(x0,y0)(x - x0) + fy(x0,y0)(y - y0)
what is the linearization of f at a, b
L(x,y) = f(a,b) + fx(a,b) (x - a) + fy(a,b) (y - b)
explain the chain rule using the tree method
create a diagram that relates each of the variables and the partials to get to new variables. for example, z is in terms of x and y so (partial z) / (partial x) gives in terms of x, now x and y are in terms of s and t so (partial x/ partial t) gives t and (partial y / partial t) gives t so when added you get the equation with respects to t
how do we use implicit differentiation in two variables
dy/dx = - (Fx)/(Fy)