de-CH
utf-8
math graphie polynomials
Orthogonal einstellen
t-04-06a
number
185220
randRange(-10,10) randRange(-10,10) randRangeNonZero(-10,10) randRange(-10,10)

Bestimmen Sie \color{red}a, sodass die beiden Vektoren \vec{v}=\left( \begin{matrix} WY \\ VY \end{matrix} \right) und \vec{w}=\left( \begin{matrix} WX \\ \color{red}a \end{matrix} \right) orthogonal sind.

-WX*WY/VY

Für das Skalarprodukt gilt:

\vec {v} \cdot \vec{w} = \left( \begin{matrix} v_X\\ v_Y \end{matrix} \right) \cdot \left(\begin{matrix} w_X \\ \color{red}a \end{matrix} \right) = v_X \cdot w_X + v_Y \cdot \color{red}a.

Orthogonal bedeutet, dass das Skalarprodukt der beiden Vektoren gleich Null ist.

\vec {v} \cdot \vec{w} = 0 = v_X \cdot w_X + v_Y \cdot \color{red}a.

Mit den gegebenen Werten folgt

0= \vec{v} \cdot \vec{w} = negParens(WY) \cdot negParens(WX) + negParens(VY) \cdot \color{red}a .

Lösen wir diese Gleichung nach \color{red}a auf, folgt

\color{red}a = \dfrac{-WX*WY}{VY} = fractionReduce(-WX*WY,VY) .