The transition matrix, P, from the basis B=$\{(0, 1, 2)^t ,(1, 2, 0)^t ,(2, 0, 1)^t\}$ to the basis B'=$\{(9, 0, 0)^t ,(0, 9, 0)^t ,(0, 0, 9)^t \}$ of $\mathbb R^3$ ?
The solution I got was $$P=\begin{pmatrix} 0 & 1/9 & 2/9 \\ 1/9 & 2/9 & 0 \\ 2/9 & 0 & 1/9\end{pmatrix}$$
I got the above solution using the general augmented matrices method [B'|B] -> [I | P] (via Gaussian elimination) where P is the transition matrix.
However this is none of the answers in the problem sheet I am doing.
The matrices in the options are
$\begin{pmatrix} 0 & 3 & 3 \\ 3 & 3 & 0 \\ 3 & 0 & 3\end{pmatrix}$
$\begin{pmatrix} 1 & 1 & 1 \\ 1 & 1 & 0 \\ 1 & 0 & 0\end{pmatrix}$
$\begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1\end{pmatrix}$
$\begin{pmatrix} -2 & 1 & 4 \\ 1 & 4 & -2 \\ 4 & -2 & 1\end{pmatrix}$
When a vector $v$ is written in the first basis like this
$$v=a_1e_1+a_2e_2+a_3e_3, \ \ \text{which can be written} \ \ v=\underbrace{[e_1|e_2|e_3]}_E\begin{pmatrix}a_1\\b_1\\c_1\end{pmatrix}$$
and in the second basis like this
$$v=a'_1e'_1+a'_2e'_2+a'_3e'_3, \ \ \text{which can be written} \ \ v=\underbrace{[e'_1|e'_2|e'_3]}_{E'}\begin{pmatrix}a'_1\\b'_1\\c'_1\end{pmatrix}$$
Equating the two expressions for $v$, we get:
$$E\begin{pmatrix}a_1\\b_1\\c_1\end{pmatrix}=E'\begin{pmatrix}a'_1\\b'_1\\c'_1\end{pmatrix}$$
which is equivalent to :
$$\begin{pmatrix}a'_1\\b'_1\\c'_1\end{pmatrix}=\underbrace{(E')^{-1}E}_P\begin{pmatrix}a_1\\b_1\\c_1\end{pmatrix}$$
And in this way, I find back your transition matrix !