#6

Following the approach used in BDH1-7.mws, the problem involves the following information

> f := y^6 - 2*y^4 + alpha;

[Maple Math]

>

The possible bifurcation values can occur only when [Maple Math] and [Maple Math] . Here is how we can use Maple to find these values

> EQ1 := f=0;

[Maple Math]

> EQ2 := diff( f, y ) = 0;

[Maple Math]

> solve( { EQ1, EQ2 }, { y, alpha } );

[Maple Math]

The allvalues command can be used to force Maple to list the final two solutions in an explicit form:

> allvalues( %[4] );

[Maple Math]

Thus, there are two possible bifurcation values: [Maple Math] = 0 and [Maple Math] = 32/27. These values can be confirmed in the following plot of the equilibria as a function of the parameter, [Maple Math] .

> implicitplot( f=0, alpha=-2..2, y=-2..2, style=POINT );

Observe that the bifurcation value is NOT [Maple Math] .

>