matrix operations
A matrix is an array, or a rectangular grid, of numbers. An matrix is one which has rows and columns. Examples of matrices include:
-
•
The matrix
-
•
The matrix
-
•
The matrix
-
•
The matrix
All of our example matrices (except the last one) have entries which are integers. In general, matrices are allowed to have their entries taken from any ring . The set of all matrices with entries in a ring is denoted . If a matrix has exactly as many rows as it has columns, we say it is a square matrix.
Addition of two matrices is allowed provided that both matrices have the same number of rows and the same number of columns. The sum of two such matrices is obtained by adding their respective entries. For example,
Multiplication of two matrices is allowed provided that the number of columns of the first matrix equals the number of rows of the second matrix. (For example, multiplication of a matrix with a is allowed, but multiplication of a matrix with a matrix is not allowed, since the first matrix has 3 columns, and the second matrix has 2 rows, and 3 doesn’t equal 2.) In this case the matrix multiplication is defined by
We will describe how matrix multiplication works is with an example. Let
be the two matrices that we used above as our very first two examples of matrices. Since is a matrix, and is a matrix, it is legal to multiply and , but it is not legal to multiply and . The method for computing the product is to place below and to the left of , as follows:
is always in the bottom left corner, is in the top right corner, and the product, , is always in the bottom right corner. We see from the picture that will be a matrix. (In general, has as many rows as , and as many columns as .)
Let us compute the top left entry of , denoted by in the above picture. The way to calculate this entry of (or any other entry) is to take the dot product of the stuff above it [which is ] and the stuff to the left of it [which is ]. In this case, we have
Similarly, the top middle entry of (where the is in the above picture) is gotten by taking the dot product of the stuff above it: , and the stuff to the left of it: , which gives
Continuing in this way, we can compute every entry of one by one to get
and so
If one tries to compute the illegal product using this procedure, one winds up with
The top left entry of this illegal product (marked with a above) would have to be the dot product of the stuff above it: , and the stuff to the left of it: , but these vectors do not have the same length, so it is impossible to take their dot product, and consequently it is impossible to take the product of the matrices .
Under the correspondence of matrices and linear transformations, one can show that matrix multiplication is equivalent to composition of linear transformations, which explains why matrix multiplication is defined in a manner which is so odd at first sight, and why this strange manner of multiplication is so useful in mathematics.
Title | matrix operations |
---|---|
Canonical name | MatrixOperations |
Date of creation | 2013-03-22 13:57:54 |
Last modified on | 2013-03-22 13:57:54 |
Owner | djao (24) |
Last modified by | djao (24) |
Numerical id | 6 |
Author | djao (24) |
Entry type | Definition |
Classification | msc 15-00 |
Defines | matrix addition |
Defines | matrix multiplication |
Defines | matrix product |
Defines | standard matrix multiplication |