Adjunkte
In diesem Kapitel schauen wir uns an, was die Adjunkte ist.
Erforderliches Vorwissen
Definition
$$ \text{Adj}(A) = \text{Cof}(A)^{T} $$
Die Adjunkte ist die Transponierte der Kofaktormatrix.
Anleitung
Kofaktoren berechnen
Kofaktormatrix aufstellen
Kofaktormatrix transponieren
zu 1)
$$ A_{ij} = (-1)^{i+j} \cdot D_{ij} $$
Dabei ist $A_{ij}$
der Kofaktor, der sich aus der Multiplikation eines Vorzeichenfaktors $(-1)^{i+j}$
mit einer Unterdeterminante $D_{ij}$
zusammensetzt.
zu 2)
Die Elemente der Kofaktormatrix $\text{Cof}(A)$
sind die entsprechenden Kofaktoren.
zu 3)
Eine Matrix wird transponiert, indem man die Matrix an der Hauptdiagonale spiegelt.
Beispiel
Gegeben sei die Matrix
$$ A = \begin{pmatrix} 4 & 3 \\ 5 & 7 \end{pmatrix} $$
Berechne die Adjunkte der Matrix.
Kofaktoren berechnen
$$ A_{11} = (-1)^{1+1} \cdot \begin{vmatrix} \bcancel{4} & \bcancel{3} \\ \bcancel{5} & {\color{red}7} \end{vmatrix} = {\color{blue}7} $$
$$ A_{12} = (-1)^{1+2} \cdot \begin{vmatrix} \bcancel{4} & \bcancel{3} \\ {\color{red}5} & \bcancel{7} \end{vmatrix} = {\color{blue}-5} $$
$$ A_{21} = (-1)^{2+1} \cdot \begin{vmatrix} \bcancel{4} & {\color{red}3} \\ \bcancel{5} & \bcancel{7} \end{vmatrix} = {\color{blue}-3} $$
$$ A_{22} = (-1)^{2+2} \cdot \begin{vmatrix} {\color{red}4} & \bcancel{3} \\ \bcancel{5} & \bcancel{7} \end{vmatrix} = {\color{blue}4} $$
Kofaktormatrix aufstellen
$$ \text{Cof}(A) = \begin{pmatrix} A_{11} & A_{12} \\ A_{21} & A_{22} \end{pmatrix} = \begin{pmatrix} {\color{blue}7} & {\color{blue}-5} \\ {\color{blue}-3} & {\color{blue}4} \end{pmatrix} $$
Kofaktormatrix transponieren
$$ \text{Adj}(A) = \text{Cof}(A)^{T} = \begin{pmatrix} A_{11} & A_{21} \\ A_{12} & A_{22} \end{pmatrix} = \begin{pmatrix} {\color{blue}7} & {\color{blue}-3} \\ {\color{blue}-5} & {\color{blue}4} \end{pmatrix} $$