Laws of matrix algebra

In this section, we summarize a few useful properties of the matrix operations we have introduced. Some have been pointed out along the way; some are trivial to check, and some would require a technical proof that we prefer to avoid.

A few properties of matrix addition and multiplication that are formally identical to properties of addition and multiplication of scalars:

  • (A + B) + C = A + (B + C)
  • A + B = B + A
  • (AB)C = A(BC)
  • A(B + C) = AB + AC

Matrix multiplication is a bit peculiar since, in general, AB ≠ BA, as we have already pointed out. Other properties involve matrix transposition:

  • (AT)T = A
  • (rA)T = rAT
  • (A ± B)T = AT ± BT
  • (AB)T = BT AT

They are all fairly trivial except for the last one, which we have already pointed out. A few more properties involve inversion. If A and B are square and invertible, as well as of the same dimension, then:

  • (A−1)−1 = A
  • (AT)−1 = (A−1)T
  • AB is invertible and (AB)−1 = B−1 A−1

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *