Math101Matrix Operations
A rigorous guide to matrix addition, scalar multiplication, transpose, powers, and operation laws.
Precise definition
Matrices of the same size add entrywise: $(A+B)_{ij}=a_{ij}+b_{ij}$. Scalar multiplication is $(cA)_{ij}=ca_{ij}$. The transpose $A^T$ switches rows and columns, so $(A^T)_{ij}=a_{ji}$. Matrix powers $A^k$ use repeated multiplication and require a square matrix.
Notation and mathematical language
Valid identities include $(A+B)^T=A^T+B^T$, $(AB)^T=B^TA^T$, and $A^0=I$ for square $A$. Entrywise or Hadamard multiplication $A\circ B$ is a separate operation and must not be confused with matrix multiplication.
Conceptual picture
Addition combines corresponding effects, scalar multiplication rescales them, and transpose reverses the input/output roles of a matrix relative to the Euclidean inner product. Shapes are a type system that prevents meaningless combinations.
Fully worked example
Interpretation and application
Matrix operations support data transformations, covariance calculations, graphics, and linear models. An operation can be syntactically valid but contextually meaningless, so mathematical interpretation should accompany shape checks.
