Posts tagged parallel vectors
Determining whether vectors are orthogonal, parallel, or neither

We say that two vectors a and b are orthogonal if they are perpendicular (their dot product is 0), parallel if they point in exactly the same or opposite directions, and never cross each other, otherwise, they are neither orthogonal or parallel. Since it’s easy to take a dot product, it’s a good idea to get in the habit of testing the vectors to see whether they’re orthogonal, and then if they’re not, testing to see whether they’re parallel.

Read More