3

Now I have a matrix equation $AX-XA=0$, where $A=A^T$ is real symmetric and $X=-X^T$ is unknown and skew-symmetric. I have transformed the equation into the following, $$(I_n\otimes S-S\otimes I_n)~\mathrm{vec}X=0$$ According to relevant theory of Sylvester equation, if $X$ is general, this doesn't admit a unique solution. But is there any non-trivial skew-symmetric solution? What's the dimension of solution space? Or, how to solve it?

zhangwfjh
  • 1,665

2 Answers2

1

Let $A$ be real symmetric, and thus orthogonally diagonalizable:

$$ D = QAQ^T $$

If $D$ has any two diagonal entries equal, then a nontrivial skew-symmetric $Y$ will commute with $D$. Set $X = Q^T Y Q$ and you will have a skew-symmetric $X$ that commutes with $A$.

Without loss of generality we may assume the first two diagonal entries of $D$ are equal:

$$ D = \begin{pmatrix} rI & 0 \\ 0 & D' \end{pmatrix} $$

where block diagonal $rI$ is of dimension at least $2\times 2$. Then take compatible block diagonal matrix:

$$ Y = \begin{pmatrix} B & 0 \\ 0 & 0 \end{pmatrix} $$

$Y$ will now commute with $D$ for any block $B$, and in particular if $B$ is skew-symmetric, so too will $Y$ be skew-symmetric.

The rest of the verification (that $X = Q^T Y Q$ is skew-symmetric and commutes with $A$) is routine.

hardmath
  • 37,015
0

HINT: Diagonalize $A$. Typically you'll get $X = 0$ as the solution

S.B.
  • 3,285
  • I'm not sure what you mean by "typically". $X=0$ is always a solution, but there are nontrivial solutions as well. – hardmath Apr 29 '14 at 01:33
  • @hardmath I mean that for generic $A$ (e.g., drawn randomly) you only get $X=0$. – S.B. Apr 29 '14 at 01:35
  • @S.B. What if $A=I$? – user1551 Apr 29 '14 at 07:04
  • @user1551 As I said for a generic $A$ the only answer is $X=0$. If I wanted to explain more about how the solutions look like depending on the eigenvalues of $A$, I would have given the full answer. – S.B. Apr 29 '14 at 10:45