Exercise 1.2.5

Start with a matrix B. If we want to take combinations of its rows, we premultiply by A to get AB. If we want to take combinations of its columns, we postmultiply by C to get BC. For this question we will do both.

  • Row operations then column operations First AB then (AB)C
  • Column operations then row operations First BC then A(BC)

The associative law says that we get the same final result both ways. Verify (AB)C = A(BC) for

A = [ 1a 0 1 ]B = [ b1b2 b3b4 ] C = [ 10 c 1 ].

Answers

(AB)C = [b1 + ab3b2 + ab4 b3 b4 ] [ 10 c 1 ] = [b1 + ab3 + cb2 + acb4b2 + ab4 b3 + cb4 b4 ]
A(BC) = [1a 0 1 ] [b1 + cb2b2 b3 + cb4b4 ] = [b1 + ab3 + cb2 + acb4b2 + ab4 b3 + cb4 b4 ]

So we have verified (AB)C = A(BC).

User profile picture
2020-03-20 00:00
Comments