(Redirected from Identity matrix)
There are no approved revisions of this page, so it may
not have been
reviewed.
This article page is a stub, please help by expanding it.
A matrix (plural matrices) is a rectangular array of numbers, symbols, or expressions, arranged in rows and columns. (A matrix is a tensor of rank 2.) The individual items in a matrix are called its elements or entries.
An
matrix
is commonly written using box brackets (an alternative notation uses large parentheses instead)
An example of a matrix with 3 rows and 5 columns is
Matrix operations
Unary matrix operations
Transpose
The
transpose of an
matrix
is the
matrix
formed by interchanging the
rows and
columns of
, i.e.
Binary matrix operations
Scalar multiplication
The
left scalar multiplication of a
scalar and a matrix
is defined as
and the
right scalar multiplication of a matrix
and a
scalar is defined as
-
Matrix addition
The sum
of two
matrices
and
is calculated entrywise, i.e.
The commutativity of the elements entails the commutativity of matrix addition, i.e.
Matrix multiplication
The
matrix multiplication of an
matrix
and an
matrix
is defined as
where the product matrix
is an
matrix.
Note that matrix multiplication is noncommutative, i.e.
Square matrices
A
square matrix is an
matrix
where the entries
constitute the
main diagonal of
.
The identity matrix
The
identity matrix is a
square matrix that has
1’s along the main diagonal and
0’s for all other entries. This matrix is often written simply as
, and is special in that it acts like
1 in
matrix multiplication.
Examples:
I1 = , I2 = , I3 = , I4 = 1 | | 0 | | 0 | | 0 |
0 | | 1 | | 0 | | 0 |
0 | | 0 | | 1 | | 0 |
0 | | 0 | | 0 | | 1 | |
, I5 = 1 | | 0 | | 0 | | 0 | | 0 |
0 | | 1 | | 0 | | 0 | | 0 |
0 | | 0 | | 1 | | 0 | | 0 |
0 | | 0 | | 0 | | 1 | | 0 |
0 | | 0 | | 0 | | 0 | | 1 | |
, ... |
Trace
- Main article page: Trace
The
trace of an
square matrix is defined as the sum of the elements on the
main diagonal (the diagonal from the upper-left to the lower-right), i.e.
-
tr (A) := ai i = a11 + a2 2 + ⋯ + an n . |
Determinant
- Main article page: Determinant
The
determinant of an
square matrix is denoted
or
.
The determinant of a
matrix (a
scalar) is defined as (here we avoid the notation
due to confusion with
absolute value)
The determinant of a
matrix is defined as
The determinant of an
square matrix is defined as
-
where the
minor is defined to be the determinant of the
matrix obtained from
by removing the
th row and the
th column. The expression
is known as the
cofactor of
.
Adjugate
The
adjugate of an
square matrix
is the
transpose of the
cofactor matrix of
, i.e.
-
where
is the
cofactor of
.
-
C i j := (−1) i + j M i j , 1 ≤ i ≤ n, 1 ≤ j ≤ n, |
and where
is the
minor of
.
Inverse
The
inverse of an
square matrix
is an
square matrix
defined implicitly as
-
where
is the
identity matrix (the
main diagonal entries being
1, all other entries being
0).
A matrix is invertible (regular) if and only if its determinant is nonzero, otherwise the matrix is noninvertible (singular). Laplace’s formula for the inverse matrix is
-
where
is the
adjugate matrix of
.
Eigenvectors and eigenvalues
- Main article page: Eigenvectors and eigenvalues
A nonzero
scalar and a nonzero
vector satisfying
-
are called an
eigenvalue and an
eigenvector of
, respectively. The nonzero scalar
is an eigenvalue of an
matrix
if and only if
is
not invertible, which is equivalent to
-
See also
External links