Interferens.
Figuren viser funktionen: $f(x) = sin(ax) + sin(bx)$.
Du kan variere parametrene a og b.
Læg mærke til, hvordan grafens amplitude “svinger”, når forskellen på a og b varieres.
Hvis du har prøvet at stemme en guitar, har du måske brugt “stødtonen” mellem de to toner, du prøver at få ens. Det er netop dette fænomen.
Figure figure = Position [0,0] Size[x,y*4/5] Origin[x/3,y*2/5] Unit x/12 Color "white";
Axes axes = Color "black";
Grid grid = Color "blue";
Units units = Color "black";
SlidePot a = From 10 To 16 Initial 13 Position [20,y-60] Size [300,0];
Text atxt = "a = a,2" Offset [340,y-55] Color "black";
SlidePot b = From 10 To 16 Initial 13 Position [20,y-30] Size [300,0];
Text btxt = "b = b,2" Offset [340,y-25] Color "black";
Graph graph = sin(a*x)+sin(b*x) Size 1 Color "black";
Tex formula = "y = sin(ax) + sin(bx)" Offset [300,15] Color "black";