Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News Sign UpSign In
| Download
Project: Math 241
Views: 225
License: OTHER
Image: ubuntu2004
This material was developed by Aaron Tresham at the University of Hawaii at Hilo and is Creative Commons License
licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.

Prerequisites:

  • Intro to Sage

  • Graphing and Solving Equations

  • Differentiation

  • Function Analysis, Part 1

Function Analysis, Part 2

We continue to try to understand the key features of a function using calculus, rather than depending on a graph alone. In part 1, we only had functions with domain R\mathbb{R}. In this lab, we'll consider functions where the function (or its derivative) has domain restrictions.

Example 1

Analyze and graph f(x)=x3x214x+24x4+9x3+18x232x96\displaystyle f(x)=\frac{x^3 - x^2 - 14x + 24}{x^4 + 9x^3 + 18x^2 - 32x - 96}.

Step 1 Find the domain. Discuss vertical asymptotes and holes.

For a rational function, the domain is all real numbers such that the denominator is not 00. So let's find out when the denominator is 00.

solve(x^4 + 9*x^3 + 18*x^2 - 32*x - 96==0,x)
[x == -3, x == 2, x == -4]

The denominator is 00 when x=4x=-4, x=3x=-3, or x=2x=2. So the domain is all real numbers except 4-4, 3-3, and 22, in other words, R{4,3,2}\mathbb{R}\setminus\{-4,-3,2\}.

We need to determine what happens near these holes in the domain, so we will take limits.

f(x)=(x^3 - x^2 - 14*x + 24)/(x^4 + 9*x^3 + 18*x^2 - 32*x - 96) limit(f(x),x=-4) limit(f(x),x=-3) limit(f(x),x=2)
Infinity Infinity -1/30

Based on these limits, we know that ff has vertical asymptotes at x=4x=-4 and x=3x=-3, and ff has a hole at the point (2,130)\left(2,-\frac{1}{30}\right).

Step 2 Find the derivative.

df(x)=derivative(f,x);show(df(x))
(4x3+27x2+36x32)(x3x214x+24)(x4+9x3+18x232x96)2+3x22x14x4+9x3+18x232x96\displaystyle -\frac{{\left(4 \, x^{3} + 27 \, x^{2} + 36 \, x - 32\right)} {\left(x^{3} - x^{2} - 14 \, x + 24\right)}}{{\left(x^{4} + 9 \, x^{3} + 18 \, x^{2} - 32 \, x - 96\right)}^{2}} + \frac{3 \, x^{2} - 2 \, x - 14}{x^{4} + 9 \, x^{3} + 18 \, x^{2} - 32 \, x - 96}

Step 3 Find the critical points of ff.

We need to know where the derivative ff' is 00 or undefined. Notice that the derivative has the same denominator as ff, so it has the same gaps in the domain (4-4, 3-3, and 22).

Now let's find where the derivative is 00.

solve(df(x)==0,x)
[x == -sqrt(42) + 3, x == sqrt(42) + 3]
N(-sqrt(42) + 3) N(sqrt(42) + 3)
-3.48074069840786 9.48074069840786

So ff' is 00 at x3.48x\approx-3.48 and x9.48x\approx9.48.

Step 4 See if the sign of ff' actually changes at the critical points of ff, and determine whether ff has a local maximum or local minimum at these points.

First, we'll check x-values near 3.48-3.48.

df(-3.5) df(-3.4)
-4.00000000000000 18.0555555555558

Since ff' changes sign from negative to positive, ff has a local min at x3.48x\approx -3.48.


Now check x-values near 9.489.48.

df(9) df(10)
1/4056 -1/4732

Since ff' changes sign from positive to negative, ff has a local max at x9.48x\approx9.48.

Step 5 Find ff''.

