Linear Algebra/Matrix Equation

From testwiki
Revision as of 10:50, 13 July 2009 by imported>Thenub314 (categorizing.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Diagonal Matrix

A diagonal matrix, A, 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 a11,a22,...,ann

A=[a11000a22000ann]


Identity Matrix

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 In, or simply by I if the size is immaterial or can be easily determined by the context.

I1=[1]I2=[1001]I3=[100010001]In=[100010001]

The most important property of the identity matrix is that, when multiplied by another matrix, A, the result will be A

AIn=A and InA=A.

Template:BookCat