41. Zero Matrix

The zero matrix 0𝑚×𝑛 is the 𝑚×𝑛 matrix with every entry equal to 0.

02×3=[000000]

The zero vector is the 𝑛×1 zero matrix:

𝟎=[000]

41.1. Why it’s “the zero”

It’s the additive identity for matrix addition:

𝐴+0=0+𝐴=𝐴

And the absorbing element for matrix multiplication:

𝐴0=0𝐴=0

(provided shapes are compatible — note the result 0 may have different shape than the input 0.)

41.2. Key properties

41.3. Where the zero vector matters