d2f(x)=derivative(f,x,2);show(d2f(x))
2(4x3+27x2+36x32)2(x3x214x+24)(x4+9x3+18x232x96)32(4x3+27x2+36x32)(3x22x14)(x4+9x3+18x232x96)26(x3x214x+24)(2x2+9x+6)(x4+9x3+18x232x96)2+2(3x1)x4+9x3+18x232x96\displaystyle \frac{2 \, {\left(4 \, x^{3} + 27 \, x^{2} + 36 \, x - 32\right)}^{2} {\left(x^{3} - x^{2} - 14 \, x + 24\right)}}{{\left(x^{4} + 9 \, x^{3} + 18 \, x^{2} - 32 \, x - 96\right)}^{3}} - \frac{2 \, {\left(4 \, x^{3} + 27 \, x^{2} + 36 \, x - 32\right)} {\left(3 \, x^{2} - 2 \, x - 14\right)}}{{\left(x^{4} + 9 \, x^{3} + 18 \, x^{2} - 32 \, x - 96\right)}^{2}} - \frac{6 \, {\left(x^{3} - x^{2} - 14 \, x + 24\right)} {\left(2 \, x^{2} + 9 \, x + 6\right)}}{{\left(x^{4} + 9 \, x^{3} + 18 \, x^{2} - 32 \, x - 96\right)}^{2}} + \frac{2 \, {\left(3 \, x - 1\right)}}{x^{4} + 9 \, x^{3} + 18 \, x^{2} - 32 \, x - 96}

Step 6 Find the critical points of ff'.

Once again, ff'' is undefined at the same x-values as ff' and ff (4-4, 3-3, and 22).

Now we'll find where ff'' is 00.

solve(d2f(x)==0,x)
[x == 1/294*294^(2/3)*(21*I*sqrt(3) - 21) - 1/2*294^(1/3)*(I*sqrt(3) + 1) + 3, x == 1/294*294^(2/3)*(-21*I*sqrt(3) - 21) - 1/2*294^(1/3)*(-I*sqrt(3) + 1) + 3, x == 1/7*294^(2/3) + 294^(1/3) + 3]
N(1/294*294^(2/3)*(21*I*sqrt(3) - 21) - 1/2*294^(1/3)*(I*sqrt(3) + 1) + 3) N(1/294*294^(2/3)*(-21*I*sqrt(3) - 21) - 1/2*294^(1/3)*(-I*sqrt(3) + 1) + 3) N(1/7*294^(2/3) + 294^(1/3) + 3)
-3.48287967940368 - 0.288421242066844*I -3.48287967940368 + 0.288421242066844*I 15.9657593588074

We have one real solution, so ff'' is 00 at x15.97x\approx15.97.

Step 7 See if the sign of ff'' actually changes at the critical points of ff', and determine whether ff has an inflection point at these points.

Check the sign of ff'' near x=15.97x=15.97.

d2f(15) d2f(16)
-55/3333474 13/27436000

Since ff'' changes sign from negative to postive, ff changes from concave down to concave up at x15.97x\approx15.97, so ff has an inflection point here.

Step 8 Find the x- and y-intercepts.

solve(f(x)==0,x) #find x-intercepts
[x == 3]
f(0) #find y-intercept
-1/4

Step 9 Determine the end behavior.

limit(f(x),x=-Infinity);limit(f(x),x=+Infinity)
0 0

So the x-axis is a horizontal asymptote for this function.

Step 10 Make an informed graph. Mark any xx- and yy-intercepts, relative maxima and minima, and inflection points.

First, we'll calculate the function values at the critical points.

f(-3.48074069840786);f(9.48074069840786);f(15.9657593588074)
25.9614813968190 0.0385186031842795 0.0342406411926452

So, we'll need a graph that covers these three points. We also need to remember the hole, vertical asymptotes, and intercepts.

Here is a first attempt:

f(x)=(x^3 - x^2 - 14*x + 24)/(x^4 + 9*x^3 + 18*x^2 - 32*x - 96) plot(f,xmin=-5,xmax=20,ymin=-10,ymax=30)

