Hello. I am given the following:
T([1,2,-3]) = [1,0,4,2]
T([3,5,2]) = [-8,3,0,1]
T([-2,-3,-4]) = [0,2,-1,0]
And of course I know that:
T(x) = Ax
and I want to find the matrix A.
So, from the individual equations, I construct:
A[1, 2, -3] = [1, 0, 4, 2] (please forgive, these...