Category: Linear Algebra & Matrix Calculus
A matrix represents a linear spatial transformation map. Multiplying a matrix by a vector rotates, stretches, or shears coordinate positions within an n-dimensional space.
To multiply two matrices together, the inner dimensions must match perfectly. If Matrix A is size m × n and Matrix B is size n × p, the output Matrix C will be size m × p. You multiply rows by columns using dot product summation tracking.
In standard arithmetic, scalar multiplication is commutative: 5 × 3 = 3 × 5. In linear algebra, matrix operations are strictly non-commutative. Let us prove mathematically that A × B ≠ B × A using an explicit algebraic counterexample matrix map.