So this picture is not very clear. We need to make xmin smaller so we can see more of the branch on the left. It would also be nice to extend the range on the y-axis. The vertical asymptotes at x=4x=-4 and x=3x=-3 are marked with solid lines, but it would be nice to make them dashed instead. We also should mark the hole at x=2x=2.

We can see the local minimum at x3.48x\approx-3.48, but the local maximum at x9.48x\approx9.48 is not clear from the graph. We also can't see the inflection point at x15.97x\approx15.97. The x-intercept at x=3x=3 is also not obvious.

If we want to see all these features, we'll need a really big picture (which won't fit on our screen).

So we will have to produce a second graph that reveals the local max, inflection point, and x-intercept.

Here's another graph of the overall picture, and then we'll do a second plot that zooms in on the positive x-axis.

plot(f,xmin=-15,xmax=20,ymin=-20,ymax=40,detect_poles=True,figsize=5)+point((2,-1/30),size=15,faceted=True,color='white',markeredgecolor='blue')+line([(-4,-25),(-4,45)],linestyle='dashed')+line([(-3,-25),(-3,45)],linestyle='dashed')+point([(-3.48,25.96),(9.48,0.0385),(15.97,0.0342),(3,0)],color='black',size=20)

This is a good picture of the overall shape. Note: I do not expect you to add dashed lines for the asymptotes or open circles for the holes.


Here is a close up so we can see the local max and inflection point:

plot(f,xmin=0,xmax=40,ymin=-.05,ymax=.05)+point((2,-1/30),size=15,faceted=True,color='white',markeredgecolor='blue')+point([(9.48,0.0385),(15.97,0.0342),(3,0)],color='black',size=20)

This is another good example of why we bother analyzing the function with calculus. A single graph may not show all the important features of a function.

Step 11 Discuss absolute max/min, increasing/decreasing, concave up/down.

There is no absolute max or min.

The function is increasing on [3.4807,3)[-3.4807,-3), (3,2)(-3,2), and (2,9.4807](2,9.4807].

The function is decreasing on (,4)(-\infty,-4), (4,3.4807](-4,-3.4807], and [9.4807,)[9.4807,\infty).

The function is concave up on (4,3)(-4,-3) and [15.9658,)[15.9658,\infty).

The function is concave down on (,4)(-\infty,-4), (3,2)(-3,2), and (2,15.9658](2,15.9658].


