Using completing the square it's trivial to find the minimum of a polynomial such as $x^2+9x+5$. We rearrange to get $(x+\frac{9}{2})^2-\frac{61}{4}$ and can see that when $x=-\frac{9}{2}$ we have a minimum.
Using calculus it's also trivial. The derivative of $x^2+9x+5$ with respect to $x$ is $2x+9$, and the value of $x$ that makes $2x+9=0$ is $-\frac{9}{2}$.
My question is: are there any unusual methods to find the minimum of a quadratic (or, if possible, higher order polynomial)? Something not rooted in algebraic manipulation like completing the square or calculus?
Another way to look at it: If the curve $y=ax^2+bx+c$ has two $x$-intercepts then the max/min happens at their average. But we can slide the parabola up or down without changing the $x$-coordinate of the vertex. So subtract off the constant term:
$$y=ax^2+bx = x(ax+b).$$
The two $x$-intercepts are $0$ and $-b/a$. The vertex then, has $x$-coordinate $(0 + (-b/a))/2 = -b/2a..$