I want to know if there's a quicker method to find the minimum coordinates of a quadratic equation other than the one described below.
Some background:
I was reviewing "Completing Squares and Inequalities" when I came to this inequality: $ y \leq x^2 - 2x +2$. This ends up being $(x-1)^2 + 1$
I now want to find the minimum coordinates of this expression. The vertex can be found with $\frac{-b}{2a}$ and my current rationale is the following:
Premise I: $a > 0$, then this equation has a minimum
Premise II: Vertex can be found with $[\frac{-b}{2a}, f(\frac{-b}{2a})]$
Find the vertex: $\frac{-b}{2a} = \frac{-(-2)}{2(1)} = \frac{2}{2} = 1$
Then replace that in the original equation: $(1)^2 - 2(1) +2 = 1 - 2 + 2 = 1$
Alternatively I can make use of the "Vertex form" $a(x - h)^2 + k$ and get that from the "completed square" $(x - 1)^2 + 1$ so we know that the Vertex is 1 and repeat the two steps above.
Other than this method, do we have a shortcut for finding the minimum coordinates? The book tells it is $(1,1)$, but doesn't show the method.
Derivative is also one of tool,
$\frac{dy}{dx}=2x-2 =0$
At $x=1$:
$\frac{d^2y}{dx^2} = 2 >0$
We get min. At $x=1$