Tengo una matriz de 4x4 y quiero encontrar la matriz triangular (las entradas de la mitad inferior son cero).
$$A= \begin{bmatrix} 2 & -8 & 6 & 8\\ 3 & -9 & 5 & 10\\ -3 & 0 & 1 & -2\\ 1 & -4 & 0 & 6 \end{bmatrix} $$
Aquí están las operaciones de fila elementales que realicé para ponerlo en forma triangular.
intercambio de filas 1 y 4
$r_2 - 3\cdot r_1$ sustituyendo a $r_2$
$r_3 + 3\cdot r_1$ sustituyendo a $r_3$
$r_4 - 2\cdot r_1$ sustituyendo a $r_4$
Obtengo esta matriz
$$A= - \begin{bmatrix} 1 & -4 & 0 & 6\\ 0 & 3 & 5 & -8\\ 0 & -12 & 1 & 16\\ 0 & 0 & 6 & -4 \end{bmatrix} $$
Entonces hice $4\cdot r_2 + r_3$ para sustituir $r_3$ y consiguió
$$A= - \begin{bmatrix} 1 & -4 & 0 & 6\\ 0 & 3 & 5 & -8\\ 0 & 0 & 21 & -16\\ 0 & 0 & 6 & -4 \end{bmatrix} $$
Entonces hice $-21\cdot r_4 + 6\cdot r_3$ para sustituir $r_4$ y consiguió
$$A= - \begin{bmatrix} 1 & -4 & 0 & 6\\ 0 & 3 & 5 & -8\\ 0 & 0 & 21 & -16\\ 0 & 0 & 0 & -12 \end{bmatrix} $$
No estoy seguro de haberlo hecho correctamente, pero el determinante de la matriz debería ser -36. Cuando multiplico las entradas diagonales no es -36. No puedo averiguar qué estoy haciendo mal.