[Math] Determining If a Function is a Linear Transformation

linear algebralinear-transformations

I thought I understood this concept, as it's pretty similar to other ones I've done in linear algebra. Perhaps I'm tired, and just not seeing it right now.

Here's what I know:

For the vector spaces $V$ and $W$, the function $T: V\to W$ is a linear transformation of $V$ mapping into $W$ when two properties are true (for all vectors $u,v$ and any scalar $c$):

  1. $T(u+v) = T(u) + T(v)$ – Addition in $V$ to addition in $W$
  2. $T(cu) = cT(u)$ – Scalar multiplication in $V$ to SM in $W$

My book gives an example of proving $T(v_1, v_2) = (v_1 – v_2, v_1+2v_2)$ is a linear transformation. I won't copy the whole thing, but I actually follow it.

However, for practice, I have to determine if this function is a linear transformation from $\mathbb{R}^2$ to $\mathbb{R}^2$…

$T:\mathbb{R}^2 \to \mathbb{R}^2$ , $T(x,y) = (x,1)$

I tried doing it, but I honestly wasn't going anywhere or really understanding what I was doing. Can anyone please explain this problem to me? Appreciate any help.

Best Answer

One consequence of the definition of a linear transformation is that every linear transformation must satisfy $$ T(0_V)=0_W $$ where $0_V$ and $0_W$ are the zero vectors in $V$ and $W$, respectively. Therefore any function for which $T(0_V)\neq 0_W$ cannot be a linear transformation.

In your second example, $$ T\Big(\begin{bmatrix}0\\0\end{bmatrix}\Big)=\begin{bmatrix}0\\1\end{bmatrix}\neq\begin{bmatrix}0\\0\end{bmatrix}$$ so this tells you right away that $T$ isn't linear.

Related Question