Maple Tool 1
This tool is designed to be used with Activity 1 in Section 5.4.
The constants and determine the graphing window, with varying between and and between and .
> | alpha:=4*Pi; beta:=2; |
> |
Vary the constants , , , and one at a time. (We use in place of because is a protected symbol in Maple.) You may need to change the size of the viewing window as you change the constants.
> | A:=1; B:=1/2; C:=-2; delta:=0.3; f:=t->A+B*sin(C*(t-delta)); plot(f(t), t=-alpha..alpha, view=[-alpha..alpha,-beta..beta], labels=[t,y], thickness=2); |
> |
> |