Matrix operations — the broader family that includes addition, subtraction, multiplication, transposition, and inversion.
Scalar multiplication — multiplying every entry of a matrix by a number; like addition, it is element-wise and preserves shape.
Matrix multiplication — a non-element-wise operation with different conformability rules and very different geometric meaning.
Hadamard product — element-wise multiplication of two matrices of the same shape, the multiplicative analogue of matrix addition.
Vector addition — the special case where both matrices are row or column vectors; the same element-wise rule applies.
Zero matrix — the additive identity, with every entry equal to zero.
Transpose — reflecting a matrix across its main diagonal; useful when combining matrices of incompatible shapes through related operations.