Quick Fix Summary
What's the issue?
Because the highest power is squared, the graph forms a parabola that can cross the x-axis 0, 1, or 2 times. The discriminant Δ = b² – 4ac decides how many intersections you get. When Δ > 0, you get two distinct real roots; Δ = 0 gives one repeated root; and Δ < 0 spits out a complex-conjugate pair. By 2026, TI-84 OS 5.8.0 handles all three cases, but users should double-check that their equation is actually in standard form before the solver will play nice.
How do I solve it step by step?
Target environment: TI-84 Plus CE Python Edition, OS 5.8.0.
- Make sure it's in standard form. Hit Y=. Clear any old entries. Type Y₁ = ax² + bx + c so the right side equals zero. If your original equation has terms on both sides, just subtract the right side from both sides to move everything to the left.
- Draw the parabola. Press GRAPH. Tweak WINDOW if the parabola looks too wide or flat; a solid starting range is Xmin = –10, Xmax = 10, Ymin = –10, Ymax = 10.
- Find the roots. Press 2nd → TRACE → 2: Zero. Move the cursor near the first intercept (left side of the parabola) and press ENTER (Left Bound). Slide to the right of the same intercept and press ENTER again (Right Bound). Finally, nudge the cursor as close to the intercept as you can and press ENTER (Guess). The calculator spits out the x-value; jot it down. Repeat for the second intercept.
- Watch for complex roots. If the parabola never crosses the x-axis, press MODE and pick a+bi. Re-graph Y₁. Now the calculator will show any complex roots floating above the x-axis.
- Save your answers. Press STO→ → A → ENTER to stash the first root, then STO→ → B → ENTER for the second. Later, you can pull them up with ALPHA → A or ALPHA → B.
What if the graphing method fails?
- Method 2 — Quadratic Solver App. Press APPS → 0: PlySmlt2 → 1: Polynomial Root Finder → 2: Quadratic. Type in a, b, c when asked; press GRAPH to see both roots. If the discriminant dips negative, hit 2nd → F5 to switch to complex mode.
- Method 3 — Completing the square. From the home screen, press PRGM → QUADRAT → 2:Complete Square. Feed it a, b, c; the program rewrites the equation as (x – h)² = k. Press ALPHA → ENTER to solve for x.
- Method 4 — Manual formula. On the home screen, type (–B ± √(B² – 4AC))/(2A). Press STO→ → X₁ → ENTER for the positive branch, then repeat with (–B – √(B² – 4AC))/(2A) and store as X₂. Use plenty of parentheses to dodge order-of-operations mistakes.
How can I avoid problems in the first place?
| Action | Frequency | How to |
|---|---|---|
| Zero-right-hand-side | Every equation | Always shift every term to the left so the equation reads ax² + bx + c = 0. Skip this, and you might hit “Invalid input” errors in the solver. |
| Non-zero a | Every equation | Double-check that a ≠ 0; set a = 0 and you’ve turned the equation linear, which makes the quadratic solver choke with a warning. |
| Delta quick-check | Before graphing | Mentally crunch b² – 4ac or scribble it on scrap paper. If it’s negative, flip MODE to a+bi right away so you don’t misread the graph. |
| OS Up-to-date | Twice yearly | Press 2nd → + → 1:Check for OS Updates. Grab version 5.8.0 or later to dodge solver bugs that plagued 5.7.x releases. |