$T(a_1,a_2,a_3) = (3a_1+a_2,a_1+a_3,a_1-a_3)$. $(a_1,a_2,a_3)^T$ is written with regards to the standard basis.
We can figure out $T$ in matrix form by calculating $T(a_1),T(a_2), T(a_3)$. That's easy and we get:
$T$ = $\left(\begin{array}{ccc}3 & 1 & 0 \\1& 0 & 1 \\1 & 0 & -1\end{array}\right)$
$\beta$ is a new basis = $\{(1,0,0), (1,1,0), (1,1,1)\}$.
Here's what I'm trying to find: $T$ relative to this new basis.
I have three questions:
First, How do I methodically set up the problem and solve it?
Second, why does $T*C = S$ work?, where
$T$ is the transformation matrix relative to $(a_1,a_2,a_3)^T$,
$C = \left(\begin{array}{ccc}1 & 1 & 1 \\0& 1 & 1 \\0 & 0 & 1\end{array}\right)$.
and $S$ is the solution = $\left(\begin{array}{ccc}3 & 4 & 4 \\1& 1 & 2 \\1 & 1 & 0\end{array}\right)$.
Third Question: how general is $T*C$ as a solution? Did I just get lucky? It seems all I'm doing is multiplying a new vector (a vector in $\beta$) by an old transformation matrix. Why would this give me a new, correct $T$? Basically, if someone asks me to find $T$ relative to a new basis can I just use $T*C$, where $C$'s columns contain the new basis vectors?
Edit: How do you do this without using inverses?