1
$\begingroup$

I am analyzing this function: \begin{align} f(x) = \sqrt[3]{ x } - \sqrt[3]{x+1} \end{align}

I proved it has a horizontal asymptote at y=0. However, on the graph, it has a minimum for x=-0.5 but I can't find that. First derivative has no zeroes, so the function has no stacionary points. Second derivative also has no zeroes. How do I find that minimum?

  • 0
    i think the minimum is at the point $x=0$2017-01-06
  • 0
    It's not. For x=0, y=-1 and for x=-0.5, y=-1.587.2017-01-06
  • 0
    The first derivative does have zero at x=-1/22017-01-06
  • 1
    If others did what I did and typed the expression into wolfram alpha, it will assume you want the principle root and plot real and complex parts, which is what makes it look like the minimum is at zero.2017-01-06

2 Answers 2

2

You must've taken the first derivative wrong:

$$f'(x)=\frac13(x^{-2/3}-(x+1)^{-2/3})$$

Setting $f'(x)=0$,

$$0=x^{-2/3}-(x+1)^{-2/3}$$

$$x^{-2/3}=(x+1)^{-2/3}$$

$$\pm x=x+1$$

$$x=-1/2$$

  • 2
    Ahh, I forgot the + and - at the third step of equation.2017-01-06
  • 1
    @Nebeski Yes, that $\ ^2$ sure gets to you :D2017-01-06
0

Don't forget that critical points also occur where the derivative is undefined, as long as the point in question is in the domain of the original function.

Since $f(x) = x^{1/3} - (x+1)^{1/3}$, then $f'(x) = \dfrac13 x^{-2/3} - \dfrac13 (x+1)^{-2/3}$.

Note that $f'(x)$ is undefined at $x=0$ and $x=-1$, and both of these are in the domain of $f(x)$, so there may be extrema at those locations.

  • 0
    Why is it undefined there? Cube root of zero is zero.2017-01-06
  • 0
    @Nebeski, note the negative exponents. For example, $\dfrac13 x^{-2/3} = \dfrac1{3x^{2/3}}$. Let $x = 0$ and what happens?2017-01-06
  • 0
    @Nebeski You get division by $0$. Note the shape of the $y=\sqrt[3]{x}$ graph around $x=0$.2017-01-06
  • 0
    @tilper No worries, I mislooked.2017-01-06
  • 1
    (although there are *not* extrema at those values)2017-01-06
  • 0
    Yeah, it should be obvious that $f(x)$ is continuous and never diverges...2017-01-06
  • 0
    I was looking at the function, not the derivative. I didn't know I should look where the first derivative is defined. I would just find x so derivative is equal to zero, and then check those points.2017-01-06
  • 3
    @ElliotG, true, but the other answer already explained how to find the CP, and OP appeared not to know that CP can also occur where $f'$ is undefined so I saw this as a teachable moment.2017-01-06
  • 1
    @Nebeski, always check where the first derivative is zero and where it's undefined (but make sure you always stay in the domain of the original function). For example, $g(x) = x^{2/3}$ has a minimum at $x=0$ and $g'(x)$ is not defined at $x=0$.2017-01-06
  • 0
    always a good reminder :)2017-01-06