de-CH
utf-8
math math-format
Gauss für 3 x 3 - LGS: nicht eindeutig
gauss-03-02-gpt
multiple
97844723712
randRangeExclude(-8,8,[-1,1,0]) randRangeExclude(-8,8,[-1,1,0]) randRangeExclude(-8,8,[-1,1,0]) randRangeExclude(-8,8,[-1,1,0]) randRangeExclude(-8,8,[-1,1,0]) randRangeExclude(-8,8,[-1,1,0]) randRangeExclude(-8,8,[-1,1,0]) randRangeExclude(-8,8,[-1,1,0]) randRangeExclude(-8,8,[-1,1,0]) randRangeExclude(-8,8,[-1,1,0]) A * K + D * L B * K + E * L C * K + F * L M * K + N * L

Gegeben sei ein LGS der Form \begin{pmatrix}A & B & C & \bigl | & M \\ D & E & F & \bigl | & N \\ A3 & B3 & C3 & \bigl | & M3 \end{pmatrix}.

Bestimmen Sie die allgemeine Lösung des Systems in Parameterform mit z(t) = t.

a x(t) = (M * E - B * N)/ (A * E - B * D) + (-C * E + B * F)/( A * E - B * D) *t
b y(t) = (-A*F+ C*D)/ (A*E - B*D)* t + (A*N - M*D)/(A*E - B*D)

Es ist die dritte Zeile eine Linearkombination der ersten beiden ist:

Zeile 3 = K \times Zeile 1 + L \times Zeile 2

Lösen Sie die erste Gleichung nach y auf:

Ax + By + Ct = M \leadsto {\color{red}y = \dfrac1{B}\left(M - Ax - Ct \right)}

Setzen Sie dieses \color{red}y in die zweite Gleichung ein und lösen Sie nach x auf:

Dx + E\left({\color{red} \dfrac1{B}\left(M - Ax - Ct \right)}\right) + Ft = N

\leadsto x(t) = fractionReduce(M * E - B * N, A * E - B * D) + fractionReduce(-C * E + B * F, A * E - B * D) \cdot t

Damit erhalten wir ausserdem

y(t) = fractionReduce(-A*F+ C*D, A*E - B*D)\cdot t + fractionReduce(A*N - M*D, A*E - B*D)

Dies stellt die Lösungsmenge des Systems in Parameterform dar.