2

I really struggle with this problem, how do you calculate the determinant of matrix $A \in \mathbb{R}^{n \times n}$, whose expression is $$ \begin{pmatrix} 2 & 1& ...& 1\\ 1& 2& ...& 1\\ 1& 1& 2& ...\\ 1& 1& ...& 2 \end{pmatrix} ? $$

mle
  • 2,287
krnflake
  • 63
  • 7
  • Did you try some induction? – DonAntonio Feb 02 '14 at 13:35
  • A more general problem which can be solved by very similar methods: http://math.stackexchange.com/questions/86644/determinant-of-a-specially-structured-matrix and http://math.stackexchange.com/questions/382799/a-problem-on-solving-a-determinant-equation – Martin Sleziak Dec 16 '14 at 15:46

2 Answers2

5

Hint

Add all the columns to the first one then subtract the first row from the other rows. Develop now according to the first column.

2

Hint: Find all the nonzero eigenvalues of $A - I$ with their multiplicities and recall that commuting matrices are simultaneously triangularizable.

  • 2
    I don't get the simultaneously triangularizable part. Certainly one does not need that rather deep fact to see that the eigenvalues (with algebraic multiplicities) of $A-I$ are obtained from those of $A$ by subtracting $1$ from each eigenvalue? – Marc van Leeuwen Feb 02 '14 at 13:58
  • @MarcvanLeeuwen Oh you're right, I don't know why I used this reasoning. Thank you. –  Feb 02 '14 at 14:43