Compute the determinant of
$$\begin{bmatrix}1&-2&5&2\\0&0&3&0\\2&-4&-3&5\\2&0&3&5\end{bmatrix}$$
by first expanding along the first row (at every stage) and then by expanding along whatever row or column requires the fewest computations
I'm trying to put this matrix in Lower Triangular Form (LTF) so that I can find the determinant by just taking the product of the diagonal. I'm stuck though, I'm not sure where I went wrong.
I did:
$$R_3 = 2R_1 + (-1)R_3$$
$$R_4 = 2R_1 + (-1)R_4$$
$$R_4 = 7R_1 + (-1)5R_4$$
to get:
$$\begin{bmatrix}1&-2&5&2\\0&0&3&0\\0&0&13&-1\\7&6&0&19\end{bmatrix}$$
\begin{eqnarray} \left|\begin{matrix}1&-2&5&2\\0&0&3&0\\2&-4&-3&5\\2&0&3&5\end{matrix}\right|&=& -3\left|\begin{matrix}1&-2&2\\2&-4&5\\2&0&5\end{matrix}\right|\\ &=& -3 \left|\begin{matrix}1&0&2\\2&0&5\\2&4&5\end{matrix}\right|\\ &=& -3\times(-4) \left|\begin{matrix}1&2\\2&5\end{matrix}\right|\\ &=& 12\times (5-4)\\ &=&12 \end{eqnarray} where in the first step i expand the determinant from the second line (because they have 3 zero in this line) and i remove the second line and the third column.
for the second step i "create" more zero by adding to the second column two times the first column and i expand with this column to get the last $2\times 2 $ determinant which calculation is very easy