3.14159potato26
New Member
A symmetric matrix is one that is equal to its transpose, i.e. A = A^T.
Consider the following 3-by-3 matrix:
{ 0 0 1 }
{ 1 0 0 }
{ 0 1 0 }
It can be seen that this is not a symmetric matrix. However, by interchanging rows (2) and (3), the matrix:
{ 0 0 1 }
{ 0 1 0 }
{ 1 0 0 }
is obtained. This matrix is symmetric.
The question is: is there a general test that can be applied to an n-by-n dimensional matrix to check whether it can be made into a symmetric matrix via elementary row/column operations (in other words, testing if it is potentially symmetrical), without testing all possible row/column operations?
Consider the following 3-by-3 matrix:
{ 0 0 1 }
{ 1 0 0 }
{ 0 1 0 }
It can be seen that this is not a symmetric matrix. However, by interchanging rows (2) and (3), the matrix:
{ 0 0 1 }
{ 0 1 0 }
{ 1 0 0 }
is obtained. This matrix is symmetric.
The question is: is there a general test that can be applied to an n-by-n dimensional matrix to check whether it can be made into a symmetric matrix via elementary row/column operations (in other words, testing if it is potentially symmetrical), without testing all possible row/column operations?