I want to find the minimum of the function $\sin^6 x + \cos^6 x$. I tried
Minimize[{Sin[x]^6 + Cos[x]^6, 0 <= x <= 2 Pi}, x]
I got
{Cos[2 ArcTan[1 - Sqrt[2]]]^6 + Sin[2 ArcTan[1 - Sqrt[2]]]^6, {x -> -2 ArcTan[1 - Sqrt[2]]}} NMinimize[{Sin[x]^6 + Cos[x]^6, 0 <= x <= 2 Pi}, x]
And I tried
NMinimize[{Sin[x]^6 + Cos[x]^6, 0 <= x <= 2 Pi}, x]
I got
{0.25, {x -> 3.92699}}
How can I use the command minnimize?




Minimizegives you. Otherwise, if you want all minima, this seems a duplicate of How to find all the local minima/maxima in a range or How to obtain all minima? – Michael E2 Dec 18 '14 at 02:53