Questions tagged [symmetric-matrices]

A symmetric matrix is a square matrix that is equal to its transpose.

In linear algebra, a symmetric matrix is a square matrix that is equal to its transpose. Formally, matrix $A$ is symmetric if $A^T=A$.

The sum and difference of two symmetric matrices is again symmetric, but this is not always true for the product: given symmetric matrices $A$ and $B$, then $AB$ is symmetric if and only if $A$ and $B$ commute, i.e., if $AB = BA$. So for integer $n$, $A^n$ is symmetric if $A$ is symmetric. If $A^{−1}$ exists, it is symmetric if and only if $A$ is symmetric.

The complex generalization is a hermitian matrix, a square matrix equal to its conjugate transpose. This is often denoted $A=A^{H}$ or $A=\overline{A^T}$; see for more information.

1854 questions
0
votes
2 answers

Is binomial expansion true for all kinds of matrices

My teacher told me that, in case of square matrices, binomial expansion holds true if and only if they commute. I am not able to figure out why they fail for other cases; any proof will be helpful.
imposter
  • 532
0
votes
1 answer

How can I approach this linear algebra problem?

Part A) I can only say there is necessarily n real eigenvalues producing n pairwise orthogonal eigenvectors because A is symmetric, but what else is there to say about the eigenvalues utilizing the fact that A has orthonormal columns?
nabu1227
  • 879
0
votes
1 answer

$A$ is a symmetric matrix, $x$ is a vector. If $(Ax,Ax)=(x,x)$,then $Ax=x$ or $Ax=-x$. Is it true? How to prove it?

$A$ is a symmetric matrix, $x$ is a vector. If $(Ax,Ax)=(x,x)$,then $Ax=x$ or $Ax=-x$.Is it true? How to prove it? or give some examples. Thanks!
meuzhou
  • 13
0
votes
0 answers

Trace of power of symmetric matrices

Let $A$ and $B$ be real symmetric matrices. Suppose that for all integers $k\ge1$ we have $$ {\rm tr}((A+B)^k)={\rm tr}(A^k) + {\rm tr}(B^k). $$ Prove that then, $AB=0$ (the converse is clearly true as $A$ and $B$ are symmetric). Note: this…
Gerald
  • 31
0
votes
1 answer

Generalizing in matrix form

I have the following expression: $\sum_{0 < s \leq S} \sum_{0 < a \leq A} (x_{a,s} - \frac{1}{A}\sum_{0 < i \leq A} x_{i,s})^2$ , which I would like to express in matrix quadratic form, as $\vec{x}'\matrix{D}\vec{x}$, where: $\vec{x}' = [ x_{1,1},…
1
2