Comment: Notice where all the endpoints come from: critical points and domain restrictions (don't forget the hole at x=2x=2).

Example 2

Analyze and graph f(x)=ln(x)x\displaystyle f(x)=\frac{\ln(x)}{x}.

Step 1 Find the domain. Discuss vertical asymptotes and holes.

The domain of ff is (0,)(0,\infty).

There is a vertical asymptote or hole at x=0x=0. We'll use a limit to determine which it is.

f(x)=ln(x)/x limit(f(x),x=0)
-Infinity

Since the limit is infinite, there is a vertical asymptote at x=0x=0.

Step 2 Find the derivative.

df(x)=derivative(f,x);show(df(x))
log(x)x2+1x2\displaystyle -\frac{\log\left(x\right)}{x^{2}} + \frac{1}{x^{2}}

Step 3 Find the critical points of ff.

The derivative ff' has the same domain as the original ff, so we just need to find where the derivative is 0.

solve(df(x)==0,x)
[e == x]

Our one critical point is x=ex=e.

Step 4 See if the sign of ff' actually changes at the critical points of ff, and determine whether ff has a local maximum or local minimum at these points.

df(2.5);df(3.0)
0.0133934829001352 -0.0109569209631233

Since ff' changes sign from positive to negative, ff has a local max at x=ex=e.

Step 5 Find ff''.

d2f(x)=derivative(f,x,2);show(d2f(x))
2log(x)x33x3\displaystyle \frac{2 \, \log\left(x\right)}{x^{3}} - \frac{3}{x^{3}}

Step 6 Find the critical points of ff'.

ff'' has the same domain as ff' and ff, so we need to find where ff'' is 0.

solve(d2f(x)==0,x)
[x == e^(3/2)]
N(e^(3/2))
4.48168907033806

We have f(x)=0f''(x)=0 at x4.48x\approx 4.48.

Step 7 See if the sign of ff'' actually changes at the critical points of ff', and determine whether ff has an inflection point at these points.

d2f(4.4);d2f(4.5)
-0.000431899396031749 0.0000894901898770770

Since ff'' changes sign, there is an inflection point at x4.48x\approx4.48.

Step 8 Find the x- and y-intercepts.

solve(f(x)==0,x) #find x-intercept
[x == 1]

There is no y-intercept, since 0 is not in the domain.

Step 9 Determine the end behavior.

limit(f(x),x=0,dir='right');limit(f(x),x=infinity)
-Infinity 0

We have a vertical asymptote at x=0x=0 (y-axis) and a horizontal asymptote at y=0y=0 (x-axis).

Step 10 Make an informed graph. Mark any xx- and yy-intercepts, relative maxima and minima, and inflection points.

Our graph needs to include x=1, e, e3/2x=1,\ e,\ e^{3/2} and their corresponding y-values.

N(f(e));N(f(e^(3/2)))
0.367879441171442 0.334695240222645

Here is a first attempt. Notice that the inflection point and the horizontal asymptote are not clear.

plot(f,xmin=0,xmax=5,ymin=-.5,ymax=.5)

Here is a second attempt, with the important points marked.

plot(f,xmin=0,xmax=25,ymin=-.5,ymax=.5)+point([(1,0),(e,f(e)),(e^1.5,f(e^1.5))],color='black',size=20)

Step 11 Discuss absolute max/min, increasing/decreasing, concave up/down.

There is no absolute min. The absolute max is 1e0.3679\frac{1}{e}\approx0.3679 at x=e2.7183x=e\approx 2.7183.

The function is increasing on (0,e](0,e] and decreasing on [e,)[e,\infty).

The function is concave up on [e3/2,)[e^{3/2},\infty) and concave down on (0,e3/2](0,e^{3/2}].

Example 3

Analyze and graph f(x)=x26x+93x2+15\displaystyle f(x)=\frac{\sqrt[3]{x^2-6x+9}}{\sqrt[5]{x^2+1}}

Step 1 Find the domain. Discuss vertical asymptotes and holes.

The only potential domain issue is dividing by 0, but since x2+1x^2+1 is never 0, the domain is R\mathbb{R}.

Step 2 Find the derivative.

f(x)=(x^2-6*x+9)^(1/3)/(x^2+1)^(1/5) df(x)=derivative(f,x) show(df(x))
2(x3)3(x26x+9)23(x2+1)152(x26x+9)13x5(x2+1)65\displaystyle \frac{2 \, {\left(x - 3\right)}}{3 \, {\left(x^{2} - 6 \, x + 9\right)}^{\frac{2}{3}} {\left(x^{2} + 1\right)}^{\frac{1}{5}}} - \frac{2 \, {\left(x^{2} - 6 \, x + 9\right)}^{\frac{1}{3}} x}{5 \, {\left(x^{2} + 1\right)}^{\frac{6}{5}}}

Step 3 Find the critical points of ff.

First, we'll think about where the derivative is undefined.

Looking back at the formula for f(x)f'(x), we see we get division by 0 when x26x+9=0x^2-6x+9=0.

solve(x^2-6*x+9==0,x)
[x == 3]

So the derivative is undefined at x=3x=3, so this is a critical point.

Now we'll find where the derivative is 0.

solve(df(x)==0,x)
[x == -1/4*sqrt(41) - 9/4, x == 1/4*sqrt(41) - 9/4, x == 3]

Notice that Sage gives x=3x=3 as a solution, even though we know f(3)f'(3) does not exist. This is actually a mistake in Sage's solve command.

But the other two numbers are places where the derivative is 0, so they are critical points. Let's convert them to decimals.

N(-1/4*sqrt(41) - 9/4) N(1/4*sqrt(41) - 9/4)
-3.85078105935821 -0.649218940641788

We have three critical points: x=3x=3, x3.85x\approx -3.85 and x0.65x\approx -0.65.

Step 4 See if the sign of ff' actually changes at the critical points, and determine whether ff has a local maximum or local mininum at these points.

df(2.9) df(3.1)
-0.934289205592418 0.879868999227662

Since ff' changes sign from negative to positive, ff has a local min at x=3x=3.

df(-3.9) df(-3.8)
-0.000792013772198064 0.000843740680385702

Since ff' changes sign from negative to positive, ff has a local min at x3.85x\approx -3.85.

df(-.7) df(-.6)
0.0170948233809796 -0.0192489860586108

Since ff' changes sign from postive to negative, ff has a local max at x0.65x\approx -0.65.

Step 5 Find ff''.

d2f(x)=derivative(f,x,2) show(d2f(x))
8(x3)29(x26x+9)53(x2+1)158(x3)x15(x26x+9)23(x2+1)65+24(x26x+9)13x225(x2+1)1152(x26x+9)135(x2+1)65+23(x26x+9)23(x2+1)15\displaystyle -\frac{8 \, {\left(x - 3\right)}^{2}}{9 \, {\left(x^{2} - 6 \, x + 9\right)}^{\frac{5}{3}} {\left(x^{2} + 1\right)}^{\frac{1}{5}}} - \frac{8 \, {\left(x - 3\right)} x}{15 \, {\left(x^{2} - 6 \, x + 9\right)}^{\frac{2}{3}} {\left(x^{2} + 1\right)}^{\frac{6}{5}}} + \frac{24 \, {\left(x^{2} - 6 \, x + 9\right)}^{\frac{1}{3}} x^{2}}{25 \, {\left(x^{2} + 1\right)}^{\frac{11}{5}}} - \frac{2 \, {\left(x^{2} - 6 \, x + 9\right)}^{\frac{1}{3}}}{5 \, {\left(x^{2} + 1\right)}^{\frac{6}{5}}} + \frac{2}{3 \, {\left(x^{2} - 6 \, x + 9\right)}^{\frac{2}{3}} {\left(x^{2} + 1\right)}^{\frac{1}{5}}}

Step 6 Find the critical points of ff'.

Looking at the formula for ff'', we see the same problem with division by 0 that we saw for ff', so f(3)f''(3) does not exist.

Now we need to find where f(x)=0f''(x)=0.

solve(d2f(x)==0,x)
[x == -1/132*sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) - 1/2*sqrt(-(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) - 137641/1089/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 40905/2/sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) + 4321/66) - 9/4, x == -1/132*sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) + 1/2*sqrt(-(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) - 137641/1089/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 40905/2/sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) + 4321/66) - 9/4, x == 1/132*sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) - 1/2*sqrt(-(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) - 137641/1089/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) - 40905/2/sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) + 4321/66) - 9/4, x == 1/132*sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) + 1/2*sqrt(-(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) - 137641/1089/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) - 40905/2/sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) + 4321/66) - 9/4, x == 3]

