Wednesday, July 5, 2017

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(I+AB)=det(I+BA).



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


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...