$$ A= \begin{pmatrix} 1 & -2 & 1 & 3 & 0\\ 2 & -4 & 4 & 6 & 4\\ -2 & 4 & -1 & -6 & 2 \\ 1 &-2 & -3 & 3 & -8 \end{pmatrix} $$
(I was given this matrix and i am assuming this is an augmented matrix, the variables we are using are a,b,c,d and e that correspond to the columns)
So obviously the first step that i took was to find the kernel of A
I did row reduction and i got the matrix below
$$ A= \begin{pmatrix} 1 & -2 & 0 & 3 & 0\\ 0 & 0 & 0 & 0 & 0\\ 0 & 0 & 1 & 0 & 2 \\ 0 &0 & 0 & 0 & 0 \end{pmatrix} $$
if i wrote down a system of linear equations that correspond to the matrix above, i would get the equations below
a - 2b + 3d = 0
c + 2e = 0
if we let b = t, d = m and e = n(t, m and n are any real numbers) then we get...
a = 2t - 3m
b = t
c = -2n
d = m
e = n
so if we collect the arbitrary terms in the equations above, we get the kernel, which is written below
kernel of A = { (2t, t, 0, 0, 0) , (-3m, 0, 0, m, 0) , (0, 0, -2n, 0 ,n): t, m and n are real numbers }
is this the kernel of A? did i make a mistake somewhere. I would appreciate it if someone checked my work.