Vectors
Information about
Dot products
Dot products compute the amount that two vectors point in the same direction.
Their most important information is captured by the sign:
- Zero: The vectors are perpindicular.
- Positive: The vectors are generally in the same direction.
- Negative: The vectors are generally in the opposite direction.
Getting more specific than this is useful for projections.
They can be computed:
(x1,y1)⋅(x2,y2)(x1,y1,z1)⋅(x2,y2,z2)=x1x2+y1y2=x1x2+y1y2+z1z2
Projections
Cross Products
Normal Vectors