Quadratic Explorer (Vertex, Roots, Shape) — Notebook Template

Explore a quadratic f(x)=ax²+bx+c: compute vertex, discriminant, and roots, then plot in 2D Graph.

graphing quadratic functions
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, b, c for f(x)=ax²+bx+c.
  3. Compute vertex and roots (if real).
  4. Plot f(x) in 2D Graph and confirm shape matches a and discriminant.
  5. Snapshot your final parameters and notes.
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
# Quadratic Explorer

Quadratic:

**f(x) = a·x^2 + b·x + c**

Useful derived values:
- Vertex x-coordinate: **xv = −b/(2a)**
- Discriminant: **Δ = b^2 − 4ac**
- Roots (if Δ≥0): **(−b ± √Δ)/(2a)**
MATH
a = 1
MATH
b = -3
MATH
c = -4
MATH
xv = -b/(2*a)
MATH
Delta = b^2 - 4*a*c