Matrix (mathematics)

From TCS Wiki
Jump to navigation Jump to search
File:Matrix.svg
Specific entries of a matrix are often referenced by using pairs of subscripts, for the numbers at each of the rows & columns.

In mathematics, a matrix (plural: matrices) is a rectangle of numbers, arranged in 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, [math]\displaystyle{ A \cdot B }[/math] does not always give the same result as [math]\displaystyle{ B \cdot A }[/math], 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.

Definitions and notations

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 [math]\displaystyle{ A:=(a_{ij})_{m \times n} }[/math] to define an m × n matrix A with each entry in the matrix called ai,j for all 1 ≤ im and 1 ≤ jn.

Example

The matrix

[math]\displaystyle{ \begin{bmatrix} 1 & 2 & 3 \\ 1 & 2 & 7 \\ 4 & 9 & 2 \\ 6 & 1 & 5 \end{bmatrix} }[/math]

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

Addition

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:

[math]\displaystyle{ \begin{bmatrix} 1 & 3 & 2 \\ 1 & 0 & 0 \\ 1 & 2 & 2 \end{bmatrix} + \begin{bmatrix} 0 & 0 & 5 \\ 7 & 5 & 0 \\ 2 & 1 & 1 \end{bmatrix} = \begin{bmatrix} 1+0 & 3+0 & 2+5 \\ 1+7 & 0+5 & 0+0 \\ 1+2 & 2+1 & 2+1 \end{bmatrix} = \begin{bmatrix} 1 & 3 & 7 \\ 8 & 5 & 0 \\ 3 & 3 & 3 \end{bmatrix} }[/math]

The two matrices have the same dimensions. Here [math]\displaystyle{ A + B = B + A }[/math] is true.

Multiplication of two matrices

The multiplication of two matrices is a bit more complicated:

[math]\displaystyle{ \begin{bmatrix} a1 & a2 \\ a3 & a4 \\ \end{bmatrix} \cdot \begin{bmatrix} b1 & b2 \\ b3 & b4 \\ \end{bmatrix} = \begin{bmatrix} (a1\cdot b1 + a2 \cdot b3) & (a1 \cdot b2 + a2 \cdot b4) \\ (a3\cdot b1 + a4 \cdot b3) & (a3 \cdot b2 + a4 \cdot b4) \\ \end{bmatrix} }[/math]

So with Numbers:

[math]\displaystyle{ \begin{bmatrix} 3 & 5 \\ 1 & 4 \\ \end{bmatrix} \cdot \begin{bmatrix} 2 & 3 \\ 5 & 0 \\ \end{bmatrix} = \begin{bmatrix} (3\cdot 2 + 5 \cdot 5) & (3 \cdot 3 + 5 \cdot 0) \\ (1\cdot 2 + 4 \cdot 5) & (1 \cdot 3 + 4 \cdot 0) \\ \end{bmatrix} = \begin{bmatrix} 31 & 9 \\ 22 & 3 \\ \end{bmatrix} }[/math]
  • 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 [math]\displaystyle{ A \cdot B \neq B \cdot A }[/math]
  • the multiplication of matrices is associative, which means that [math]\displaystyle{ (A \cdot B)\cdot C = A\cdot(B\cdot C) }[/math]

Special matrices

There are some matrices that are special.

Square matrix

A square matrix has the same number of rows as columns, so m=n.

An example of a square matrix is

[math]\displaystyle{ \begin{bmatrix} 5 & -2 & 4 \\ 0 & 9 & 1 \\ -7 & 6 & 8 \\ \end{bmatrix} }[/math]

This matrix has 3 rows and 3 columns: m=n=3.

Identity

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:

[math]\displaystyle{ \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \\ \end{bmatrix} }[/math]

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

An inverse matrix is a matrix that, when multiplied by another matrix, equals the identity matrix. For example:

[math]\displaystyle{ \begin{bmatrix} 7 & 8 \\ 6 & 7 \\ \end{bmatrix} \cdot \begin{bmatrix} 7 & -8 \\ -6 & 7\\ \end{bmatrix} = \begin{bmatrix} 1 & 0 \\ 0 & 1 \\ \end{bmatrix} }[/math]

[math]\displaystyle{ \begin{bmatrix} 7 & -8 \\ -6 & 7 \\ \end{bmatrix} }[/math] is the inverse of [math]\displaystyle{ \begin{bmatrix} 7 & 8 \\ 6 & 7 \\ \end{bmatrix} }[/math].

One column matrix

A matrix, that has many rows, but only one column, is called a column vector.

Determinants

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: [math]\displaystyle{ \det\left( \begin{bmatrix} a & b \\ c & d \\ \end{bmatrix}\right) =ad - bc }[/math]

For 3x3 matrices the formula is more complicated: [math]\displaystyle{ \det\left( \begin{bmatrix} a_1 & b_1 & c_1 \\ a_2 & b_2 & c_2 \\ a_3 & b_3 & c_3 \\ \end{bmatrix}\right) = a_1(b_2 c_3 - c_2 b_3) - a_2(b_1 c_3 - c_1 b_3) + a_3(b_1 c_2 - c_1 b_2) }[/math]

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

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 [math]\displaystyle{ v_1 }[/math] and [math]\displaystyle{ v_2 }[/math], then the determinant of M is the sum of the determinants of M with [math]\displaystyle{ v_1 }[/math] in place of v and M with [math]\displaystyle{ v_2 }[/math] in place of v. These two conditions are called multi-linearity.

Other websites

Template:Wikibooks Template:Wikiversity

History
Online books