Matrix (mathematics)
In mathematics, a matrix (plural: matrices) is a rectangular table of cells of numbers, with rows and columns. The rows are each left-to-right (horizontal) lines, and the columns go top-to-bottom (vertical). The top-left cell is at row 1, column 1 (see diagram at right).
There are rules for adding, subtracting and "multiplying" matrices together, but the rules are different than for numbers. As an example,
does not always give the same result as
, which is the case for the multiplication of ordinary numbers. A matrix can have more than 2 dimensions, such as a 3D matrix. Also, a matrix can be one-dimensional, as a single row or column.
Many natural sciences use matrices quite a lot. In many universities, courses about matrices (usually called linear algebra) are taught very early, sometimes even in the first year of studies. Matrices are also very common in computer science.
Contents
Definitions and notations[change | change source]
The horizontal lines in a matrix are called rows and the vertical lines are called columns. A matrix with m rows and n columns is called an m-by-n matrix (or m×n matrix) and m and n are called its dimensions.
The places in the matrix where the numbers are is called entries. The entry of a matrix A that lies in the row number i and column number j is called the i,j entry of A. This is written as A[i,j] or ai,j.
We write
to define an m × n matrix A with each entry in the matrix called ai,j for all 1 ≤ i ≤ m and 1 ≤ j ≤ n.
Example[change | change source]
The matrix
is a 4×3 matrix. This matrix has m=4 rows, and n=3 columns.
The element A[2,3] or a2,3 is 7.
Operations[change | change source]
Addition[change | change source]
The sum of two matrices is the matrix, which (i,j)-th entry is equal to the sum of the (i,j)-th entries of two matrices:
The two matrices have the same dimensions. Here
is true.
Multiplication of two matrices[change | change source]
The multiplication of two matrices is a bit more complicated:
So with Numbers:
- two matrices can be multiplied with each other even if they have different dimensions, as long as the number of columns in the first matrix is equal to the number of rows in the second matrix.
- the result of the multiplication, called the product, is another matrix with the same number of rows as the first matrix and the same number of columns as the second matrix.
- the multiplication of matrices is not commutative, which means in general that

- the multiplication of matrices is associative, which means that

Special matrices[change | change source]
There are some matrices that are special.
Square matrix[change | change source]
A square matrix has the same number of rows as columns, so m=n.
An example of a square matrix is
This matrix has 3 rows and 3 columns: m=n=3.
Identity[change | change source]
Every square dimension set of a matrix has a special counterpart called an "identity matrix". The identity matrix has nothing but zeroes except on the main diagonal, where there are all ones. For example:
is an identity matrix. There is exactly one identity matrix for each square dimension set. An identity matrix is special because when multiplying any matrix by the identity matrix, the result is always the original matrix with no change.
Inverse matrix[change | change source]
An inverse matrix is a matrix that, when multiplied by another matrix, equals the identity matrix. For example:
is the inverse of
.
One column matrix[change | change source]
A matrix, that has many rows, but only one column, is called a column vector.
Determinants[change | change source]
The determinant takes a square matrix and returns a number. To understand what the number means, take each column of the matrix and draw it as a vector. The parallelogram drawn by those vectors has an area, which is the determinant. For all 2x2 matrices, the formula is very simple: 
For 3x3 matrices the formula is more complicated: 
There are no simple formulas for the determinants of larger matrices, and many computer programmers study how to get computers to quickly find large determinants.
Properties of determinants[change | change source]
There are three rules that all determinants follow. These are:
- The determinant of an identity matrix is 1
- If two rows or two columns of the matrix are exchanged, then the determinant is multiplied by -1. Mathematicians call this alternating.
- If all the numbers in one row or column are multiplied by another number n, then the determinant is multiplied by n. Also, if a matrix M has a column v that is the sum of two column matrices
and
, then the determinant of M is the sum of the determinants of M with
in place of v and M with
in place of v. These two conditions are called multi-linearity.
Other websites[change | change source]
| The English Wikibook Linear Algebra has more information on: |
| Wikiversity has more on: Matrices at |
- History
- MacTutor: Matrices and determinants
- Matrices and Linear Algebra on the Earliest Uses Pages
- Earliest Uses of Symbols for Matrices and Vectors
- Online books
- Kaw, Autar K., Introduction to Matrix Algebra,
, http://autarkaw.com/books/matrixalgebra/index.html
- Brookes, M. (2005), The Matrix Reference Manual, London: Imperial College, http://www.ee.ic.ac.uk/hp/staff/dmb/matrix/intro.html, retrieved 12/10/2008









and
, then the determinant of M is the sum of the determinants of M with