Lower triangular matrix transform to upper triangular matrix

abstract-algebralinear algebramatrices

Given a 3D non-rectangular box as a lower triangular matrix $\mathbf{A}_L$ with multiple points in it. Is it possible to transform the matrix $\mathbf{A}_L$ to an upper triangular matrix $\mathbf{A}_U$ while preserving the distances and angles of points being in the box? A transpose will give an upper triangular matrix but does not seem to preserve the distances and angles of points within the box.

Thank you for your time and help!

Best Answer

I assume that $\mathbf A_L$ has three rows, and that the "box" of interest is the parallelpiped "generated" by these rows.

If all that is correct, then one solution is to take $\mathbf A_U[i,j] = \mathbf A_L[4-i,4-j]$, where $M[i,j]$ denotes the $i,j$ entry of $M$ for $i,j = 1,2,3$.

Related Question