\( \newcommand{\br}[1]{\left( #1\right)} \newcommand{\logpar}[1]{\log\left( #1\right)} \newcommand{\cospar}[1]{\cos\left( #1\right)} \newcommand{\sinpar}[1]{\sin\left( #1\right)} \newcommand{\tanpar}[1]{\tan\left( #1\right)} \newcommand{\arcsinpar}[1]{\sin^{-1}\!\left( #1\right)} \newcommand{\arccospar}[1]{\cos^{-1}\!\left( #1\right)} \newcommand{\arctanpar}[1]{\tan^{-1}\!\left( #1\right)} \newcommand{\asin}[1]{\sin^{-1}\! #1} \newcommand{\acos}[1]{\cos^{-1}\! #1} \newcommand{\atan}[1]{\tan^{-1}\! #1} \newcommand{\asinh}[1]{\sinh^{-1}\! #1} \newcommand{\acosh}[1]{\cosh^{-1}\! #1} \newcommand{\atanh}[1]{\tanh^{-1}\! #1} \newcommand{\logten}[1]{\log_{10}\! #1} \definecolor{explaination}{RGB}{0, 166, 226} \newcommand{\ubrace}[2][u]{ { \color{explaination}{\underbrace{ {\color{black}{#2}} }_{#1}} } } \newcommand{\obrace}[2][u]{ { \color{explaination}{\overbrace{ {\color{black}{#2}} }^{#1}} } } \definecolor{highlight}{RGB}{181, 41, 118} \newcommand{\xplain}[1]{{ \textcolor{explaination} { \footnotesize{ #1 \newline}}}} \newcommand{\hilite}[1]{{ \textcolor{highlight} { { #1 }}}} \definecolor{lightergray}{gray}{.675} \newcommand{\hide}[1]{{ \textcolor{lightergray} { \footnotesize{ #1 \newline}}}} \newcommand{\mth}[1]{ { \textcolor{black} { { \small #1 } } } } \)

Übung: Quadratische Ergänzung

randRangeNonZero( -10, 10 ) randRange( -5, 5 ) * 2 + ( X1 % 2 ) ( X1 + X2 ) * -1 X1 * X2 new Polynomial( 0, 2, [C, B, 1], "x" ) POLY.text() $._("oder")

Benutze quadratische Ergänzung um nach x aufzulösen.

\large POLY_TEXT = 0

B/2 C * -1 + pow( B / 2, 2 ) X1 X2
B/2 C * -1 + pow( B / 2, 2 ) X2 X1
Quadratische Ergänzung:

(x + )² = 

Lösung:

x =    OR   x = 

X1

Quadratische Ergänzung:
(x + {}-X1 )^2 = {} 0

Lösung:
X1

Als erstes addierensubtrahieren wir den konstanten Term von beiden Seiten der Gleichung:

x^2 + Bx = C * -1

Als nächstes führen wir die quadratische Ergänzung durch indem wir den Koeffizienten von x halbieren, dann quadrieren und dann zu beiden Seiten der Gleichung addieren. Da der Koeffizient von x B ist. Die Hälfte davon ist B / 2, und durch die Quadrierung erhalten wir \color{blue}{pow( B / 2, 2 )}.

x^2 + Bx \color{blue}{ + pow( B / 2, 2 )} = C * -1 \color{blue}{ + pow( B / 2, 2 )}

Wir können die linke Seite so umschreiben, dass ein quadrierter Term entsteht.

( x + B / 2 )^2 = C * -1 + pow( B / 2, 2 )

Die linke Seite der Gleichung ist bereits faktorisiert. Der Koeffizient von x ist B, die Hälfte davon ist B / 2, und das Quadrat davon ist \color{blue}{pow( B / 2, 2 )}, unser konstanter Term.

Wir können die linke Seite so umschreiben, dass ein quadrierter Term entsteht.

( x + B / 2 )^2 = C * -1 + pow( B / 2, 2 )

Als nächstes ziehen wir die Quadratwurzel von beiden Seiten:

x + B / 2 = \pmsqrt( C * -1 + pow( B / 2, 2 ) )

Isoliere x um die Lösung(en) zu bestimmen:

x = -B / 2\pmsqrt( C * -1 + pow( B / 2, 2 ) )

Die Lösungen sind: x = -B / 2 + sqrt( C * -1 + pow( B / 2, 2 ) ) \text{ OR } x = -B / 2 - sqrt( C * -1 + pow( B / 2, 2 ) )

Die Lösung ist: x = -B / 2 + sqrt( C * -1 + pow( B / 2, 2 ) )

Daher ist die quadratische Ergänzung: ( x + B / 2 )^2 = C * -1 + pow( B / 2, 2 )