de-CH
utf-8
math graphie polynomials
Frequenzmodulation bestimmen
t-03-02
number
50
randRange(2,7) randRange(1,10) 0.5 * a

Gegeben ist der Graph der Sinus-Funktion \color{orange}{f(x)=\sin(x)} und der Graph der Funktion \color{blue}{g} mit \color{blue}{g(x)= A\cdot\sin(\color{red}{b}\cdot (\pi x))}.

Bestimmen Sie \color{red}{b}.

graphInit({ range: [[-1, 7],[-A-1, A+1]], scale: [ 25, 25 ], gridStep: [ 1* PI / 4, 1 ], tickStep: [ 2, 1 ], labelStep: [ 4, 1 ], unityLabels: true, xLabelFormat: piFraction }); label( [ 0, A+1 ], "y", "above" ); label( [ 7, 0 ], "x", "right" ); label( [ PI, 0 ], "\\pi", "below" ); style({stroke: "black", strokeWidth: 2}); plot(function(x) {return A*sin(b*x);}, [-1, 10], {stroke: "blue"}); plot(function(x) {return sin(x);}, [-1, 10], {strokeDasharray: ".",stroke: "orange"});

b

Der Faktor \color{red}{b} bewirkt Streckung / Stauchung entlang der x-Achse und ist gleich der Winkelgeschwindigkeit \omega.

Am (blauen) Graphen von \color{blue}{g} sehen wir b volle Perioden in dem Intervall 0 bis 2\pi.

Damit ist die Frequenz F = Anzahl der Schwingungen pro Zeiteinheit = \dfrac{b}{2\pi}.

und die Winkelgeschwindigkeit

\omega = \color{red}b =2\pi \cdot F = 2\pi \cdot \dfrac{b}{2\pi} = b.