Michael C. answered 04/01/21
Tutor
New to Wyzant
Former high school math teacher. Ph.D. in computational mathematics.
A linear transformation should preserve addition and scalar multiplication. In addition to v = (v1, v2), let u = (u1, u2), and let c be a scalar. We should see:
- T(u + v) = T(u) + T(v)
- T(c*v) = c*T(v)
The fourth transformation fails to preserve either:
- T(u + v) = (0,1) since everything is taken to (0,1) by this transformation. But T(u) + T(v) = (0,1) + (0,1) = (0,2). So, T(u + v) does not equal T(u) + T(v).
- T(c*v) = (0,1) since the transformation takes everything to (0,1), but c*T(v) = c*(0,1) = (0,c). So T(c*v) does not equal c*T(v).