I want to calculate the inverse of a matrix resembling the following form: \begin{bmatrix} 1 &\rho &\rho^2 &\cdots &\rho^{n-1}\\ \rho& 1& \rho& \cdots &\rho^{n-2}\\ \rho^2& \rho& 1 &\cdots&\rho^{n-3}\\ \vdots&\vdots &\vdots &\ddots &\vdots\\ \rho^{n-1} & \rho^{n-2}&\rho^{n-3} &\cdots&1 \end{bmatrix} each line of the off-diagonal is a polynomial of $\rho$ and the exponential is increasing towards the boundary. I wonder how to solve this problem.
-
What is $\rho$? This will help determine when the matrix is invertible (i.e. if $\rho$ is a scalar equal to 1, the matrix is not invertible...). Also, what attempts have you made? – d4rk_1nf1n1ty May 21 '17 at 03:27
-
@d4rk_1nf1n1ty Thanks for your comment, of course some constraints will be posed on $\rho$ to guarantee that the matrix is invertible. I think that it kind of resemble the Toeplitz Matrix. I tried that, but somehow I did not work it out. Do you have any other comment on this problem? – WIND May 21 '17 at 03:46
-
By Maple, I see that the inverse of this special Toeplitz matrix, is a Tridiagonal matrix. I suggest, you first think about it's determinant when $p$ is a prime number. – Amin235 May 21 '17 at 04:32
-
https://math.stackexchange.com/q/975069/321264 – StubbornAtom Apr 01 '20 at 07:19
1 Answers
Your matrix $\bf A$ (say) has the typical element of the form $a_{ij}=\rho^{|i-j|}$.
This in fact is a known matrix form called the Kac-Murdock-Szegő matrix.
Let $D_n=\det \bf A$, then it is easily seen that it satisfies the relation $D_n=(1-\rho^2)D_{n-1}\quad, n\ge2$ by applying the operation $R_i'=R_i-\rho R_{i+1}\quad,i=1,2,...,n-1$ on $\bf A$.
As the matrix is transformed to a lower triangular form, it follows that $\det \mathbf A=(1-\rho^2)^{n-1}$.
So $\bf A$ is invertible iff $\rho\ne \pm1$ $\quad(\bf A$ is positive definite when $-1<\rho<1)$ .
Now as is shown in this answer, when $\bf A$ is positive definite, it can be decomposed as $\bf BB^\top$ where
$\bf B=\begin{bmatrix} 1 &0 & 0& \dots&0\\\rho & \sqrt{1-\rho^2} &0 &\dots &0\\\rho^2 & \rho\sqrt{1-\rho^2} & \sqrt{1-\rho^2} &\dots &0\\\ & \ddots & \ddots & \ddots &\\\rho^{n-1} &\rho^{n-2}\sqrt{1-\rho^2} & \rho^{n-3}\sqrt{1-\rho^2} & \dots &\sqrt{1-\rho^2} \end{bmatrix}$
In that case you have $\mathbf A^{-1}=(\mathbf B^{-1})^\top\mathbf B^{-1}$
$=\dfrac{1}{1-\rho^2}\begin{bmatrix} 1 &-\rho &0 &\dots &0\\-\rho & 1+\rho^2 &-\rho &\dots &0\\\ & \ddots & \ddots &\ddots &\\0 & \dots &-\rho & 1+\rho^2 &-\rho\\0 & \dots &0 &-\rho & 1\end{bmatrix}$
Check this link out for more on these matrices.
- 76,540
- 17,932