Section 1 Flashcards
A Dot Product returns a (Scalar/Vector)
Scalar
A Dot Product is performed with
a1 * b1 + a2 * b2 + a3 * b3
A Cross Product returns a (Scalar/Vector)
Vector
A Cross Product is performed with
the determinant of a matrix using the vectors, evaluating to:
(a2b3 - a3b2)i - (a1b3 - a3b1)j + (a1b2 - a2b1)k
(a + b) x c =
(a x c) + (b x c)
a x b =
-b x a
The area of a parallelopiped is
a * (b x c) |
A parallelopiped is (definition)
A 3d object with 6 sides, each side being a parallelogram
find the angle x between vectors a and b
a * b = ||a|| * ||b|| * cos(x)
||a|| is the same as
sqrt(a * a)
A Triple Product is
a * (b x c)
A Triple Product returns a (Vector/Scalar)
Scalar
a * ( b x c) is equivalent to
b * (a x c) and c * (a x b)
Equation of a plane
the vector perpendicular to the plane (n) is expressed by (a, b, c). A point in the plane is (x0, y0, z0). The plane is then a(x - x0) + b(y - y0) + c(z - z0) = 0, simplified to ax + by + cz = D
The distance between a plane and a point not on the plane
d = (Ax * n) / ||n|| where A is a point in the plane, x is the point off the plane, and n is a vector normal to the plane