Qubic functionΒΆ

Problem

A polynomial function of degree three defined over \(\mathbb{R}\) is given. Its graph \(G_f\) has a maximum at \(x=1\) and a minimum at \(x=4\).

  1. Establish that the graph of the derivative \(f'\) of \(f\) is a parabola which intersects the \(x\)-axis at the points (1|0) and (4|0) and opens to the top.

  2. Establish that 2.5 is the \(x\)-coordinate of the point of inflection of \(G_f\).

Solution of part a

In general, the derivative of a cubic function is a parabola, and extrema of the cubic function correspond to roots of the parabola. Since there is a maximum at \(x=1\), the second derivative of the function has to be negative at that point, while at the minimum at \(x=4\) the second derivative has to be positive. Thus, the graph of \(f'\) is a parabola opening to the top.

To illustrate a concrete example for the function \(f\), we choose the derivative

\[f'(x) = (x-1)(x-4)\]

which evidently has the correct roots. We now plot the function \(f\), as well as its first and second derivate, with Sage and can thereby check the properties of the function \(f\) just discussed.

Solution of part b

The point of inflection \(x_0\) of a graph of the function \(f\) has to fulfill the condition:

\[f''(x_0)=0\,.\]

The derivative of \(f\) hence has to have an extremum. For a parabola, this can only be the case at the vertex. For reasons of symmetry, this point is always in the center between two points with the same function value. The point of inflection of \(f\) hence has to be centered between the two roots:

\[x_0 = \frac{1 + 4}{2} = 2.5\,.\]

The point of inflection of \(f\) can be already determined from the plot of part a). However, we can also calculate it with the help of Sage: