\( \newcommand{\br}[1]{\left( #1\right)} \newcommand{\logpar}[1]{\log\left( #1\right)} \newcommand{\cospar}[1]{\cos\left( #1\right)} \newcommand{\sinpar}[1]{\sin\left( #1\right)} \newcommand{\tanpar}[1]{\tan\left( #1\right)} \newcommand{\arcsinpar}[1]{\sin^{-1}\!\left( #1\right)} \newcommand{\arccospar}[1]{\cos^{-1}\!\left( #1\right)} \newcommand{\arctanpar}[1]{\tan^{-1}\!\left( #1\right)} \newcommand{\asin}[1]{\sin^{-1}\! #1} \newcommand{\acos}[1]{\cos^{-1}\! #1} \newcommand{\atan}[1]{\tan^{-1}\! #1} \newcommand{\asinh}[1]{\sinh^{-1}\! #1} \newcommand{\acosh}[1]{\cosh^{-1}\! #1} \newcommand{\atanh}[1]{\tanh^{-1}\! #1} \newcommand{\logten}[1]{\log_{10}\! #1} \definecolor{explaination}{RGB}{0, 166, 226} \newcommand{\ubrace}[2][u]{ { \color{explaination}{\underbrace{ {\color{black}{#2}} }_{#1}} } } \newcommand{\obrace}[2][u]{ { \color{explaination}{\overbrace{ {\color{black}{#2}} }^{#1}} } } \definecolor{highlight}{RGB}{181, 41, 118} \newcommand{\xplain}[1]{{ \textcolor{explaination} { \footnotesize{ #1 \newline}}}} \newcommand{\hilite}[1]{{ \textcolor{highlight} { { #1 }}}} \definecolor{lightergray}{gray}{.675} \newcommand{\hide}[1]{{ \textcolor{lightergray} { \footnotesize{ #1 \newline}}}} \newcommand{\mth}[1]{ { \textcolor{black} { { \small #1 } } } } \)

Übung: Inverse einer 2×2 Matrix

2 makeMatrix(randRange(-2, 5, DIM, DIM)) matrixDet(MAT)
makeMatrix([["a","b"],["c","d"]]) makeMatrix([["d","-b"],["-c","a"]]) matrixInverse(MAT) matrixPad(SOLN_MAT, 3, 3) printMatrix(function(a) { var sign = (a < 0) ? "-" : ""; var frac = toFraction(abs(a)); if (frac[1] === 1) { return sign + frac[0]; } return sign + "\\frac{" + frac[0] + "}{" + frac[1] + "}"; }, SOLN_MAT) "\\textbf " + randFromArray("ABCDEF")

PRETTY_MAT_ID = printSimpleMatrix(MAT)

Was ist PRETTY_MAT_ID^{-1}, die Inverse von PRETTY_MAT_ID?

elem elem

Die Antwort als Bruch oder (genaue) Kommazahl

Die Brüche müssen nicht gekürzt sein.

PRETTY_MAT_ID^{-1} = \frac{1}{\det(PRETTY_MAT_ID)}\mathrm{adj}(PRETTY_MAT_ID)

Schritt 1: Bestimme die Adjunkte

Für jede 2×2 Matrix printSimpleMatrix(HINT_MAT) ist die Adjunkte printSimpleMatrix(HINT_MAT_ADJ).

\mathrm{adj}(PRETTY_MAT_ID) = printSimpleMatrix(matrixAdj(MAT), MatheguruHelper.BLUE)

Schritt 2: Bestimme die Determinante

Für jede 2×2 Matrix printSimpleMatrix(HINT_MAT) ist die Determinante matrix2x2DetHint(HINT_MAT).

\det(PRETTY_MAT_ID) = matrix2x2DetHint(MAT) = expr(["color", MatheguruHelper.RED, DET])

Schritt 3: Alles Zusammenbringen

Nun, da wir die Adjunkte und die Determinante kennen, können wir die Matrix invertieren:

PRETTY_MAT_ID^{-1} = \frac{1}{expr(["color", MatheguruHelper.RED, DET])} printSimpleMatrix(matrixAdj(MAT), MatheguruHelper.BLUE)

= PRETTY_SOLN_MAT