I want to find the inverse of the following matrix:
$$ R_{k-1} = \begin{pmatrix} 1 &\rho &\rho^2 & \dots &\rho^{k-2} \\ \rho &1 &\rho & \dots &\rho^{k-3} \\ \rho^2 &\rho &1 & \dots&\rho^{k-4} \\ \vdots &\vdots &\vdots &\ddots &\vdots\\ \rho^{k-2} & \rho^{k-3} & \rho^{k-4} & \dots & 1\end{pmatrix}$$
Let $A_{i,j}$ be the $i,j$ minor of $R_{k-1}$. By considering the pattern of the above matrix and its symmetrical properties, we can conclude that:
- $\det(A_{11}) = \det(A_{k-1,k-1})= |R_{k-2}|$
- $\det(A_{i,j}) = \det((A_{j,i})^T)$
- $\det(A_{i,j}) = 0$ for $|i-j|\le2$
which means that the inverse of $R_{k-1}$ is a tridiagonal symmetric matrix. I've tried to find the inverse using the fact I've described above and using $A^{-1}A=A A^{-1}=I$. But I couldn't find it, since there are more variables than equations. Did i miss something? or may be is there any other easier way to find the inverse?