0

Let $A_{3x3}$ be a matrix $ \ne 0$ such that the column space of $A$ is a subset of the null space of $A$. I need to find $A$.

Here's my process so far:

let $v_1, v_2, v_3$ be the column vectors of $A$

$Col(A)=c_1 v_1 + c_2 v_2 + c_3 v_3$ is a subset of $Null(A)$

let $b$ be the column space of A such that $Ax=b$, then assume $b$ is also in the null space of $A$ so $Ax=0=A(Ab)$

How do I go about finding a particular matrix that satisfies this? Am I even heading on the right direction?

n8sty
  • 513

1 Answers1

0

Take $A=\begin{bmatrix} 0 & 0 & 1 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix}$.

Then $Ax=0$ iff $x_3 = 0$. It is easy to see that the null space (also known as the kernel, or $\ker A$) is given by $\ker A = \{ (x_1,x_2, 0)^T \}_{x_1,x_2 \in \mathbb{R}}$.

Then $y = Ax$ for some $x$ iff $y = (x_3,0,0)^T$ for some $x_3 \in \mathbb{R}$, so the range space is is given by ${\cal R} A = \{ (x_1,0, 0)^T \}_{x_1 \in \mathbb{R}}$.

It should be clear that ${\cal R} A \subset \ker A$.

copper.hat
  • 172,524