Sine Wave Explorer (Amplitude, Phase, Frequency) — Notebook Template

Explore y=A·sin(ωx+φ)+c, compute period and phase shift, and plot for intuition.

graphing trigonometry signals
All templates

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)

  1. Open in Notebook.
  2. Set A, ω, φ, and offset c.
  3. Compute period T = 2π/ω and phase shift −φ/ω.
  4. Plot y(x)=A·sin(ωx+φ)+c in 2D Graph.
  5. 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