Math ClubMath Club
v1 · padrão canônico

Lektion 33 — Transponierte, Einheits-, Inverse Matrix

A transposta espelha a matriz. A inversa desfaz a multiplicação — só existe quando o determinante é não-nulo.

Used in: 1.º ano do EM (16 anos) · Math I japonês cap. matrizes · Klasse 11 alemã Lineare Algebra

AA1=A1A=I,(AT)ij=ajiA A^{-1} = A^{-1} A = I, \qquad (A^T)_{ij} = a_{ji}
Choose your door

Rigorous notation, full derivation, hypotheses

Transponierte und Inverse

Transponierte

(AT)ij=aji(A^T)_{ij} = a_{ji}. Zeilen werden zu Spalten. Eigenschaften:

EigenschaftFormel
Involution(AT)T=A(A^T)^T = A
Summe(A+B)T=AT+BT(A + B)^T = A^T + B^T
Skalar(αA)T=αAT(\alpha A)^T = \alpha A^T
Produkt(AB)T=BTAT(AB)^T = B^T A^T (Reihenfolge umkehren)
Inverse-Transponierte(AT)1=(A1)T(A^T)^{-1} = (A^{-1})^T

Symmetrische Matrix: AT=AA^T = A. Orthogonale Matrix: ATA=IA^T A = IA1=ATA^{-1} = A^T.

Einheitsmatrix

InI_n: quadratische n×nn \times n-Matrix mit Einsen auf der Diagonale und Nullen sonst. Für jedes An×nA_{n \times n}: AI=IA=AAI = IA = A

Inverse

An×nA_{n \times n} ist invertierbar (regulär), wenn ein A1A^{-1} existiert mit AA1=A1A=IAA^{-1} = A^{-1}A = I. Äquivalenztheorem — für quadratische AA gilt:

  1. AA ist invertierbar.
  2. detA0\det A \neq 0.
  3. Ax=0A\mathbf{x} = \mathbf{0} hat nur x=0\mathbf{x} = \mathbf{0}.
  4. Die Spalten von AA sind linear unabhängig.
  5. Die Zeilen von AA sind linear unabhängig.
  6. AA hat vollen Rang: rank(A)=n\text{rank}(A) = n.
  7. AA ist Produkt von Elementarmatrizen.

Inverse 2x2

A=(abcd),A1=1adbc(dbca)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}, \quad A^{-1} = \frac{1}{ad - bc} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}

(Gültig, falls adbc0ad - bc \neq 0.)

Eigenschaften der Inversen

  • (A1)1=A(A^{-1})^{-1} = A
  • (AB)1=B1A1(AB)^{-1} = B^{-1} A^{-1} (Reihenfolge umkehren!)
  • (AT)1=(A1)T(A^T)^{-1} = (A^{-1})^T
  • (αA)1=(1/α)A1(\alpha A)^{-1} = (1/\alpha) A^{-1}
  • det(A1)=1/det(A)\det(A^{-1}) = 1/\det(A)

Berechnung über Gauß-Jordan

Form [AI][A | I] → eliminieren bis [IA1][I | A^{-1}]. Aufwand O(n3)O(n^3).

Exercise list

48 exercises · 12 with worked solution (25%)

