INTRODUCTION Flashcards
distance formula
d = sqrt((x2-x1)^2+(y2-y1)^2+(z2-z1)^2)
equation of a sphere
d = r
center = (h, j, k), @ surface = (x, y, z)
(x-h)^2+(y-j)^2+(z-k)^2 = r^2
magnitude of v = <dx, dy, dz>
|v| = sqrt(dx^2+dy^2+dz^2)
unit vector
magnitude = 1
getting there: v/|v|
standard basis vectors in R3
i = <1, 0, 0>
j = <0, 1, 0>
k = <0, 0, 1>
ie. v = <4, 5, 6> = 4i + 5j + 6k
dot product: a*b
a = <xa, ya, za>
b = <xb, yb, zb>
a * b = xaxb + yayb + zazb
dot product properties (5)
- a = <a1, a2, a3>
a * a = a1^2 + a2^2 + a3^2 = |a|^2 - a * b = b * a
- a * (b + c) = a * b + a * c
- s = scalar
(sa) * b = s(a * b) = a * (sb) - 0 * a = 0
cosine theorem
a * b =
|a| * |b| * cos(theta)
a and b are orthogonal if
a * b = 0
a and b are parallel if
same direction:
theta = 0 so cos(theta) = 1
opposite direction:
theta = pi so cos(theta) = -1
radians to degrees
*180/pi
scalar projection component of b along a
length or projection
projection = x = |b| cos(theta)
x = (a * b)/|a|
compa(b) = (a * b)/|a|
vector projection of b onto a
vector along a with length of projection
proja(b) = compa(b) * (a/|a|)
projection with an obtuse angle
b will project in the direction of -a to form its right triangle
compa(b) = will be negative as cos<0
multiply proja(b) by -1
(for cross product)
determinant of a 2 x 2 matrix
M = (a, b)
(c, d)
det(M) = ad - bc
|a b| = ad - bc
|c d|