Notice that Sage incorrectly gives us x=3x=3 again.

Let's convert the four remaining solutions to decimals.

N(-1/132*sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) - 1/2*sqrt(-(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) - 137641/1089/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 40905/2/sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) + 4321/66) - 9/4) N(-1/132*sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) + 1/2*sqrt(-(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) - 137641/1089/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 40905/2/sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) + 4321/66) - 9/4) N(1/132*sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) - 1/2*sqrt(-(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) - 137641/1089/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) - 40905/2/sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) + 4321/66) - 9/4) N(1/132*sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) + 1/2*sqrt(-(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) - 137641/1089/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) - 40905/2/sqrt((4356*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(2/3) + 142593*(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3) + 550564)/(25/1331*I*sqrt(404272455)*sqrt(11) + 24113314/35937)^(1/3)) + 4321/66) - 9/4)
-10.5718681539223 + 5.47924906323833e-17*I -1.26168389059917 + 1.72972993360071e-16*I 0.680639364999719 - 4.18499764306598e-17*I 2.15291267952170 - 1.85915507561795e-16*I

Notice that all four of these solutions have "I\texttt{I}" in the answer. This is Sage's notation for i=1i=\sqrt{-1}, and it usually indicates a complex number (which we will ignore). However, as we can see from the decimal approximation, the imaginary part of these solutions actually cancels out in the end, and all four solutions are real numbers (Notice the scientific notation in each of the decimals above).

