Final Exam Flashcards
1
Q
Angle between vectors CA and CB
A
CA * CB = ||CA|| * ||CB|| * cos(x) where x is the angle in question
2
Q
||x|| =
A
sqrt(x1^2 + x2^2 + x3^2) or sqrt(x * x)
3
Q
Volume of a parallelopiped
A
a * (b x c)
4
Q
Equivalent method of writing a x b
A
-b x a
5
Q
Is cross product distributive?
A
Yes. a x (b + c) = a x b + a x c
6
Q
Distance to a plane from a point off that plane
A
d = (Ax * n) / ||n|| where n is the vector normal to the plane, A is a point on the plane, and x is the point being measured from.
7
Q
Equation of a plane
A
ax + by + cz = D. Incidentally, D is the distance from the origin.
8
Q
finding the equation of a plane
A
a(x - x0) + b(y - y0) + c(z - z0) = 0