[Math] Vector space of upper triangular matrices

linear algebra

Good afternoon everyone, I am trying to calculate the following quotient vector space $\mathbb{M_3(R)}/UT$ Where $UT$ is the subspace of the upper triangular matrices of order 3. I suspect that any matrix $A$ can be written as a sum of an upper triangular matrix and a lower triangular matrix respectively, but I do not know?

My work:

Let $A$ and $B$ be two matrices such that $A,B∈M_3(R)$, We say that $A∼B$ iff $A−B∈UT$. But I do not know how to continue, that is, I do not know how to make this happen. I need to find the equivalence class of a matrix $A∈M_3(R)$. Can someone please help me?

Best Answer

Every square matrix $A\in M_3(\mathbb{R})$ can be written uniquely as the sum $A=L+U$, where $L$ is lower triangular with zero along the diagonal and $U$ upper triangular: $$ \begin{bmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \end{bmatrix}= \begin{bmatrix} 0 & 0 & 0 \\ a_{21} & 0 & 0 \\ a_{31} & a_{32} & 0 \end{bmatrix}+ \begin{bmatrix} a_{11} & a_{12} & a_{13} \\ 0 & a_{22} & a_{23} \\ 0 & 0 & a_{33} \end{bmatrix} $$