I am trying to find the Range and kernel of as linear transformation.
I have the following 4 x4 matrix:
$$\begin{pmatrix} 1 & 9 & 8 & 2 \\ 6 & 2 & 1 & 2 \\ 1 & 9 & 8 & 2 \\ 6 & 2 & 1 & 2 \ \end{pmatrix} \quad$$
By applying elementary row operations I obtained the matrix:
$$\begin{pmatrix} 1 & 0 & \frac{-7}{52} & \frac{7}{26} \\ 0 & 1 & \frac{47}{52} & \frac{5}{26} \\ 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 \ \end{pmatrix} \quad$$
Then the range of the matrix ia given by:
$$\{ \alpha \begin{pmatrix} 1 \\ 6 \\ 1 \\ 6 \ \end{pmatrix} \quad+ \beta \begin{pmatrix} 9 \\ 2 \\ 9 \\ 2 \ \end{pmatrix} \quad \}$$
The rank is 2 and the basis for the range is given by:
$$\{ \begin{pmatrix} 1 \\ 6 \\ 1 \\ 6 \ \end{pmatrix} \quad, \begin{pmatrix} 9 \\ 2 \\ 9 \\ 2 \ \end{pmatrix} \quad \}$$
Then, the Kernel of the same matrix is given by:
$$\left(\begin{array}{cccc|c} 1 & 9 & 8 & 2 & 0\\ 6 & 2 & 1 & 2 & 0 \\ 1 & 9 & 8 & 2& 0\\ 6 & 2 & 1 & 2 & 0 \\ \end{array}\right)$$
I obtained the following system of equations:
$x_1=\frac{7}{52}x_3-\frac{7}{26}x_4$
$x_2=\frac{-47}{52}x_3-\frac{5}{26}x_4$
$x_1$ arbritary and $x_4$ arbritary
then the kernel is given by:
N(A)=span $$\{ \begin{pmatrix} \frac{7}{52} \\ \frac{-47}{52} \\ 1 \\ 0 \ \end{pmatrix} \quad, \begin{pmatrix} \frac{-7}{26} \\ \frac{-5}{26} \\ 0 \\ 1 \ \end{pmatrix} \quad \}$$
I Also saw that alternatively the kernel (null space) can be given by:
N(A)=N(rref(A))= $$\{ x_3 \begin{pmatrix} \frac{7}{52} \\ \frac{-47}{52} \\ 1 \\ 0 \ \end{pmatrix} \quad+ x_4 \begin{pmatrix} \frac{-7}{26} \\ \frac{-5}{26} \\ 0 \\ 1 \ \end{pmatrix} \quad \}$$
The basis for the kernel is:
N(A)=span $$\{ \begin{pmatrix} \frac{7}{52} \\ \frac{-47}{52} \\ 1 \\ 0 \ \end{pmatrix} \quad, \begin{pmatrix} \frac{-7}{26} \\ \frac{-5}{26} \\ 0 \\ 1 \ \end{pmatrix} \quad \}$$
Nullity is 2
I am not sure if what I did is correct. I am not sure if the kernel can be given in these two different ways, and the range is well calculated (final answer is correct).
Can anyone help me on this? or point me to a website where I can find examples about how to find the kernel and range of a linear transformation?
thanks