Linear Algebra/Matrix operations

Exercise 2c ka question no.3 edition 2018

Addition of Matrices edit

Two matrices can be added together only if they have the same dimensions (the same number of rows and columns). The resultant matrix is simply the matrix whose elements are the sum of the elements in the two matrices that were added together. If a matrix   is added to a matrix   and the resultant matrix is  , then  .

 

Multiplication of Matrices edit

 

Two matrices may be multiplied together only if the number of columns in the first matrix is equal to the rows in the second matrix. That is, if the first matrix is  , then the second matrix must be  . The resulting matrix will have a dimension of  , where each element is the sum of the products of the entries in a row of the first matrix with the entries of the corresponding column in the second matrix. If  , then  .

Although matrix multiplication is not commutative, it is associative, which means that (AB)C=A(BC). Since matrix multiplication is not commutative, the order of the factors must be specified. AB would be read as "A post-multiplied by B" or "B premultiplied by A." Matrix multiplication obeys the distributive property, so A(B+C)=AB+AC. Also, two nonzero matrices do not necessarily have a nonzero product.

There is no such thing as "Matrix Division". To divide out a matrix, you need first to obtain the inverse of the matrix, and then multiply by the inverse. We discuss inverses below.

Transpose edit

To obtain the transpose of a matrix, we swap the rows and the columns of that matrix. If we have a matrix X, the transpose is denoted XT. For example:

 
 

Determinant edit

The determinant of a matrix, X is denoted by |X|.

Inverse Matrix edit

If the matrix has a non-zero determinant, the matrix is said to be invertable. Inverse matrices follow the given formula:

 

Where I is the identity matrix.