I have $$T: R^3 \rightarrow R^4 /$$ $$T(1,0,1) = (-1,0,1,2)$$ $$T(0,1,1) = (0,1,1,2)$$ $$T(0,0,1) = (1,1,2,0)$$
I have to find if T exists and is unique, and the formula.
So I did this:
Because $(1,0,1), (0,1,1), (0,0,1)$ are a base of $R^3$ (they are linearly independent, because they are triangulated), there exists a linear transformation and it is unique. (I took this from a theorem that says exactly this).
However, I've tried to solve it, but no luck (from an example I saw in internet):
$$(x,y,z) = x(1,0,1) + y(0,1,1) + z(0,0,1)$$ $$T(x,y,z) = xT(1,0,1) + yT(0,1,1) + zT(0,0,1)$$ $$T(x,y,z) = x(-1,0,1,2) + y(0,1,1,2) + z(1,1,2,0)$$ $$T(x,y,z) = (-x+z, y+z, x+y+2z, 2x+2y)$$
But then evaluating $(1,0,1)$ gives me $(0,1,3,2)$ when I was expecting $(-1,0,1,2)$
Then I took my book and saw an example of how to solve, very similar but in the end it gave me another LT.
$$(x,y,z) = a(1,0,1) + b(0,1,1) + c(0,0,1)$$
$$ \left\{\begin{matrix} & x = a & \\ & y = b & \\ & z = c + b \rightarrow c = z - b \rightarrow c = z - y & \end{matrix}\right. $$
Then
$$T(x,y,z) = aT(1,0,1) + bT(0,1,1) +cT(0,0,1)$$ $$T(x,y,z) = x(-1,0,1,2) + y(0,1,1,2) + (z-y)(1,1,2,0)$$ $$T(x,y,z) = (-x-y+z, z, x+2z-y, 2x+2y)$$
But then again, evaluating in $(1,0,1)$ gives me $(0,1,3,2)$.
So there are 2 problems here:
1) The linear transformation doesn't seem to be unique.
2) Evaluating $(1,0,1)$ does not give me $(-1, 0, 1, 2)$
What am I doing wrong?