Consider the system: $ \begin{cases} \dot{x} = Ax + Bu \\ y = Cx + Du \end{cases}$
Where $(A,B)$ is completely reachable and $(C, A)$ completely observable. $P$ is the positive definite solution to $AP + PA^T - PC^T(DRD^T)^{-1}CP+B^TB = 0$. Show that $A - PC^T(DRD^T)^{-1}C$ is a stable matrix.
We know from research that as $t\to\infty$, $P(t)$ in a Kalman filter goes to a limit which solves the following equation: $\begin{equation*} AP + PA^T - PC^T(DRD^T)^{-1}CP+B^TQB = 0 \end{equation*}$.
Hence the Kalman gain $K$ is: $\begin{equation*} K = PC^T(DRD^T)^{-1} \end{equation*}$
Hence we have a new steady-state Kalman filter as $t\to\infty$, given by: $\begin{equation*} \dot{\hat{x}}= A\hat{x} + K(y-C\hat{x}) = A\hat{x} + PC^T(DRD^T)^{-1}(y-C\hat{x}) = \\ (A - PC^T(DRD^T)^{-1}C)\hat{x}+PC^T(DRD^T)^{-1}y\end{equation*}$
How do I show that this system is stable? I have tried with the same technique as in: https://liu.diva-portal.org/smash/get/diva2:903971/FULLTEXT02.pdf on page 23, but unsuccessfully.
Do you have any ideas how I can prove the stability?