Smallest possible value of $ax^2+bx+c$

478 Views Asked by At

The problem goes like this:

Let $a, b$ and $c$ be given numbers, where $a>0$, and let $x$ be some number. What is the smallest possible value of $ax^2+bx+c$ ?

The terms 'given number' and 'some number' really bother me. Now I'm just really confused about this. Any help would be appreciated, thanks!

3

There are 3 best solutions below

0
On

Let $f(x) = ax^2+bx+c = a\left(x+\dfrac{b}{2a}\right)^2 - \dfrac{b^2-4ac}{4a}$. Can you conclude from this?

0
On

Since $a>0$, the parabola opens up. That means the vertex of the parabola is the minimum of the function. Can you find the vertex of $f(x)$ in terms of $a, b,$ and $c$?

2
On

Assuming the title question should refer to $ax^2+bx+c$:

That expression describes a concave-upward parabola (an upright U-shape, in other words). Its lowest point is therefore at the vertex of the parabola; you may recall that its $x$-coordinate is $-\frac{b}{2a}$ (which accounts for that fraction's appearance in the quadratic formula), and therefore the $y$-coordinate is what comes out when you plug $x = -\frac{b}{2a}$ into $ax^2+bx+c$.

For instance, if we consider the specific case $x^2-4x+9$, the vertex has an $x$-coordinate of $-\frac{-4}{2\cdot1} = 2$, and its $y$-coordinate is therefore $(2)^2-4(2)+9 = 5$. Now you just need to generalize for $a, b, c$.