Given some $Ax = y$, I want to show $y$ is a linear combination of column vectors of $A$ if the equation has a solution.
I'm thinking along the lines of finding eigenvectors but this might not be necessary.
If there is a solution, should i find $det(Ax - y)$ and show that it is non-zero? How should I proceed?
You can write $Ax$ as
$$ \begin{pmatrix} a_{11} & a_{12}\cdots & a_{1n} \\ \vdots & a_{22}\cdots & a_{2n} \\ a_{m1} & \cdots & a_{mn} \\ \end{pmatrix}\begin{pmatrix} x_1 \\ x_2 \\ \vdots \\ x_n \end{pmatrix}=x_1\begin{pmatrix} a_{11} \\ \vdots \\ a_{1m} \end{pmatrix} + x_2\begin{pmatrix} a_{21} \\ \vdots \\ a_{2m} \end{pmatrix} + \cdots + x_n\begin{pmatrix} a_{n1} \\ \vdots \\ a_{nm} \end{pmatrix} $$
Therefore, if $Ax=y$, then $y$ is a linear combination of $A$'s column vectors.