Bounds Math Example 1

Follow the full solution, then compare it with the other examples linked below.

Example 1

medium
For \(f(x) = -x^2 + 6x - 5\), find the maximum value (upper bound) on \([0, 5]\).

Solution

  1. 1
    Find the vertex: \(x = -b/(2a) = -6/(2 \times -1) = 3\).
  2. 2
    \(f(3) = -9 + 18 - 5 = 4\).
  3. 3
    Check endpoints: \(f(0) = -5\), \(f(5) = -25+30-5=0\).
  4. 4
    Maximum is \(f(3) = 4\).

Answer

Maximum value = 4 at \(x = 3\)
For a downward parabola, the vertex gives the maximum. The upper bound of \(f\) on \([0,5]\) is 4.

About Bounds

The upper and lower limits within which a quantity must lie; often expressed as aโ‰คxโ‰คba \leq x \leq b.

Learn more about Bounds โ†’

More Bounds Examples