Quadratic Formula Solver — Notebook Template

Solve ax²+bx+c=0 with the quadratic formula, compute discriminant, and verify roots by substitution.

math quadratic-formula algebra
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. Enter a, b, c for ax²+bx+c=0.
  3. Compute discriminant and roots.
  4. Verify by plugging roots back into ax²+bx+c.
  5. Snapshot the final equation and solutions.
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 Formula

Equation:

**a·x^2 + b·x + c = 0**

Discriminant:
**Δ = b^2 − 4ac**

Roots:
**x = (−b ± √Δ)/(2a)**
MATH
a = 1
MATH
b = -5
MATH
c = 6
MATH
Delta = b^2 - 4*a*c
MATH
x1 = (-b + sqrt(Delta)) / (2*a)