0
$\begingroup$

I am attempting to graph $ y = x^4 - 3x^3 + 3x^2 - x$

The derivative is $y=4x^3 -9x^2 + 6x-1$.

The second derivative is $y=12x^2-18x+6$.

The intercepts will be $x= 0$ and $y= 0$.

Past this, I can't find any way to get critical numbers. I do not know how to factor something like that all but I know it has roots.

4 Answers 4

4

For the first derivative, you need to factor the expression $ 4x^3-9x^2+6x-1$. Towards this end, first try guessing a root of $ 4x^3-9x^2+6x-1$. The so called "rational roots theorem' will be useful here. Eventually, you might try $x=1$; and this is indeed a root of $4x^3-9x^2+6x-1$ as substitution will verify.

Now $x=1$ is a root of $ 4x^3-9x^2+6x-1$ if and only if $x-1$ is a factor of $ 4x^3-9x^2+6x-1$. This tells you that $4x^3-9x^2+6x-1$ factors as $ 4x^3-9x^2+6x-1 = (x-1)(ax^2+bx+c) $ for some constants $a$, $b$, and $c$. You can figure those out by doing the long division $ {4x^3-9x^2+6x-1\over x-1}= 4x^2-5x+1. $ So $ 4x^3-9x^2+6x-1=(x-1)(4x^2-5x+1). $

And now you need to factor $4x^2-5x+1$: $4x^2-5x+1=(4x-1)(x-1)$

So f'(x)=(x-1)(x-1)(4x-1).

For the second derivative, you could use the quadratic formula to find its zeroes, or factor it: $ 12x^2-18x+6=6(2x^2-3x+1)=6(2x-1)(x-1) $

  • 0
    That is really useful, I am surprised I didn't know that already. Thank you.2012-04-09
2

One way to proceed would be to note that $x^4 - 3x^3 + 3x^2 - x = x(x-1)^3$

Alternatively, note that $1$ is a root of the derivative. You can divide your derivative now to get the other 2 critical numbers.

  • 0
    I have the difference of squares memorized but I forgot about the difference of cubes? Or whatever it is.2012-04-09
1

The second derivative factors nicely. Note that you can take a $6$ out of each term. So, you can write it as: $6 (2x^{2} - 3x +1)$ $6 (x-1)(2x-1)$

From that, I would note the inflection points by setting $x - 1 = 0$ and $2x - 1 =0$. From there, you can use the second derivative test and plug in a few test points and check for concavity (i.e. is the graph "up like a cup" or "down like a frown"?). From there, it should be easy - let me know if you have any issues.

1
  1. Plot several points (near a root if you have a guess where one is if not go x=-1, 0, 1)
  2. Find the roots of first derivative to find the local mins and maxes (remember when its positive the function is increasing and when its negative its decreasing)
  3. Find the roots of the second derivative to find the points of inflection (remember when its positive the function is concave up like a bowl, and when its negative its concave down)

Note: You can use completing the square or the quadratic equation for finding the roots of the second derivative. For the first derivative do David suggested.

This should be enough to graph the function.