Finding Congruencing Matrix between two given matrices

I have two given nxn matrices A,M and I am trying to find P such that
P*A*P.'=M.
How can I find the solution for P in matlab?

답변 (2개)

Torsten
Torsten 2022년 8월 29일

0 개 추천

댓글 수: 6

M isn't a permutation of A.
Torsten
Torsten 2022년 8월 29일
편집: Torsten 2022년 8월 29일
So P can be arbitrary ? Usually P stands for a permutation matrix, i.e. a permutation of the rows/columns of eye(n). Or is P a unitary matrix ?
P is just in GL_7
And you want to decide whether A and M are congruent or you know it ?
Roi Binia
Roi Binia 2022년 8월 29일
편집: Roi Binia 2022년 8월 29일
I know it, I am trying to find the congruencing matrix.
Torsten
Torsten 2022년 8월 29일
편집: Torsten 2022년 8월 29일
Do you know of standard approaches from the literature ? I don't. Seems it is a hard problem with no ready-to-use solver.

댓글을 달려면 로그인하십시오.

Bruno Luong
Bruno Luong 2022년 8월 29일
편집: Bruno Luong 2022년 8월 30일
Partial solution:
if A and M are real symmetric or complex Hemitian, the P can be computed as
[W,E]=eig(M,'vector');
[V,D]=eig(A,'vector');
P = W*diag(sqrt(E./D))*V';
Note that if A and M real,
  • (A+A') and (M+M') are pure real symmetric,
  • 1i*(A-A') and 1i*(M-M') are pure imaginary Hermitian
  • Any real combination of both are Hermitian

댓글 수: 2

Note that if A and M real,
  • (A+A') and (M+M') are pure real symmetric,
  • 1i*(A-A') and 1i*(M-M') are pure imaginary Hermitian
  • Any real combination of both are Hermitian
Do you think this helps for the general case A, M in GL(7,IR) or why did you add this ?
Bruno Luong
Bruno Luong 2022년 8월 29일
편집: Bruno Luong 2022년 8월 29일
If I know I would post the solution for general case.

댓글을 달려면 로그인하십시오.

카테고리

제품

릴리스

R2020b

질문:

2022년 8월 29일

편집:

2022년 8월 30일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by