An electron can be thought of as a ball that's spinning, except it's not a ball and it's not spinning.
This is a collection of programs that gives the roots (i.e., zeros) of polynomials of varying degrees. Here, these are not solved numerically—that's boring. Up to degree four (quartic), this can be done exactly. Now you can calculate solutions whilst waiting in line for coffee.
If real, use the plots to interactively verify the zeros of each calculation.
Linear
A linear equation in one variable $x$ can be written as $a x + b = 0$, with $a \ne 0$. The solution is $x = -b / a$.
Quadratic
A quadratic equation in one variable $x$ can be written as $a x^2 + b x + c = 0$, with $a \ne 0$. The solutions are given by $x = \frac{-b \pm \sqrt{b^2 - 4 a c}}{2 a}$. Completing the square is one of several ways for deriving this formula. To learn why the quadratic formula works and why quadratics are easier to solve than cubics, please see The Symmetry That Makes Solving Math Equations Easy.
Cubic
A cubic equation in one variable $x$ can be written as $a x^3 + b x^2 + c x + d = 0$, with $a \ne 0$. The solutions for the general cubic have the form $x_k = -\frac{1}{3 a} \left( b + \xi^k C + \frac{\Delta_0}{\xi^k C} \right)$, $k \in \{0, 1, 2\}$, with $k = 0$ always returning a real solution. A complete description of this method is given here. Note the term $\frac{\Delta_0}{\xi^k C}$ when applying PEMDAS. For those interested in a bit of history surrounding the cubic formula, please see The Sordid Past of the Cubic Formula.
Quartic
A quartic equation in one variable $x$ can be written as $a x^4 + b x^3 + c x^2 + d x + e = 0$, with $a \ne 0$. The solutions for the general quartic are described in the Notes.