Setzen wir mal die Basen je in eine Matrix ein:
$$A=\begin{pmatrix} 1 & 0 &2 \\ 0 & 1 &2\\1 & 1 & 1\\ \end{pmatrix}$$
$$B=\begin{pmatrix} 1 & 0 &-1 \\ 1 & -2 &-1\\1 & 1 & 3\\ \end{pmatrix}$$
Da es geht es ja darum, dass du die Koordinaten eines Vektors v bezüglich
der ersten Basis hast, also
$$v = A*\begin{pmatrix} x\\y\\z \end{pmatrix}$$
und du möchstest sie Koordinaten ( mit ' dran ) bezüglich der 2. Basis haben,
also
$$v = B*\begin{pmatrix} x'\\y'\\z' \end{pmatrix}$$.
Dann muss ja gelten
$$A*\begin{pmatrix} x\\y\\z \end{pmatrix} = B*\begin{pmatrix} x'\\y'\\z' \end{pmatrix}$$
Diese Gleichung von links mit B^(-1) multipliziert gibt
$$B^{-1}*A*\begin{pmatrix} x\\y\\z \end{pmatrix} = \begin{pmatrix} x'\\y'\\z' \end{pmatrix}$$
Also ist B^(-1)*A die gesuchte Matrix und da bekomme ich fast das Gleiche wie in
der Musterlösung nur in der 2. Spalte statt 1/8 jeweils 3/8.