Application 30Understanding 8Modeling 6Challenge 3Proof 1
  1. Ex. 33.1ApplicationAnswer key
    Transponierte von (1234)\begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}. (Antw.: (1324)\begin{pmatrix} 1 & 3 \\ 2 & 4 \end{pmatrix}.)
  2. Ex. 33.2Application
    Transponierte von (123456)\begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{pmatrix}.
  3. Ex. 33.3ApplicationAnswer key
    Inverse von (1234)\begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}. (Antw.: (213/21/2)\begin{pmatrix} -2 & 1 \\ 3/2 & -1/2 \end{pmatrix}.)
  4. Ex. 33.4Application
    Inverse von (2003)\begin{pmatrix} 2 & 0 \\ 0 & 3 \end{pmatrix}.
  5. Ex. 33.5Application
    Inverse von (1001)\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}.
  6. Ex. 33.6Application
    Existiert die Inverse von (1224)\begin{pmatrix} 1 & 2 \\ 2 & 4 \end{pmatrix}? Begründe. (Antw.: nein, det=0\det = 0.)
  7. Ex. 33.7ApplicationAnswer key
    Verifiziere AA1=IA \cdot A^{-1} = I für A=(3152)A = \begin{pmatrix} 3 & 1 \\ 5 & 2 \end{pmatrix}.
  8. Ex. 33.8Application
    Inverse von (cosθsinθsinθcosθ)\begin{pmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{pmatrix}. (Antw.: Drehung um θ-\theta.)
  9. Ex. 33.9Application
    Löse Ax=bA\mathbf{x} = \mathbf{b} über die Inverse: A=(2113)A = \begin{pmatrix} 2 & 1 \\ 1 & 3 \end{pmatrix}, b=(5,7)T\mathbf{b} = (5, 7)^T.
  10. Ex. 33.10ApplicationAnswer key
    Prüfe, ob (1234)\begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix} symmetrisch ist. (Antw.: nein — a12a21a_{12} \neq a_{21}.)
  11. Ex. 33.11Application
    Verifiziere (AB)T=BTAT(AB)^T = B^T A^T für A=(1234)A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix} und B=(0110)B = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}.
  12. Ex. 33.12Application
    Für welches kk hat die Matrix (1k24)\begin{pmatrix} 1 & k \\ 2 & 4 \end{pmatrix} keine Inverse? (Antw.: k=2k = 2.)
  13. Ex. 33.13Application
    Inverse von (1111)\begin{pmatrix} 1 & -1 \\ 1 & 1 \end{pmatrix}.
  14. Ex. 33.14Application
    Zeige numerisch, dass A+ATA + A^T symmetrisch ist für A=(1425)A = \begin{pmatrix} 1 & 4 \\ 2 & 5 \end{pmatrix}.
  15. Ex. 33.15Application
    Zeige numerisch, dass AATA - A^T antisymmetrisch ist.
  16. Ex. 33.16ApplicationAnswer key
    (A1)1=A(A^{-1})^{-1} = A — verifiziere für A=(1234)A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}.
  17. Ex. 33.17Application
    Wann ist die Diagonalmatrix (a00b)\begin{pmatrix} a & 0 \\ 0 & b \end{pmatrix} invertierbar? (Antw.: ab0ab \neq 0.)
  18. Ex. 33.18Application
    Inverse von (ab0d)\begin{pmatrix} a & b \\ 0 & d \end{pmatrix} (Dreiecksform, ad0ad \neq 0).
  19. Ex. 33.19Application
    A=(0110)A = \begin{pmatrix} 0 & 1 \\ -1 & 0 \end{pmatrix}. Berechne A4A^4 und A1A^{-1}.
  20. Ex. 33.20ApplicationAnswer key
    Zerlege (1425)\begin{pmatrix} 1 & 4 \\ 2 & 5 \end{pmatrix} in symmetrisch + antisymmetrisch.
  21. Ex. 33.21Application
    Berechne A1A^{-1} für A=(100020005)A = \begin{pmatrix} 1 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 5 \end{pmatrix} (diagonal).
  22. Ex. 33.22Application
    Berechne A1A^{-1} für A=(111011001)A = \begin{pmatrix} 1 & 1 & 1 \\ 0 & 1 & 1 \\ 0 & 0 & 1 \end{pmatrix} (Dreiecksform).
  23. Ex. 33.23Application
    Wende Gauß-Jordan auf [AI][A|I] an für A=(1234)A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}.
  24. Ex. 33.24Application
    Verifiziere, dass (123014560)\begin{pmatrix} 1 & 2 & 3 \\ 0 & 1 & 4 \\ 5 & 6 & 0 \end{pmatrix} eine Inverse hat (berechne det\det).
  25. Ex. 33.25Application
    Löse Ax=bA\mathbf x = \mathbf b mit A=(1123)A = \begin{pmatrix} 1 & 1 \\ 2 & 3 \end{pmatrix}, b=(3,8)T\mathbf b = (3, 8)^T, über A1A^{-1}.
  26. Ex. 33.26Application
    Inverse der Permutationsmatrix P=(010100001)P = \begin{pmatrix} 0 & 1 & 0 \\ 1 & 0 & 0 \\ 0 & 0 & 1 \end{pmatrix}. (Antw.: PT=P1P^T = P^{-1}.)
  27. Ex. 33.27Application
    Berechne A1A^{-1} für A=(1211)A = \begin{pmatrix} 1 & 2 \\ -1 & 1 \end{pmatrix}.
  28. Ex. 33.28ApplicationAnswer key
    Verwende A1A^{-1}, um {x+2y=5x+y=1\begin{cases} x + 2y = 5 \\ -x + y = 1 \end{cases} zu lösen.
  29. Ex. 33.29ApplicationAnswer key
    Verifiziere: Wenn AT=A1A^T = A^{-1}, dann ATA=IA^TA = I (orthogonale Matrix).
  30. Ex. 33.30Application
    Prüfe, ob (1/21/21/21/2)\begin{pmatrix} 1/\sqrt 2 & 1/\sqrt 2 \\ -1/\sqrt 2 & 1/\sqrt 2 \end{pmatrix} orthogonal ist.
  31. Ex. 33.31Understanding
    Zeige: Wenn AA symmetrisch und invertierbar ist, ist auch A1A^{-1} symmetrisch.
  32. Ex. 33.32UnderstandingAnswer key
    Zeige: Wenn A2=IA^2 = I, dann A=A1A = A^{-1}.
  33. Ex. 33.33Understanding
    Zeige, dass eine orthogonale Matrix (ATA=IA^T A = I) A1=ATA^{-1} = A^T erfüllt.
  34. Ex. 33.34Understanding
    Zeige: Sind A,BA, B invertierbar, so ist ABAB invertierbar.
  35. Ex. 33.35Understanding
    Zeige (AT)1=(A1)T(A^T)^{-1} = (A^{-1})^T.
  36. Ex. 33.36Understanding
    Zeige: Ist AA eine invertierbare Dreiecksmatrix, so ist auch A1A^{-1} eine Dreiecksmatrix vom gleichen Typ.
  37. Ex. 33.37UnderstandingAnswer key
    Zeige, dass das Produkt orthogonaler Matrizen orthogonal ist.
  38. Ex. 33.38Understanding
    Zeige det(A1)=1/det(A)\det(A^{-1}) = 1/\det(A).
  39. Ex. 33.39Modeling
    Verwende die Inverse, um zu lösen: {2x+y=7x3y=2\begin{cases} 2x + y = 7 \\ x - 3y = -2 \end{cases}.
  40. Ex. 33.40Modeling
    In der Matrix-Kryptographie (Hill cipher) wird eine Nachricht als Vektor m\mathbf{m} über AmA\mathbf{m} verschlüsselt. Entschlüsseln = A1(Am)A^{-1}(A\mathbf{m}). Modelliere mit A2×2A_{2\times 2}.
  41. Ex. 33.41ModelingAnswer key
    In CG: Die inverse Transformation ist grundlegend: Eine Transformation auf die Kamera anzuwenden bedeutet, die Inverse auf die Objekte anzuwenden. Erkläre, warum.
  42. Ex. 33.42Modeling
    In der Ökonomie verbindet die Leontief-Matrix LL Produktion mit Nachfrage. Lösung: x=(IL)1d\mathbf{x} = (I - L)^{-1} \mathbf{d}. Für L=(0,20,10,30,4)L = \begin{pmatrix} 0{,}2 & 0{,}1 \\ 0{,}3 & 0{,}4 \end{pmatrix}, d=(10,20)T\mathbf d = (10, 20)^T, berechne x\mathbf x.
  43. Ex. 33.43Modeling
    Identifiziere, ob (123014001)\begin{pmatrix} 1 & 2 & 3 \\ 0 & 1 & 4 \\ 0 & 0 & 1 \end{pmatrix} eine obere Dreiecksmatrix ist. Ist auch die Inverse obere Dreiecksmatrix?
  44. Ex. 33.44Modeling
    In der Statistik: Regression β^=(XTX)1XTy\hat\beta = (X^TX)^{-1}X^T\mathbf y. Warum ist Gauß-Elimination der direkten Inversion vorzuziehen?
  45. Ex. 33.45Challenge
    Finde eine Matrix AA mit A3=IA^3 = I, aber AIA \neq I. (Tipp: Drehung um 120°120°.)
  46. Ex. 33.46ChallengeAnswer key
    Zeige: Aus AB=IAB = I für A,BMnA, B \in M_n folgt BA=IBA = I (nicht trivial).
  47. Ex. 33.47Challenge
    Berechne A1A^{-1} für A=I+uvTA = I + \mathbf u \mathbf v^T mit u,vRn\mathbf u, \mathbf v \in \mathbb R^n und 1+vTu01 + \mathbf v^T\mathbf u \neq 0 (Sherman-Morrison).
  48. Ex. 33.48Proof
    Beweise (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1} über (AB)(B1A1)=I(AB)(B^{-1}A^{-1}) = I.

Quellen

Updated on 2026-04-30 · Author(s): Clube da Matemática

Found an error? Open an issue on GitHub or submit a PR — open source forever.