Mathematik

Formeln für Geraden im Raum

Parameterform einer Geraden

Die Parameterform einer Geraden im Raum lautet:

g : x = a + t v g: \vec{x} = \vec{a} + t \cdot \vec{v}

mit:

  • x \vec{x} : Ortsvektor eines beliebigen Punktes auf der Geraden
  • a \vec{a} : Ortsvektor eines festen Punktes auf der Geraden (Stützvektor)
  • v \vec{v} : Richtungsvektor der Geraden
  • t R t \in \mathbb{R} : Parameter

Gerade durch zwei Punkte

Eine Gerade durch die Punkte A ( x 1 y 1 z 1 ) A(x_1|y_1|z_1) und B ( x 2 y 2 z 2 ) B(x_2|y_2|z_2) hat die Gleichung:

g : x = O A + t A B g: \vec{x} = \vec{OA} + t \cdot \vec{AB}

mit dem Richtungsvektor: A B = ( x 2 x 1 y 2 y 1 z 2 z 1 ) \vec{AB} = \begin{pmatrix}x_2 - x_1\\y_2 - y_1\\z_2 - z_1\end{pmatrix}

Beispiel

Gerade durch A ( 1 2 3 ) A(1|2|3) und B ( 4 1 5 ) B(4|1|5) :

A B = ( 4 1 1 2 5 3 ) = ( 3 1 2 ) \vec{AB} = \begin{pmatrix}4-1\\1-2\\5-3\end{pmatrix} = \begin{pmatrix}3\\-1\\2\end{pmatrix}

g : x = ( 1 2 3 ) + t ( 3 1 2 ) g: \vec{x} = \begin{pmatrix}1\\2\\3\end{pmatrix} + t \cdot \begin{pmatrix}3\\-1\\2\end{pmatrix}

Punktprobe

Ein Punkt P ( x P y P z P ) P(x_P|y_P|z_P) liegt auf der Geraden g : x = a + t v g: \vec{x} = \vec{a} + t \cdot \vec{v} , wenn die Gleichung:

( x P y P z P ) = a + t v \begin{pmatrix}x_P\\y_P\\z_P\end{pmatrix} = \vec{a} + t \cdot \vec{v}

eine Lösung für t t besitzt.

Beispiel

Liegt P ( 7 0 7 ) P(7|0|7) auf g : x = ( 1 2 3 ) + t ( 3 1 2 ) g: \vec{x} = \begin{pmatrix}1\\2\\3\end{pmatrix} + t \cdot \begin{pmatrix}3\\-1\\2\end{pmatrix} ?

Ansatz: ( 7 0 7 ) = ( 1 2 3 ) + t ( 3 1 2 ) \begin{pmatrix}7\\0\\7\end{pmatrix} = \begin{pmatrix}1\\2\\3\end{pmatrix} + t \cdot \begin{pmatrix}3\\-1\\2\end{pmatrix}

Komponentenweise: \begin{align*} x: \quad 7 &= 1 + 3t \quad \Rightarrow \quad t = 2 \ y: \quad 0 &= 2 - t \quad \Rightarrow \quad t = 2 \ z: \quad 7 &= 3 + 2t \quad \Rightarrow \quad t = 2 \end{align*}

Ja, P liegt auf der Geraden mit t = 2 t = 2 .

Lagebeziehungen von Geraden

Zwei Geraden im Raum können folgende Lagebeziehungen haben:

  1. Identisch: g 1 = g 2 g_1 = g_2 (dieselbe Gerade)
  2. Parallel: g 1 g 2 g_1 \parallel g_2 (gleiche Richtung, kein Schnittpunkt)
  3. Schneidend: g 1 g 2 = { S } g_1 \cap g_2 = \{S\} (genau ein Schnittpunkt)
  4. Windschief: kein Schnittpunkt und nicht parallel

Parallelität prüfen

Zwei Geraden sind parallel, wenn ihre Richtungsvektoren linear abhängig sind:

v 1 = k v 2 \vec{v_1} = k \cdot \vec{v_2} für ein k 0 k \neq 0

Beispiel

g 1 : x = ( 1 2 3 ) + t ( 2 1 3 ) g_1: \vec{x} = \begin{pmatrix}1\\2\\3\end{pmatrix} + t \cdot \begin{pmatrix}2\\-1\\3\end{pmatrix}

g 2 : x = ( 0 1 2 ) + s ( 4 2 6 ) g_2: \vec{x} = \begin{pmatrix}0\\1\\2\end{pmatrix} + s \cdot \begin{pmatrix}4\\-2\\6\end{pmatrix}

v 2 = ( 4 2 6 ) = 2 ( 2 1 3 ) = 2 v 1 \vec{v_2} = \begin{pmatrix}4\\-2\\6\end{pmatrix} = 2 \cdot \begin{pmatrix}2\\-1\\3\end{pmatrix} = 2 \cdot \vec{v_1}

Die Geraden sind parallel.

Schnittpunkt berechnen

Der Schnittpunkt zweier Geraden wird gefunden durch Gleichsetzen:

a 1 + t v 1 = a 2 + s v 2 \vec{a_1} + t \cdot \vec{v_1} = \vec{a_2} + s \cdot \vec{v_2}

Dies führt zu einem linearen Gleichungssystem für t t und s s .

Beispiel

g 1 : x = ( 1 2 1 ) + t ( 1 1 2 ) g_1: \vec{x} = \begin{pmatrix}1\\2\\1\end{pmatrix} + t \cdot \begin{pmatrix}1\\1\\2\end{pmatrix}

g 2 : x = ( 2 1 3 ) + s ( 2 1 1 ) g_2: \vec{x} = \begin{pmatrix}2\\1\\3\end{pmatrix} + s \cdot \begin{pmatrix}2\\1\\1\end{pmatrix}

Gleichsetzen: ( 1 + t 2 + t 1 + 2 t ) = ( 2 + 2 s 1 + s 3 + s ) \begin{pmatrix}1+t\\2+t\\1+2t\end{pmatrix} = \begin{pmatrix}2+2s\\1+s\\3+s\end{pmatrix}

System lösen: t = 1 , s = 0 t = 1, s = 0

Schnittpunkt: S = ( 2 3 3 ) S = \begin{pmatrix}2\\3\\3\end{pmatrix}

Abstand Punkt-Gerade

Der Abstand eines Punktes P P zu einer Geraden g : x = a + t v g: \vec{x} = \vec{a} + t \cdot \vec{v} wird berechnet durch:

d ( P , g ) = A P × v v d(P,g) = \frac{|\vec{AP} \times \vec{v}|}{|\vec{v}|}

wobei A A ein beliebiger Punkt auf der Geraden ist und × \times das Kreuzprodukt bezeichnet.

🔖 Formel