\( \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: Schreibweise von Funktionen verstehen

(function() { var functionPath = []; functionPath.push([ -11, randRange( -5, 5 ) ]); for( var i = -10; i < 11; i++ ) { if ( abs( randRangeNonZero( -10, 10 ) < 2 ) && functionPath[i+10][1] < 8 ) { functionPath.push([i, functionPath[i+10][1]+1]); } else if ( abs( randRangeNonZero( -10, 10 ) < 2 ) && functionPath[i+10][1] > -8 ) { functionPath.push([i, functionPath[i+10][1]-1]); } else if ( abs( randRangeNonZero( -10, 10 ) < 2 ) && functionPath[i+10][1] < 7 ) { functionPath.push([i, functionPath[i+10][1]+2]); } else if ( abs( randRangeNonZero( -10, 10 ) < 3 ) && functionPath[i+10][1] > -7 ) { functionPath.push([i, functionPath[i+10][1]-2]); } else { functionPath.push([i, functionPath[i+10][1]]); } } return functionPath; })() randRange(-9, 9) FUNCTION_PATH[CORRECT_X + 11][1]

Die Funktion f(x) ist unten aufgetragen. Bestimme f(CORRECT_X).

graphInit({ range: 10, scale: 20, axisArrows: "<->", tickStep: 1, labelStep: 1, unityLabels: false, labelFormat: function( s ) { return "\\small{" + s + "}"; } }); path( FUNCTION_PATH, { stroke: "#6495ed" } );

f(CORRECT_X)= CORRECT_Y

An welchem Punkt schneidet f(x) die Stelle x = CORRECT_X?

graph.vert = line( [CORRECT_X, -10], [CORRECT_X, 10], { stroke: "#28ae7b", strokeDasharray: "- " } ); circle( [CORRECT_X, CORRECT_Y], 3/20, { stroke: "none", fill: "black" } );

Sie schneiden sich in (CORRECT_X, CORRECT_Y).

Daher ist f(CORRECT_X) = CORRECT_Y.

graph.vert.remove();