Reckoning of Sand
- 13
- 0
Homework Statement
Let A be an nxn matrix, and C be an mxm matrix, and suppose AB = BC.
(a) Prove the following by induction: For every n∈ℕ, (A^n)B = B(C^n). What property of matrix multiplication do you need to prove this?
Homework Equations
The four basic properties of matrix multiplication discussed in my course are
1. Distributive: (A + B)C = AC + BC and C(A + B) = CA + CB
2. Scalar Commutativity: (tA)B = t(AB) = A(tB)
3. Associative: A(BC) = (AB)C
The Attempt at a Solution
If n = 1, then (A^n)B = B(C^n) becomes (A^1)B = B(C^1) which isAB = BC which is supposed to be true.
Assume (A^n)B = B(C^n) is true for n = k. Then (A^k)B = B(C^k) is true.
Prove (A^n)B = B(C^n) is true for n = k + 1.
(Ak+1)B = B(Ck+1) ⇒ (A(A^k))B = B(C(C^k))
I'm not really sure how to proceed. I tried rewriting the matrix products as the summations of the products of their entries, but that didn't seem to get me anywhere. I know that I have to relate the equation when n = k + 1 to the equation when n = k as part of induction, but I'm still stuck.