๐ฆ Zero Matrix
๐น Motivation
The zero matrix represents the additive identity in matrix algebra. Itโs the matrix equivalent of zero in scalar arithmeticโadding it to any matrix of the same dimensions leaves the original unchanged.
๐น Definition
A zero matrix is an $n \times m$ matrix where every entry is zero. Itโs denoted by:
- $\mathbf{0}_{n \times m}$ for general dimensions
- $\mathbf{0}$ when the context or shape is clear (e.g., row or column vector)
๐น Examples
- General rectangular zero matrix: $$ \mathbf{0}_{2 \times 4} = \begin{bmatrix} 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 \end{bmatrix} $$
- Zero row vector: $$ \mathbf{0} = [0 \quad 0 \quad 0 \quad 0] $$
- Zero column vector: $$ \mathbf{0} = \begin{bmatrix} 0 \\ 0 \end{bmatrix} $$
๐น Properties
| Operation | Result |
|---|---|
| $A + \mathbf{0}_{n \times m}$ | $A$ |
| $\mathbf{0} \cdot A$ | $0$ |
| $A \cdot \mathbf{0}$ | $0$ (if dimensions match) |
๐น Semantic Audit Flags
- โ Shape-sensitive: Must match dimensions of operand in addition.
- โ ๏ธ Multiplication ambiguity: $A \cdot 0$ only valid if inner dimensions align.
- โ Neutral element under addition.
Last updated on