Sorry, but I'm a bit confused with Mathematica. I would like to plot the cosine this way: amplitude * cosine(2 * pi * f * t + phase) in Mathematica, but now the cosine crosses the x-axis at less then pi/8.
cosine[amplitude_, frequency_, t_, phase_] :=
amplitude*Cos[2*Pi*frequency*t + phase*(Pi/180)];
Plot[cosine[1, 1, t, 0], {t, -1, 1},
Ticks -> {Range[-Pi, Pi, Pi/4], Automatic}]

The result is not as expected. I thought the cosine would go from -Pi to Pi. This way it would work, but it's not the way I would like to define it.
Plot[Cos[x], {x, -Pi, Pi}, Ticks -> {Range[-2 Pi, 2 Pi, Pi/4], Automatic}]

or this way.
cosine[amplitude_, frequency_, t_, phase_] :=
amplitude*Cos[frequency*t + phase];
Plot[cosine[1, 1, t, 0 \[Degree]], {t, -2 Pi, 2 Pi},
Ticks -> {Range[-2 Pi, 2 Pi, Pi/4], Automatic}]

