Erst mal die Matrix aufstellen:
M=\( \begin{pmatrix} 3 & 2 \\ 7 & 6 \end{pmatrix} \)
Invertieren heißt, suche die Matrix M', so dass M'*M=E, die Einheitsmatrix, manchmal auch I geschrieben, also
\( \begin{pmatrix} a & b \\ c & d \end{pmatrix} \) * \( \begin{pmatrix} 3 & 2 \\ 7 & 6 \end{pmatrix} \) =\( \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix} \)
Stelle das LGS auf auf und löse es:
3a+7b=1
2a+6b=0 usw.
Dann M' hinschreiben!
det(M) = nur bei 2x2 Matrizen = a11d22 - a21a12 =3*6 - 2*7 = Hauptdiag minus Nebendiagonale =....
symm Matrix: Werte sind an der Hauptdiag gespiegelt. Ein Beispiel wäre:
\( \begin{pmatrix} a & 24 \\ 24 & d \end{pmatrix} \)
det(M−λI) = 0
einfach machen!
det(M−λE)
= det [ \( \begin{pmatrix} 3 & 2 \\ 7 & 6 \end{pmatrix} \) - λ \( \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix} \)]
= det [ \( \begin{pmatrix} 3 & 2 \\ 7 & 6 \end{pmatrix} \) - \( \begin{pmatrix} λ & 0 \\ 0 & λ \end{pmatrix} \)] reinmult!
= det \( \begin{pmatrix} 3-λ & 2 \\ 7 & 6-λ \end{pmatrix} \)
= Hauptdiag minus Nebendiagonale
= (3-λ)(6-λ) - 2*7 = λ2 ..... =0 quadr. Gleichung lösen