Bounds Math Example 3

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

Example 3

medium
For \(g(x) = 3x + 1\) on \([0, 4]\), find the minimum and maximum values.

Solution

  1. 1
    \(g\) is linear and increasing (slope = 3 > 0).
  2. 2
    Minimum at left endpoint: \(g(0) = 1\).
  3. 3
    Maximum at right endpoint: \(g(4) = 13\).
  4. 4
    Range on \([0,4]\): \([1, 13]\).

Answer

Min = 1; Max = 13
A linear increasing function achieves its minimum at the left endpoint and maximum at the right endpoint of a closed interval.

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