Loading...

Identity Matrix

The square matrix with 1s on the diagonal and 0s elsewhere; the matrix no-op.

When to use: Initialization (residual streams ≈ identity), ridge regularization, sanity-check baselines.

Example: I_3 = [[1,0,0],[0,1,0],[0,0,1]]. Ridge: (X^T X + αI) θ = X^T y.

More Linear Algebra Glossary terms