Properties of Matrix Operations
Properties of Matrix Operations
Properties of Addition The basic properties of addition for real numbers also hold true for matrices. Let A, B and C be m x n matrices 1. A + B = B + A commutative associative
2. A + (B + C) = (A + B) + C
4. For any m x n matrix A there is an m x n matrix B (called -A) with A+B = O additive inverse
The proofs are all similar. We will prove the first property. Proof of Property 1 We have (A + B)ij = Aij + Bij = Bij + Aij = (B + A)ij definition of addition of matrices
Notice that the zero matrix is different for different m and n. For example
Properties of Matrix Multiplication Unlike matrix addition, the properties of multiplication of real numbers do not all generalize to matrices. Matrices rarely commute even if AB and BA are both defined. There often is no multiplicative inverse of a matrix, even if the matrix is a square matrix. There are a few properties of multiplication of real numbers that generalize to matrices. We state them now. Let A, B and C be matrices of dimensions such that the following are defined. Then 1. A(BC) = (AB)C 2. A(B + C) = AB + AC 3. (A + B)C = AC + BC associative distributive distributive
We will often omit the subscript and write I for the identity matrix. The identity matrix is a square scalar matrix with 1's along the diagonal. For example
We will prove the second property and leave the rest for you. Proof of Property 2 Again we show that the general element of the left hand side is the same as the right hand side. We have (A(B + C))ij = (Aik(B + C)kj) = (Aik(Bkj + Ckj)) = (AikBkj + AikCkj) = AikBkj + AikCkj = (AB)ij + (AC)ij definition of matrix multiplication
definition of matrix addition distributive property of the real numbers commutative property of the real numbers definition of matrix multiplication
We have
so that
We have
so that
Properties of Scalar Multiplication Since we can multiply a matrix by a scalar, we can investigate the properties that this multiplication has. All of the properties of multiplication of real numbers generalize. In particular, we have Let r and s be real numbers and A and B be matrices. Then 1. r(sA) = (rs)A 2. (r + s)A = rA + sA 3. r(A + B) = rA + rB 4. A(rB) = r(AB) = (rA)B We will prove property 3 and leave the rest for you. We have (r(A + B))ij = (r)(A + B)ij = (r)(Aij + Bij) = rAij + rBij = (rA)ij + (rB)ij = (rA + rB)ij definition of scalar multiplication
definition of addition of matrices distributive property of the real numbers definition of scalar multiplication definition of addition of matrices
Properties of the Transpose of a Matrix Recall that the transpose of a matrix is the operation of switching rows and columns. We state the following properties. We proved the first property in the last section. Let r be a real number and A and B be matrices. Then 1. (AT)T = A 2. (A + B)T = AT + BT 3. (AB)T = BTAT 4. (rA)T = rAT