- #1
Vespero
- 28
- 0
Homework Statement
Theorem. Let A be a k by k matrix, let D have size n by n and let C have size n by k. Then
[tex]det \left(\begin{array}{cc}A&0\\C&D\end{array}\right) = (det A)\cdot (det D)[/tex].
Proof. First show that
[tex]\left(\begin{array}{cc}A&0\\0&I_{n}\end{array}\right) \cdot \left(\begin{array}{cc}I_{k}&0\\C&D\end{array}\right) = \left(\begin{array}{cc}A&0\\C&D\end{array}\right)[/tex]
Then use the following lemma:
Let A be an n by n matrix; let b denote its entry in row i and column j.
(a) If all the entries in row i other than b vanish, then
[tex]det A = b(-1)^{i+j}det A_{ij}[/tex]
(b) The same equation holds if all the entries in column j other than the entry b vanish.
Homework Equations
The Attempt at a Solution
I am attempting to show the first part of the problem, where our initial matrix is broken into two further matrices. Given the dimensions of the block matrices, or even writing out the entire matrices with individual entries and multiplying (since all multiplications are in essence the rows and columns of the block matrices multiplied either by standard base matrices or by zero matrices), it is readily apparent that the equation holds true. However, I am not sure how to write this out in a way that is concise, possibly utilizing sigma notation. (I haven't taken a "higher level" math class in a while, so even when things make sense intuitively or computationally, I'm not sure how to notate them.)
On the second part, (using the lemma), it is again apparent that the determinants of the two matrices simplify down to det A and det D by recursively using the lemma on the diagonal of the identity matrix until one is left with the determinant of the other matrix on the diagonal, but I'm not sure how to write this concisely.
In essence, I suppose my problem is less one of how to understand or solve the problem, but how to write my solution in a manner that isn't rambling and unelegant.