simple.wikipedia.org

Matrix (mathematics) - Simple English Wikipedia, the free encyclopedia

  • ️Wed Mar 25 2020

From Simple English Wikipedia, the free encyclopedia

(Redirected from Columns)

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 list of a list of numbers, where each list in the list has the same number of numbers. It's often represented as 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).

Matrices are often represented by capital roman letters such as {\displaystyle A}, {\displaystyle B} and {\displaystyle C},[1] and there are rules for adding, subtracting and "multiplying" matrices together, but the rules are different than for numbers.[2] As an example, the product {\displaystyle AB} does not always give the same result as {\displaystyle BA}, which is the case for the multiplication of ordinary numbers.[3] 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 a single 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, engineering, physics, economics, and statistics.[4]

The horizontal lines in a matrix are called rows. 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). m and n are called its dimensions.

The places in the matrix where the numbers are, are called entries.[2] The entry of a matrix called "A" that is 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.

{\displaystyle A:=(a_{ij})_{m\times n}} defines a m × n matrix called A. Each entry in this matrix is called ai,j when "i" is between 1 and m, and when j is between 1 and n.

The matrix

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

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.

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:

{\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}}}

The two matrices have the same dimensions. Here, {\displaystyle A+B=B+A} is true (and is true in general for matrices of equal dimensions).

The multiplication of two matrices is a bit more complicated. First, find the dimensions of each matrix as {\displaystyle m\times n}, where {\displaystyle m} is the number of rows, and {\displaystyle n} is the number of columns. If {\displaystyle A} has dimensions {\displaystyle m_{1}\times n_{1}} and {\displaystyle B} has dimensions {\displaystyle m_{2}\times n_{2}}, then the matrix {\displaystyle AB} will have dimensions {\displaystyle m_{1}\times n_{2}}. The values of {\displaystyle n_{1}}and {\displaystyle m_{2}} must be equal, or else the multiplication of the two matrices is impossible.[3]

Multiply each row by each column. In the following example, to get the top left value of the resulting matrix, get the first row of the first matrix, {\displaystyle [a_{1},a_{2}]}, and the first column of the second matrix, {\displaystyle [b_{1},b_{3}]}. Then sum the products of each corresponding index: {\displaystyle (a_{1}\times b_{1}+a_{2}\times b_{3})}.

{\displaystyle {\begin{bmatrix}a_{1}&a_{2}\\a_{3}&a_{4}\\\end{bmatrix}}\cdot {\begin{bmatrix}b_{1}&b_{2}\\b_{3}&b_{4}\\\end{bmatrix}}={\begin{bmatrix}(a_{1}\cdot b_{1}+a_{2}\cdot b_{3})&(a_{1}\cdot b_{2}+a_{2}\cdot b_{4})\\(a_{3}\cdot b_{1}+a_{4}\cdot b_{3})&(a_{3}\cdot b_{2}+a_{4}\cdot b_{4})\\\end{bmatrix}}}

This is an example with numbers:

{\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}}}

There are some matrices that are special.

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

An example of a square matrix is

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

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

Every square dimension set of a matrix has a special counterpart called the "identity matrix", represented by the symbol {\displaystyle I}.[1] The identity matrix has nothing but zeroes except on the main diagonal, where there are all ones. For example:

{\displaystyle {\begin{bmatrix}1&0&0\\0&1&0\\0&0&1\\\end{bmatrix}}}

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.

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

{\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}}}

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

The formula for the inverse of a 2x2 matrix, {\displaystyle A={\begin{bmatrix}x&y\\z&v\end{bmatrix}}} is:

{\displaystyle {\frac {1}{\det(A)}}{\begin{bmatrix}v&-y\\-z&x\end{bmatrix}}}

Where {\displaystyle \det } is the determinant of the matrix. In a 2x2 matrix, the determinant is equal to:

{\displaystyle {xv-yz}}

If the determinant is 0, then it is referred to as 'singular', and has no inverse.[6]

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

The determinant takes a square matrix and calculates a simple number, a scalar. To understand what this 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: {\displaystyle \det \left({\begin{bmatrix}a&b\\c&d\\\end{bmatrix}}\right)=ad-bc}

For 3x3 matrices the formula is more complicated: {\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})}

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.

There are three rules that all determinants follow. These are:

  1. 1.0 1.1 "Comprehensive List of Algebra Symbols". Math Vault. 2020-03-25. Retrieved 2020-08-19.
  2. 2.0 2.1 "Matrices". www.mathsisfun.com. Retrieved 2020-08-19.
  3. 3.0 3.1 "How to Multiply Matrices". www.mathsisfun.com. Retrieved 2020-08-19.
  4. 4.0 4.1 4.2 "Matrix | mathematics". Encyclopedia Britannica. Retrieved 2020-08-19.
  5. Weisstein, Eric W. "Matrix". mathworld.wolfram.com. Retrieved 2020-08-19.
  6. "Singular Matrix - Definition, Properties, Examples, Meaning". Cuemath. Retrieved 2024-09-20.

Wikimedia Commons has media related to Matrices.

History
Online books