Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Riccati solvers with S parameter #2105

Open
pmli opened this issue Jul 10, 2023 · 1 comment · May be fixed by #2188
Open

Riccati solvers with S parameter #2105

pmli opened this issue Jul 10, 2023 · 1 comment · May be fixed by #2188
Assignees
Milestone

Comments

@pmli
Copy link
Member

pmli commented Jul 10, 2023

Feature

Low-rank solvers and the dense solver from pymess should be extended to support the S parameter.

Notes

The Riccati equation $$A X E^T + E X A^T - \left(E X C^T + S^T\right) R^{-1} \left(C X E^T + S\right) + B B^T = 0$$ can be written as $$\left(A - S^T R^{-1} C\right) X E^T + E X \left(A - S^T R^{-1} C\right)^T - E X C^T R^{-1} C X E^T + \left(B B^T - S^T R^{-1} S\right) = 0.$$ Therefore, the substitution

$$ \begin{align*} A & \to A - S^T R^{-1} C, \\ B B^T & \to B B^T - S^T R^{-1} S, \\ S & \to 0, \end{align*} $$

leads to an equivalent Riccati equation. The matrix $A - S^T R^{-1} C$ can be represented using a LowRankUpdatedOperator. The matrix $B B^T - S^T R^{-1} S$ can be written as

$$ \begin{bmatrix} B & S^T \end{bmatrix} \begin{bmatrix} I & 0 \\ 0 & -R^{-1} \end{bmatrix} \begin{bmatrix} B & S^T \end{bmatrix}^T, $$

so computing the SVD of $[B \ S^T] = U \Sigma V^T$ and the Cholesky decomposition of

$$ \Sigma V^T \begin{bmatrix} I & 0 \\ 0 & -R^{-1} \end{bmatrix} V \Sigma $$

could lead to an updated (low-rank) factorization.

@drittelhacker
Copy link
Member

The last step could be tricky, as I assume R is positive definite and thus the central matrix is indefinite. However, all algorithms in pymess can be formulated for $LDL^T$ respecting this indefiniteness. So maybe this is worth a feature request upstream, if $LDL^T$ is not yet supported there.

@sdrave sdrave added this to the 2024.1 milestone Feb 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants