Concept Flow - np.eye() for identity matrices
Call np.eye(n)
Create n x n matrix
Fill diagonal with 1s
Fill off-diagonal with 0s
Return identity matrix
np.eye(n) creates an n by n matrix with 1s on the diagonal and 0s elsewhere, forming an identity matrix.