Problem: [This problem is intended to be done with Maple] Suppose that:
$$\textbf{u}_1=\begin{pmatrix} 356\\ -185\\ -580\\ -918\\ 147\\ 468\\ 504\\ 594 \end{pmatrix}, \textbf{u}_2=\begin{pmatrix} 573\\ 230\\ -950\\ -877\\ 69\\ 677\\ 323\\ 486 \end{pmatrix}, \textbf{u}_3=\begin{pmatrix} -1000\\ -833\\ 552\\ 935\\ -999\\ -483\\ 450\\ 457 \end{pmatrix}, \textbf{u}_4=\begin{pmatrix} 946\\ -379\\ -971\\ -840\\ 979\\ -591\\ -139\\ -451 \end{pmatrix}$$
Also suppose that $A = (\textbf{u}_1|\textbf{u}_2|\textbf{u}_3|\textbf{u}_4)$. Let $\textbf{v}=\begin{pmatrix}-27\\59\\-75\\21\end{pmatrix}$. Hence let $A\textbf{v}$ is a linear combination in the form
$$\lambda_1\textbf{u}_1 + \lambda_2\textbf{u}_2 + \lambda_3\textbf{u}_3 + \lambda_4\textbf{u}_4$$
What are the values of $\lambda_1, \lambda_2, \lambda_3$ and $\lambda_4$.
My attempts
If I'm being honest, I've been messing with the LinearAlegbra package for several hours and I have no idea if I'm on the right track. The first thing I did was use Gaussian Elimination on $A$ (which I defined as $B$), then used LinearSolve($B$,$\textbf{v}$) to find the values, although I do not believe this is correct (or at least the times I've tried always resulted in incorrect values).
Any help would be greatly appreciated!
A := Matrix([u1, u2, u3, u4]);
N := Matrix([A, A.v]);
ReducedRowEchelonForm(N);