\( \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: Gerade und ungerade Funktionen bestimmen

randFromArray([["gerade", $._("gerade")], ["ungerade", $._("ungerade")], ["weder noch", $._("weder noch")]])
makeFunc(SOL_KEY) getUseablePoints(FUNC, SOL_KEY) randFromArray(X_VALUES)

Ausgehend von dem Grafen der Funktion, ist f(x) gerade, ungerade, oder weder noch?

f(x) ist unten eingezeichnet.

graphInit({ range: 10, scale: 20, tickStep: 1, axisArrows: "<->" }); style({ stroke: BLUE }); plot(function(x) { return FUNC(x); }, [-10, 10]); style({ stroke: RED });

Eine Funktion ist gerade wenn gilt: f(-x) = f(x) für alle Werte von x.
Eine Funktion ist ungerade wenn gilt: f(-x) = -f(x) für alle Werte von x.

style( { strokeWidth: 2 }, function() { path([[ PT, 0], [ PT, FUNC(PT)]]); path([[-PT, 0], [-PT, FUNC(-PT)]]); } ); style( { strokeDasharray: "." }, function() { path([[0, FUNC(PT)], [PT, FUNC(PT)]]); path([[0, FUNC(-PT)], [-PT, FUNC(-PT)]]); } );

\qquad f(\blue{PT}) \approx \red{roundTo(1, FUNC(PT))}
\qquad f(\blue{-PT}) \approx \red{roundTo(1, FUNC(-PT))}

f(\blue{PT}) \neq f(\blue{-PT}), daher ist f(x) nicht gerade.

f(\blue{PT}) \neq -f(\blue{-PT}), daher ist f(x) nicht ungerade.

Daher ist f(x) weder gerade noch ungerade.

style( { strokeWidth: 2 }, function() { path([[ x, 0], [ x, FUNC(x)]]); path([[-x, 0], [-x, FUNC(-x)]]); } ); style( { strokeDasharray: "." }, function() { path([[0, FUNC(x)], [x, FUNC(x)]]); path([[0, FUNC(-x)], [-x, FUNC(-x)]]); } );

\qquad f(\blue{x}) \approx \red{roundTo(1, FUNC(x))}
\qquad f(\blue{-x}) \approx \red{roundTo(1, FUNC(-x))}

f(x) ist ungerade weil f(x) = -f(-x). (Für alle Werte von x, nicht nur diejenigen, die wir überprüft haben!)

f(x) ist gerade weil f(x) = f(-x). (Für alle Werte von x, nicht nur diejenigen, die wir überprüft haben!)

makeEquation(SOL_KEY) getNegativeFunction(FUNC) function(x){ return FUNC.evaluate(x); } getUseablePoints(CALLABLE_FUNC, SOL_KEY) FUNC.terms.length !== 1 || FUNC.terms[0].variableString !== ''

Ist f(x) eine gerade oder ungerade Funktion oder weder noch?

f(x) = FUNC

Eine Funktion ist gerade wenn gilt: f(-x) = f(x) für alle Werte von x.
Eine Funktion ist ungerade wenn gilt: f(-x) = -f(x) für alle Werte von x.

Was ist f(\blue{-x})?

f(\blue{-x}) = NEG_FUNC1

f(\blue{-x}) = NEG_FUNC2

f(\blue{-x}) = -(FUNC)

f(\blue{-x}) = -f(x)

Daher ist f(x) ungerade.

f(\blue{-x}) = f(x)

Daher ist f(x) gerade.

f(-x) \neq f(x), da die Vorzeichen der Terme für ungerade Funktionen verschieden sind. f(-x) \neq -f(x), da die Vorzeichen der Terme für gerade Funktionen gleich sind.

Daher ist f(x) weder ungerade noch gerade.

SOL_TEXT

  • gerade
  • ungerade
  • weder noch