Is the Matrix R Necessarily Lower Triangular in Matrix Decomposition?

  • Context: Undergrad 
  • Thread starter Thread starter Jano L.
  • Start date Start date
  • Tags Tags
    Decomposition Matrix
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
Jano L.
Gold Member
Messages
1,330
Reaction score
75
I would like to learn bit more about matrices and their decomposition. Let ##\mathbf C## be symmetric real-valued square matrix. Let ##\mathbf R## be such that

$$
\mathbf R\mathbf R^T = \mathbf C.
$$

Is the matrix ##\mathbf R## necessarily lower triangular (I suspect not)?

Cholesky decomposition leads to ##\mathbf R## that is lower triangular. Is there some other method of calculationg ##\mathbf R## ?
 
Physics news on Phys.org
For two matrices A and B we have:

[itex] (AB)_{ij}=\sum_k A_{ik}B_{kj}[/itex]

Now we have [itex]B=A^T \Rightarrow B_{kj}=A_{jk}[/itex] so the above equation becomes:

[itex] (AA^T)_{ij}=\sum_k A_{ik}A_{jk}[/itex]

Now it is obvious that [itex](AA^T)_{ij}=(AA^T)_{ji}[/itex]

So the product of any square matrix with its transpose is a symmetric matrix.
 
OK, from your example now I see ##\mathbf R## is not necessarily lower triangular. Thanks.
 
Jano L. said:
Cholesky decomposition leads to ##\mathbf R## that is lower triangular. Is there some other method of calculationg ##\mathbf R## ?
Since your matrix C is a symmetric real-valued square matrix, it can be decomposed as C=UƩUT, where U is a real unitary matrix and Ʃ is a diagonal matrix. If C is positive semidefinite, then R=UƩ1/2UT is a symmetric real-valued matrix such that RR=C. Since it's symmetric, one also has RRT=C since RT=R.