Find the smallest distance between the origin and a point on the parabola y = x^2 - 2.
Origin is: (0, 0)
Point in parabola: (x, y)
Distance: sqrt(x^2 + y^2)
sqrt(x^2 + y^2)
sqrt(x^2 + (x^2 - 2)^2)
sqrt(x^2 + x^4 - 4x^2 + 4)
sqrt(x^4 - 3x^2 + 4)
Now, we have to find the smallest positive value of x^4 - 3x^2 + 4.
Not quite sure how to do that.
=^._.^=