Dot Product

  • Find the interior angle between two vectors

AB=|A||B|cosθ

θ=arccos(AB|A||B|)

where AB=Ax×Ay+Bx×By

Cross Product

  • Get perpendicular vector from two vectors
  • Find area created by two vectors (for 2D, parallelogram area, for 3D, parallelepiped area)
    • This is the magnitude of perpendicular vector

Matrix Multiplication

There is a formula for calculating the resultant matrix from a matrix multiplication.

[X22Y11+X12Y21X22Y12+X12Y22X11Y21+X21Y11X11Y22+X21Y12]

But it’s much more meaningful to think of a matrix multiplication of multipling matrix A by each column of matrix B.

Similar how you would transform a vector by multiplying it by the matrix, you’re transforming each component of the matrix which describes the coordinate space.