I've been working on solving some linear equations arising from different optimization problems, but I keep getting stuck. Right now I have the problem below:
I am trying to solve the system of equations for $x$:
$$ Ax-\alpha \frac{Bx}{ x^tBx}=c$$ $$e^tx=1$$ where $e=(1,...,1)^t$.
where $x,c\in \mathbb{R}^n$, both $A,B \in \mathbb{R}^{n\times n}$ are positive definite and indeed even $$A-\frac{\alpha B }{x^t B x}$$ is positive definite, so we have nice invertibility properties.
Any help, references, or much better - a solution - is very much appreciated!
EDIT: Some further work below.
If we set $x=\sqrt{B}^{-1}z$ we get $$A\sqrt{B}^{-1}z-\alpha\frac{\sqrt{B}z}{z^tz}-c=0$$ or for $D=\sqrt{B}^{-1}A\sqrt{B}^{-1}/\alpha$ and $p=\sqrt{B}^{-1}c/\alpha$ $$0=Dz-\frac{z}{z^tz}-p\Leftrightarrow (D-\frac{pz^t}{z^tz})z=\frac{z}{z^tz}.$$ So it appears that $z$ is a multiple of an eigenvalue of a matrix that in turn depends on $z$. Is there any way I can extract analyical solutions!?
While browsing my library on linear algebra I encountered some sections on Hankel and Bezout forms. I only glanced quickly at it before having to leave for a lunch, but thought that it looked useful. Does anyone who has experience in the area have any suggestions as to its applicability?
– Winston Jul 17 '15 at 13:54