Find the range of $x$ in $(x-a)(x-b)(x-c)>0$ where $a<b<c$.
Graphically, this is obvious; it's the "bump" between $a$ and $b$, and $c$ to $\infty$ (and beyond!).
Numerically, it's a bit tedious but gets the job done; I test all combinations of $x$ that are larger/smaller than $a$/$b$/$c$.
Algebraically, it's about as tedious as numerically; I rigorously solve the inequality and end up with a ton of little inequalities, then I throw out all the invalid and redundant inequalities and end up with $a<x<b$ and $c<x$.
Is there a short and sweet algebraic solution to this inequality?
$$ \begin{array}{c|lcr} x & (-\infty,a) & (a,b) & (b,c) & (c,\infty) \\ \hline \operatorname{sgn}(x-a) & -1 & +1 & +1 & +1 \\ \operatorname{sgn}(x-b) & -1 & -1 & +1 & +1 \\ \operatorname{sgn}(x-c) & -1 & -1 & -1 & +1 \\ \hline \operatorname{sgn}(x-a)(x-b)(x-c) & -1 & +1& -1 & +1 \\ \end{array} $$