| New Reply |
How to compute the determinant of this matrix? |
Share Thread | Thread Tools |
| Jul6-12, 09:12 PM | #1 |
|
|
How to compute the determinant of this matrix?
Let $$A$$ be the $$n\times n$$ matrix:
\begin{equation} A= \begin{bmatrix} % or pmatrix or bmatrix or Bmatrix or ... 2 & 1&\dots & 1 & 1 \\ 1 & 2&\dots & 1 & 1 \\ \vdots&\ddots & \ddots & 2 & 1 \\ 1 & & \dots & 1&2 \\ \end{bmatrix} \end{equation} (2s along the diagonal and 1s everywhere else.) Compute the determinant of $$A$$. Here is what I did. As usual, let $$I$$ be the identity matrix. Observe that $$A=I+B$$ where $$B$$ is a square matrix such that every element is 1. Next we can use the Taylor series expansion of the determinant \begin{align} \det(I + B) = \sum_{k=0}^{\infty} \frac{1}{k!} \left( - \sum_{j=1}^{\infty} \frac{(-1)^j}{j}\mathrm{tr}(B^j) \right) ^k.\end{align} Note that $$\mathrm{tr}\left(B^j\right)$$ is always $$n^j$$, and so it follows that \begin{align} \det(A)& = \sum_{k=0}^{\infty} \frac{1}{k!} \left( - \sum_{j=1}^{\infty} \frac{(-1)^j}{j}n^j \right) ^k\, , \end{align} The well known series expansions \begin{equation} -\sum _{j=1}^{\infty }{\frac { \left( -1 \right) ^{j}}{j}}{n}^{j}=\log(n+1) \end{equation} and \begin{equation} \sum_{k=0}^\infty\frac{f(n)^k}{k!}=\exp{f(n)} \end{equation} allow us to conclude that the determinant is $$n+1.$$ I was wondering if there was a simpler way to do this problem. |
| Jul6-12, 09:45 PM | #2 |
|
|
1) It's easy to see, inductively, that [tex]\begin{equation}\left|\begin{pmatrix} 1&1&1&....&1\\1&2&1&...&1\\...&...&...&...&...\\1&1&1&...&2\end{pmatrix }\right|\end{equation}=1[/tex]Say, substract first row from second, develop by minors of the new 2nd row, etc. So substracting the third row from the 2nd one in the original matrix, we get: [tex]\begin{equation}\left|\begin{matrix} 2&1&1&...&1\\1&2&1&...&1\\0&\!\!\!-1&1&...&0\\...&...&...&...&...\\1&1&1&...&2 \end{matrix}\right|\end{equation}[/tex] Developing wrt the third row, using the above fact and induction we get what we want. DonAntonio |
| Jul7-12, 11:54 AM | #3 |
|
|
Thanks DonAntonio
|
| Jul7-12, 06:23 PM | #4 |
Recognitions:
|
How to compute the determinant of this matrix?
Another way is to factorize A = LU where L is unit lower triangular and U is upper triangular. Use Crout's verison of Gaussian elimination.
The diagonals of U are 2, 3/2, 4/3, 5/4, .... (n+1)/n. The determinant is the product of the diagonals = n+1 |
| Jul8-12, 12:08 AM | #5 |
|
|
Thanks AlephZero, I am going to learn about Crouts version.
|
| New Reply |
| Thread Tools | |
Similar Threads for: How to compute the determinant of this matrix?
|
||||
| Thread | Forum | Replies | ||
| NxN-complex matrix, identified 2Nx2N-real matrix, determinant | Linear & Abstract Algebra | 2 | ||
| How to compute the rotation matrix | Linear & Abstract Algebra | 6 | ||
| Finding determinant given determinant of another matrix | Calculus & Beyond Homework | 3 | ||
| Compute determinant of a skew-symmetric matrix | Linear & Abstract Algebra | 3 | ||
| how to compute logarithm of orthogonal matrix? | Calculus | 8 | ||