Die Aufgabenstellung war sehr allgemein, da der Prof nur meinte sowas in der Art könnte drankommen. Die Zahlenwerte der Matrizen stimmen allerdings zu der Verschiebung eines Quaders im XYZ-Koordinatensystem.
Die Vorlage ist lange Liste von 4x4 Matrizen die meist der Einheitsmatrix ähnlich sehen und manchmal noch Platz für eine oder mehrere Variable des Vektors oder des Drehwinkels haben. Sie werden dann mit der Ausgangsmatrix A multipliziert und führen zu Matrix B. Sowas unter anderem 
Text erkannt:
\begin{tabular}{|l|l|l|}
\hline Transformation & Matrix ( \( 4 \times 4 \) ) & Beschreibung \\
\hline Drehung um x-Achse & \( \left[\begin{array}{cccc}1 & 0 & 0 & 0 \\ 0 & \cos \alpha & -\sin \alpha & 0 \\ 0 & \sin \alpha & \cos \alpha & 0 \\ 0 & 0 & 0 & 1\end{array}\right] \) & Dreht um die x-Achse \\
\hline Drehung um y-Achse & \( \left[\begin{array}{cccc}\cos \alpha & 0 & \sin \alpha & 0 \\ 0 & 1 & 0 & 0 \\ -\sin \alpha & 0 & \cos \alpha & 0 \\ 0 & 0 & 0 & 1\end{array}\right] \) & Dreht um die y-Achse \\
\hline Drehung um z-Achse & \( \left[\begin{array}{cccc}\cos \alpha & -\sin \alpha & 0 & 0 \\ \sin \alpha & \cos \alpha & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1\end{array}\right] \) & Dreht um die z-Achse \\
\hline Spiegelung an x -Ebene & \( \left[\begin{array}{cccc}-1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1\end{array}\right] \) & Spiegelung an yz-Ebene ( \( \mathrm{x} \rightarrow-\mathrm{x} \) ) \\
\hline Spiegelung an y -Ebene & \( \left[\begin{array}{cccc}1 & 0 & 0 & 0 \\ 0 & -1 & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1\end{array}\right] \) & Spiegelung an xz-Ebene ( \( y \rightarrow-y \) ) \\
\hline Spiegelung an z-Ebene & \( \left[\begin{array}{cccc}1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & -1 & 0 \\ 0 & 0 & 0 & 1\end{array}\right] \) & Spiegelung an xy-Ebene ( \( z \rightarrow-z \) ) \\
\hline
\end{tabular}