Question on decomposition of a matrix

  • Context: Graduate 
  • Thread starter Thread starter mnb96
  • Start date Start date
  • Tags Tags
    Decomposition Matrix
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
mnb96
Messages
711
Reaction score
5
Hello,

I have a [itex]2\times 2[/itex] real matrix [itex]M[/itex] such that: [tex]M=A^T \Sigma A[/tex], where the matrix [itex]\Sigma[/itex] is symmetric positive definite, and [itex]A[/itex] is an arbitrary 2x2 nonsingular matrix. Both A and ∑ are unknown, and I only know the entries of the matrix M itself. Note that M is symmetric positive definite too.

I was wondering if it is possible to apply some decomposition of the matrix [itex]M[/itex] in order to find another matrix [itex]P_M[/itex] such that: [tex]P_M = AQ[/tex]
where the matrix Q must not depend on A (e.g. it cannot be a product of matrices where A appears). I basically want to find a matrix PM where the multiplication with A appears only at the left side, and not at both sides like in M.
 
Last edited:
Physics news on Phys.org
The Cholesky normal form for symmetric positive definite matrices ##M## gives us ##M=LDL^\tau## as yours. But we have additionally that ##D## is diagonal and ##L## a lower triangular matrix. If we take ##D^{1/2}\cdot D^{1/2}=D## the square root of ##D## and set ##S:=LD^{1/2}## we can even write ##M=SS^\tau## with a lower triangular matrix ##S##. For ##2\times 2## matrices, this should give you some nice conditions.