de-CH
utf-8
math math-format
Anwendung Integralrechenregeln
i-06-02
number
200
randRange(1,10) randRangeNonZero(-10,10) function( t ) { return [t, sin(t)]; } function( t ) { return [t, 0]; } function( t ) { return [t, -sin(t)]; }

Sei f eine ungerade Funktion mit

\displaystyle\int_0^{U} f(x)\; dx = I.

Berechnen Sie

\displaystyle\int_{-U}^0 f(x) \; dx.

-I

Der Graph einer ungeraden Funkion (z.B. \pm \sin) ist symmetrisch bezüglich des Ursprungs.

graphInit({ range: [ 1.2 * PI, 1.2 ], scale: [ 40, 40 ], gridStep: [ PI/2, .5 ], tickStep: [ 2, 2 ], labelStep: [ 2, 1 ], unityLabels: true, }); // draw curve style({ stroke: BLUE, strokeWidth: 2.2 }, function() { plot( function( x ) { return sin (x); }, [ -PI+0.5, PI-0.5 ] ); });
graphInit({ range: [ 1.2 * PI, 1.2 ], scale: [ 40, 40 ], gridStep: [ PI/2, .5 ], tickStep: [ 2, 2 ], labelStep: [ 2, 1 ], unityLabels: true, }); // draw curve style({ stroke: BLUE, strokeWidth: 2.2 }, function() { plot( function( x ) { return -sin (x); }, [ -PI+0.5, PI-0.5 ] ); });

und die Flächenstücke ober- und unterhalb der x-Achse sind jeweils gleich gross.

style({ fill: BLUE, stroke: BLUE, opacity: 0.5 }, function() { plotParametric( fn1, [-PI+0.5, 0], 1, fn2); }); style({ fill: ORANGE, stroke: BLUE, opacity: 0.5 }, function() { plotParametric( fn1, [ 0, PI-0.5], 1, fn2); });
style({ fill: ORANGE, stroke: BLUE, opacity: 0.5 }, function() { plotParametric( fn2, [-PI+0.5, 0], 1, fn3); }); style({ fill: BLUE, stroke: BLUE, opacity: 0.5 }, function() { plotParametric( fn3, [ 0, PI-0.5], 1, fn2); });

Am punktsymmetrischen Graphen sehen wir:

\displaystyle \pm \left( \int_{\color{red}{-U}}^{\color{blue}{0}} f(x)\; dx \right) = Linke Fläche = Rechte Fläche = \mp \left( \displaystyle \int_{0}^{U} f(x)\; dx \right) .

Daher:

\displaystyle \int_{\color{red}{-U}}^{\color{blue}{0}} f(x)\; dx = -I.