Sine Wave Explorer (Amplitude, Phase, Frequency) — Notebook Template
Explore y=A·sin(ωx+φ)+c, compute period and phase shift, and plot for intuition.
What this template does
This is a ready-to-run GetCalcMaster Notebook starter. Open it into Notebook, run once with defaults, then tweak inputs and keep your assumptions next to the math.
How to use it (recommended)
- Open in Notebook.
- Set A, ω, φ, and offset c.
- Compute period T = 2π/ω and phase shift −φ/ω.
- Plot y(x)=A·sin(ωx+φ)+c in 2D Graph.
- Snapshot with notes on units (radians vs degrees).
Tip: When a result matters, verify it twice: a unit check + a second method (graph/estimate).
Preview (first cells)
This preview is for readability. The full template loads into Notebook when you click Open.
TEXT
# Sine Wave Explorer Model: **y(x) = A·sin(ωx + φ) + c** - Period: **T = 2π/ω** - Phase shift: **x0 = −φ/ω** Use radians for trig.
MATH
A = 2
MATH
omega = 3
MATH
phi = 0.5
MATH
c = 0
MATH
T = 2*pi/omega