For AI agents: use /llms.txt for the Nakafa content index.
Startseite Matrizen als geometrische Transformationen Inhalt kopieren
Öffnen
Eine 2 × 2 2 \times 2 2 × 2 -Matrix definiert eine lineare Transformation der kartesischen Ebene. Sie bildet den Ursprung stets auf sich selbst ab, weshalb eine reine Verschiebung stattdessen eine Vektoraddition oder homogene Koordinaten benötigt.
Einen Punkt mit den Koordinaten ( x , y ) (x,y) ( x , y ) können wir als Ortsvektor ( x y ) \begin{pmatrix} x \\ y \end{pmatrix} ( x y ) schreiben. In dieser Form lässt sich die Abbildung direkt als Matrixmultiplikation darstellen.
Wenn ein Punkt P ( x , y ) P(x,y) P ( x , y ) durch die Matrix M = ( a b c d ) M = \begin{pmatrix} a & b \\ c & d \end{pmatrix} M = ( a c b d ) transformiert wird, wird sein Bild P ′ ( x ′ , y ′ ) P'(x',y') P ′ ( x ′ , y ′ ) durch Matrixmultiplikation erhalten:
Also x ′ = a x + b y x' = ax + by x ′ = a x + b y und y ′ = c x + d y y' = cx + dy y ′ = c x + d y .
Der Vektor ( x y ) \begin{pmatrix} x \\ y \end{pmatrix} ( x y ) beschreibt einen beliebigen Punkt der Ebene. Bestimme das Produkt ( 0 − 1 1 0 ) ( x y ) \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix} \begin{pmatrix} x \\ y \end{pmatrix} ( 0 1 − 1 0 ) ( x y ) und deute das Ergebnis geometrisch.
Die Matrix ( 0 − 1 1 0 ) \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix} ( 0 1 − 1 0 ) bildet ( x , y ) (x,y) ( x , y ) auf ( − y , x ) (-y,x) ( − y , x ) ab. Genau diese Koordinatenregel beschreibt eine Drehung um 90 ∘ 90^\circ 9 0 ∘ gegen den Uhrzeigersinn um den Ursprung.
Bestimme das Bild von △ A B C \triangle ABC △ A B C mit den Eckpunkten A ( 1 , 1 ) A(1,1) A ( 1 , 1 ) , B ( 4 , 1 ) B(4,1) B ( 4 , 1 ) und C ( 4 , 2 ) C(4,2) C ( 4 , 2 ) unter der Matrix ( − 1 0 0 − 1 ) \begin{pmatrix} -1 & 0 \\ 0 & -1 \end{pmatrix} ( − 1 0 0 − 1 ) .
Zuerst schreiben wir die Koordinaten der Punkte als Spalten einer Matrix: ( 1 4 4 1 1 2 ) \begin{pmatrix} 1 & 4 & 4 \\ 1 & 1 & 2 \end{pmatrix} ( 1 1 4 1 4 2 ) . Die drei Spalten gehören der Reihe nach zu A A A , B B B und C C C .
Dann multiplizieren wir die Punktmatrix von links mit der Transformationsmatrix ( − 1 0 0 − 1 ) \begin{pmatrix} -1 & 0 \\ 0 & -1 \end{pmatrix} ( − 1 0 0 − 1 ) .
Das Ergebnis der Transformation ist ein neues Dreieck △ A ′ B ′ C ′ \triangle A'B'C' △ A ′ B ′ C ′ mit den Eckpunkten A ′ ( − 1 , − 1 ) A'(-1,-1) A ′ ( − 1 , − 1 ) , B ′ ( − 4 , − 1 ) B'(-4,-1) B ′ ( − 4 , − 1 ) und C ′ ( − 4 , − 2 ) C'(-4,-2) C ′ ( − 4 , − 2 ) .
Die Matrix ( − 1 0 0 − 1 ) \begin{pmatrix} -1 & 0 \\ 0 & -1 \end{pmatrix} ( − 1 0 0 − 1 ) stellt eine 180 ∘ 180^\circ 18 0 ∘ Drehung um den Ursprung dar.
Bestimme das Produkt ( 0 1 − 1 0 ) ( x y ) \begin{pmatrix} 0 & 1 \\ -1 & 0 \end{pmatrix} \begin{pmatrix} x \\ y \end{pmatrix} ( 0 − 1 1 0 ) ( x y ) . Welche Transformation beschreibt diese Matrix?
Die Matrix ( 1 2 0 1 ) \begin{pmatrix} 1 & 2 \\ 0 & 1 \end{pmatrix} ( 1 0 2 1 ) beschreibt eine Transformation. Bestimme das Bild des Dreiecks mit den Eckpunkten A ( 2 , 0 ) A(2,0) A ( 2 , 0 ) , und .
Der Punkt ( x , y ) (x,y) ( x , y ) wird auf ( y , − x ) (y,-x) ( y , − x ) abgebildet.
Dies ist eine Drehung um 90 ∘ 90^\circ 9 0 ∘ im Uhrzeigersinn. Gleichwertig dazu ist eine Drehung um 270 ∘ 270^\circ 27 0 ∘ gegen den Uhrzeigersinn um den Ursprung.
Transformationsmatrix M = ( 1 2 0 1 ) M = \begin{pmatrix} 1 & 2 \\ 0 & 1 \end{pmatrix} M = ( 1 0 2 1 ) .
Eckpunkte: A ( 2 , 0 ) A(2,0) A ( 2 , 0 ) , , .
Punktmatrix: ( 2 2 0 0 1 1 ) \begin{pmatrix} 2 & 2 & 0 \\ 0 & 1 & 1 \end{pmatrix} ( 2 0 2 1 0 1 ) .
Die Bildpunkte sind A ′ ( 2 , 0 ) A'(2,0) A ′ ( 2 , 0 ) , B ′ ( 4 , 1 ) B'(4,1) B ′ ( 4 , 1 ) und C ′ ( 2 , 1 ) C'(2,1) C ′ ( 2 , 1 ) .
Diese Transformation heißt horizontale Scherung, weil die x x x -Koordinate um das Doppelte der y y y -Koordinate verschoben wird, während y y y unverändert bleibt.