43076412
Gegeben sind die folgenden Matrizen:
\(A = \begin{pmatrix} 2 & -1 \\ 3 & 0 \end{pmatrix}\), \(B = \begin{pmatrix} 1 & 2 & 4 \\ 0 & -1 & 2 \end{pmatrix}\) und \(C = \begin{pmatrix} 1 \\ 0 \\ -2 \end{pmatrix}\).
Berechne das Produkt \(P = A \cdot B \cdot C\).
Denkanstöße
- Du kannst die Klammerung des Matrixprodukts verändern, nicht aber die Reihenfolge der Matrizen (Assoziativgesetz).
- Welche Kombination ist für dich einfacher zu rechnen: erst die beiden linken Matrizen oder erst die beiden rechten?
- Achte darauf, dass die Anzahl der Spalten der linken Matrix immer mit der Anzahl der Zeilen der rechten Matrix übereinstimmen muss.
- Was für eine Art von Ergebnis erwartest du am Ende: eine Matrix oder einen Vektor?
Lösung
1. Berechnung des Produkts \(A \cdot B\):
\(A\) (\(2 \times 2\)) mal \(B\) (\(2 \times 3\)) ergibt eine \(2 \times 3\)-Matrix.
Zeile 1 von \(A\) mal Spalten von \(B\): \(2 \cdot 1 + (-1) \cdot 0 = 2\); \(2 \cdot 2 + (-1) \cdot (-1) = 5\); \(2 \cdot 4 + (-1) \cdot 2 = 6\).
Zeile 2 von \(A\) mal Spalten von \(B\): \(3 \cdot 1 + 0 \cdot 0 = 3\); \(3 \cdot 2 + 0 \cdot (-1) = 6\); \(3 \cdot 4 + 0 \cdot 2 = 12\).
Zwischenergebnis: \(A \cdot B = \begin{pmatrix} 2 & 5 & 6 \\ 3 & 6 & 12 \end{pmatrix}\).
2. Multiplikation des Zwischenergebnisses mit \(C\):
Die \(2 \times 3\)-Matrix wird mit dem Spaltenvektor \(C\) (\(3 \times 1\)) multipliziert.
Obere Komponente: \(2 \cdot 1 + 5 \cdot 0 + 6 \cdot (-2) = 2 + 0 - 12 = -10\).
Untere Komponente: \(3 \cdot 1 + 6 \cdot 0 + 12 \cdot (-2) = 3 + 0 - 24 = -21\).
Das Endergebnis ist der Vektor \(P = \begin{pmatrix} -10 \\ -21 \end{pmatrix}\).
Alternativ kann zuerst \(B \cdot C\) berechnet werden: \(B \cdot C = \begin{pmatrix} 1 \cdot 1 + 2 \cdot 0 + 4 \cdot (-2) \\ 0 \cdot 1 + (-1) \cdot 0 + 2 \cdot (-2) \end{pmatrix} = \begin{pmatrix} -7 \\ -4 \end{pmatrix}\).
Dann \(A \cdot (B \cdot C) = \begin{pmatrix} 2 & -1 \\ 3 & 0 \end{pmatrix} \cdot \begin{pmatrix} -7 \\ -4 \end{pmatrix} = \begin{pmatrix} 2 \cdot (-7) + (-1) \cdot (-4) \\ 3 \cdot (-7) + 0 \cdot (-4) \end{pmatrix} = \begin{pmatrix} -10 \\ -21 \end{pmatrix}\).
Antwort
\(P = \begin{pmatrix} -10 \\ -21 \end{pmatrix}\)
