How to find the max and min of a function on a fixed interval.

wiz0r
Messages
56
Reaction score
0
Hello, I got the following problem;

Find the min and max of the following function, on the following interval;

f(x) = x^3 - 6x^2 + 9x + 15, [0, 5]

Ok, to my knowledge, what I need to do is

I: Find the first derivative and equal it to zero, so;


f'(x) = 3x^2 - 12x + 9
0 = 3x^2 - 12x + 9

x = {1, 3}

II: Now, I find the second derivative to determine if it's a Minimum or a Maximum, so;

f''(x) = 6x - 12

f''(1) = 6(1) - 12 = -6

Since -6 < 0 it's a minimum

f''(3) = 6(3) - 12 = 6

Since 6 > 0 it's a maximun, right?

Now, what do I do with the interval?? Am I doing it wrong?

Please, help me fast, I got a test in 3 hours, and I need to know this before my test!

Thanks,
~Edwin
 
Physics news on Phys.org
What my friend told me to do is to;

Find the first derivative and it's zeros. Then to evaluate those zeros AND the end points of the interval on the initial equation, and then the biggest value of those will be the maximun and the lowest the minimun (the points), is that right?

Help me, please.
 
Yes. Now find f(x) for each of those values (including the endpoints). The smallest of those values is the min, the largest is the max.
 
Ok, so;

f(0) = 15
f(1) = 1 - 6 + 9 + 15 = 19
f(3) = 27 - 54 + 27 + 15 = 15
f(5) = 35

Therefore,

Minimum = (0,15) and (3, 15);
Maximum = (5,35)

Am I correct?
 
Looks right to me.
 
Woot, thanks a lot!
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top