Chapter 12 - Vectors (3D) Flashcards
1
Q
How do you calculate the distance from the origin to the point (x, y, z)?
A
sq root (x2 + y2 + z2)
2
Q
How do you calculate the distance between (x1, y1, z1) and (x2, y2, z2)?
A
sqroot [(x2 - x1)2 + (y2 - y1)2 + (z2 - z1)2]
3
Q
If the vector a = xi + yj + zk makes an angle θx with the positive x axis, how do you calculate cos θx?
A
= x / | a |
Similarly cos θy = y / | a |
and cos θz = z / | a |
4
Q
A