Maple find the stationary points

8.9k Views Asked by At

For the long equation:

$$f = \frac{384x^8-2,304x^7-2,624x^6+41,568x^5-63,693x^4-118,309x^3+418,032x^2-405,405x}{3,072x^2+9,216}$$

I have to find the stationary points in maple between the interval $[-10, 10]$. There should be $3$ stationary points in the answer.

1

There are 1 best solutions below

2
On

To find the stationary points, you need to put $f'(x)=0$ and solve for $x$. Here are the points

$$-3.196276803, -1.460092255, .6491868632 \,.$$

Here are the steps in Maple

1) g := normal(diff( f, x ));

2) g1 := fsolve(numer(g),x=-10..10);

As I explained in my comment, the normal command to simplify the expression and numer command to pick up the numerator and equate it to zero, and then fsolve solves it for $x$. Otherwise, you can use the one shot command

fsolve(diff(f,x), x=-10..10 );