Bestimmen Sie \color{red}z
, sodass
das Vektorprodukt der beiden Vektoren
\vec{v}=\left(
\begin{matrix} VX\\
VY \\
VZ\end{matrix}
\right)
und
\vec{w}=\left(
\begin{matrix} WX \\
WY \\ \color{red}z
\end{matrix}
\right)
parallel zur
(y,z)
-Ebene liegt.
Für das Vektorprodukt gilt:
\vec {v} \times \vec{w} = \left(
\begin{matrix} v_X \\ v_Y \\v_Z \end{matrix}
\right) \times
\left(
\begin{matrix}\color{blue}{w_X} \\
\color{orange}{w_Y} \\ \color{red}{z}\end{matrix}
\right) =
\left(
\begin{matrix}
v_Y \cdot \color{red}{z}
- v_Z \cdot \color{orange}{w_Y} \\
-(v_X \cdot \color{red}{z}
- v_Z \cdot \color{blue}{w_X}) \\
v_X \cdot \color{orange}{w_Y}
- v_Y \cdot \color{blue}{w_X}
\end{matrix}
\right).
Dieser Vektor liegt parallel zur (y,z)
-Ebene,
falls die \color{blue}x
-Koordinate
gleich null ist:
v_Y \cdot \color{red}{z}
- v_Z \cdot \color{orange}{w_Y} = \color{blue}0
Mit den Zahlen erhalten wir die Gleichung:
negParens(VY) \cdot \color{red}{z}
= negParens(VZ) \cdot negParens(WY)
und nach \color{red}z
aufgelöst:
\color{red}{z} =
\dfrac{negParens(VZ) \cdot negParens(WY)}
{VY} =
fractionReduce(VZ*WY,VY)
.