We conclude that ff' has five critical points: x=3x=3, x10.57x\approx -10.57, x1.26x\approx -1.26, x0.68x\approx 0.68, and x2.15x\approx 2.15.

Step 7 See if the sign of ff'' actually changes at the critical points of ff', and determine whether ff has an inflection point at these points.

d2f(2.9) d2f(3.1)
-2.82489609113212 -3.18861678816105

Since ff'' does not change sign at x=3x=3, ff does not have an inflection point here.

d2f(-10.6) d2f(-10.5)
-6.87833320245357e-6 0.0000179922253477384

Since the sign changes, ff has an inflection point at x10.57x\approx -10.57.

d2f(-1.3) d2f(-1.2)
0.00770424683905568 -0.0147822036307242

Since the sign changes, ff has an inflection point at x1.26x\approx -1.26.

d2f(.6) d2f(.7)
-0.0805864668319887 0.0166625176968990

Since the sign changes, ff has an inflection point at x0.68x\approx 0.68.

d2f(2.1) d2f(2.2)
0.0175507707028564 -0.0171586030217367

Since the sign changes, ff has an inflection point at x2.15x\approx 2.15.

Step 8 Find the x- and y-intercepts.

solve(f(x)==0,x) #find x-intercept
[x == 3]
f(0) #find y-intercept
9^(1/3)
N(_)
2.08008382305190

The x-intercept is 33, and the y-intercept is 2.08\approx 2.08.

Step 9 Determine the end behavior.

limit(f(x),x=+infinity) limit(f(x),x=-infinity)
+Infinity +Infinity

This function has no horizontal asymptote.

Step 10 Make an informed graph. Mark any xx- and yy-intercepts, relative maxima and minima, and inflection points.

Our graph needs to include the following x-values with their corresponding y-values:

3, 3.85, 0.65, 10.57, 1.26, 0.68, 2.153,\ -3.85,\ -0.65,\ -10.57,\ -1.26,\ 0.68,\ 2.15

f(3);f(-3.85);f(-.65);f(-10.57);f(-1.26);f(.68);f(2.15)
0 2.07621357743516 2.20928352836990 2.21130811676451 2.17283611390427 1.62422212052417 0.635272502740562

We don't want the inflection point at x10.57x\approx -10.57 to be right on the edge of the graph, so let's try 20x5-20\le x\le 5 and 0y30\le y \le 3.

plot((x^2-6*x+9)^(1/3)/(x^2+1)^(1/5),xmin=-20,xmax=5,ymin=0,ymax=3)+point([(3,0),(-3.85,2.08),(-.65,2.21),(-10.57,2.21),(-1.26,2.17),(.68,1.62),(2.15,.64),(0,2.08)],color='black',size=20)

It's hard to see that the function is concave down on the left side, but if we went far enough in the negative direction to see that, we would obscure the rest of the graph.

Step 11 Discuss absolute max/min, increasing/decreasing, concave up/down.

There is no absolute maximum.

The absolute minimum is 0 at x=3x=3.

The function is increasing on [3.85,0.65][-3.85,-0.65] and [3,)[3,\infty).

The function is decreasing on (,3.85](-\infty,-3.85] and [0.65,3][-0.65,3].

The function is concave up on [10.57,1.26][-10.57,-1.26] and [0.68,2.15][0.68,2.15]

The function is concave down on (,10.57](-\infty,-10.57], [1.26,0.68][-1.26,0.68], [2.15,3][2.15,3], and [3,)[3,\infty).