Linear Algebra/Matrix Equation
From Wikibooks, open books for an open world
Diagonal Matrix [edit]
A diagonal matrix,
, is a square matrix in which the entries outside of the main diagonal are zero. The main diagonal of a square matrix consists of the entries which run from the top left corner to the bottom right corner.
In the example below the main diagonal are 
Identity Matrix [edit]
The identity matrix, with a size of n, is an n-by-n square matrix with ones on the main diagonal and zeros elsewhere. It is commonly denoted as
, or simply by I if the size is immaterial or can be easily determined by the context.
The most important property of the identity matrix is that, when multiplied by another matrix, A, the result will be A
and
.
This page may need to be 
![I_1=[1] \quad I_2=\begin{bmatrix}1 & 0 \\ 0 & 1\end{bmatrix} \quad I_3=\begin{bmatrix}1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1\end{bmatrix} \quad I_n=\begin{bmatrix}1 & 0 & \cdots & 0 \\ 0 & 1 & \cdots & 0 \\ \vdots & \vdots & \ddots & \vdots \\ 0 & 0 & \cdots & 1\end{bmatrix}](http://upload.wikimedia.org/math/f/7/d/f7d0ed324dbb84c4cb5317eedac9b2d9.png)
and
.