so I am working on an algebra question and I need some help understanding what the question is asking.
I found that the standard matrix of the linear transformation: $$T: \mathbb{R}^2 \to \mathbb{R}^3 = \begin{bmatrix}1 & 0\\0 & 3\\5 & 8\end{bmatrix}$$
And now I am being asked to find$$T\left(\begin{bmatrix}1\\2\end{bmatrix}\right)$$
What exactly am I being asked to find? Am I supposed to find what matrix transforms T to \begin{bmatrix}1\\2\end{bmatrix} or am I supposed to multiply that into T? Any help would be appreciated. Thanks.
At the end of the day, since $T$ is a linear transformation from $\mathbb{R}^{2}$ to $\mathbb{R}^{3}$, that means you plug in vectors from $\mathbb{R}^{2}$ (these are vectors with only 2 components) and the transformation outputs a vector in $\mathbb{R}^{3}$. The output will be a vector with three components because it lives in $\mathbb{R}^{3}$. So you want to know where the vector $\begin{bmatrix} 1 \\ 2 \\ \end{bmatrix}$ is being sent to under the transformation $T$. It is being sent to a vector in $\mathbb{R}^{3}$ (a vector with 3 components), but which one?? I show you how to figure that out below using the fact that $T$ is a linear transformation.
Note that $T$ is a linear transformation, so we know that $T(cv) = cT(v)$ for any $v$ in $\mathbb{R}^{2}$ and any real number $c$.
Also, we have $T(v_{1} + v_{2}) = T(v_{1}) + T(v_{2})$ for any $v_{1}$ and $v_{2}$ in $\mathbb{R}^{2}$.
Both of these together give the general property that if $c$ and $d$ are real numbers, and $v_{1}$ and $v_{2}$ are vectors in $\mathbb{R}^{2}$, then $T(c v_{1} + d v_{2}) = cT(v_{1}) + dT(v_{2})$.
Why am I telling you this? Because this is the key to figuring out $T \left (\begin{bmatrix} 1 \\ 2 \\ \end{bmatrix}\right )$. You have to realize that we can write $\begin{bmatrix} 1 \\ 2 \\ \end{bmatrix}$ as the sum $\begin{bmatrix} 1 \\ 0 \\ \end{bmatrix} + 2*\begin{bmatrix} 0 \\ 1 \\ \end{bmatrix}$. So, we get:
$T \left ( \begin{bmatrix} 1 \\ 2 \\ \end{bmatrix} \right ) = T \left ( \begin{bmatrix} 1 \\ 0 \\ \end{bmatrix} + 2*\begin{bmatrix} 0 \\ 1 \\ \end{bmatrix} \right ) = T \left ( \begin{bmatrix} 1 \\ 0 \\ \end{bmatrix} \right ) + 2*T \left ( \begin{bmatrix} 0 \\ 1 \\ \end{bmatrix} \right )$.
Now, since every linear transformation $T$ follows the rule that $T(x) = Ax$ for an associated matrix $A$, which you found, we have $T \left ( \begin{bmatrix} 1 \\ 0 \\ \end{bmatrix} \right ) = A*\begin{bmatrix} 1 \\ 0 \\ \end{bmatrix}$, and this product is just the first column of the matrix $A$, so $T \left ( \begin{bmatrix} 1 \\ 0 \\ \end{bmatrix} \right ) = \begin{bmatrix} 1 \\ 0 \\ 5\\ \end{bmatrix}$.
Similarly, $T \left ( \begin{bmatrix} 0 \\ 1 \\ \end{bmatrix} \right ) = A*\begin{bmatrix} 0 \\ 1 \\ \end{bmatrix}$, and this product is just the second column of the matrix $A$, so $T \left ( \begin{bmatrix} 0 \\ 1 \\ \end{bmatrix} \right ) = \begin{bmatrix} 0 \\ 3 \\ 8\\ \end{bmatrix}$.
So, we have $T \left ( \begin{bmatrix} 1 \\ 2 \\ \end{bmatrix} \right ) = T \left ( \begin{bmatrix} 1 \\ 0 \\ \end{bmatrix} \right ) + 2*T \left ( \begin{bmatrix} 0 \\ 1 \\ \end{bmatrix} \right ) = \begin{bmatrix} 1 \\ 0 \\ 5\\ \end{bmatrix} + 2*\begin{bmatrix} 0 \\ 3 \\ 8\\ \end{bmatrix} = \begin{bmatrix} 1 \\ 0 \\ 5\\ \end{bmatrix} + \begin{bmatrix} 0 \\ 6 \\ 16\\ \end{bmatrix} = \begin{bmatrix} 1 \\ 6 \\ 21\\ \end{bmatrix}$.
Therefore, the final answer is $T \left ( \begin{bmatrix} 1 \\ 2 \\ \end{bmatrix} \right ) = \begin{bmatrix} 1 \\ 6 \\ 21\\ \end{bmatrix}$, that is, under this specific transformation $T$ with associated matrix $A$, the vector $\begin{bmatrix} 1 \\ 2 \\ \end{bmatrix}$ (which lives in $\mathbb{R}^{2}$, since it has 2 components) is being sent to the vector $\begin{bmatrix} 1 \\ 6 \\ 21\\ \end{bmatrix}$ (which lives in $\mathbb{R}^{3}$, since it has 3 components).
Hope that helps!