I'm having trouble understanding what it means to find the kernel of a matrix.
I have a matrix as follows and I need to determine the kernel.
$\begin{bmatrix}2 & 4 & 5 \\ 1 & 2 & 3 \\ -1 & -1 & -3 \end{bmatrix}$
I'm able to get the augmented matrix down to echelon form as follows.
$\begin{bmatrix}1 & 2 & 3 & 0 \\ 0 & 5 & 4 & 0\end{bmatrix}$
Where do I take it from here? What would the form of the solution be?
Would I just write a couple of equations like the following two?
$x_1+2x_2+3x_3=0$
$0x_1+5x_2+4x_3=0$