Tuesday, July 23, 2019

linear algebra - Determinant of a special ntimesn matrix


Compute the determinant of the nun matrix: (211121112)


For n=2, I have(2112)


Then det=3.


For n=3, we have (211121112)


Then det=4.


For n=4 again we have


(2111121111211112) Then det=5


How can I prove that the determinant of nun matrix is n+1.



Answer



A standard result (http://en.wikipedia.org/wiki/Matrix_determinant_lemma) is det.


Since the matrix above can be written as I+ e e^T, where e is a vector of ones, we have \det(I+ e e^T) = \det(1+ e^T e) = 1+e^Te = n+1.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f \colon A \rightarrow B and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...