Chaos without period doubling

1.3k Views Asked by At

I have been studying the Duffing oscillator rather intensively lately, mainly based on the theory in of the book by Guckenheimer and Holmes. From all that I have gathered, it seems that most dynamical systems show a period doubling cascade before going into chaos. For example, the logistic map and the driven damped pendulum show this behavior. For instance, this a bifurcation diagram for the pendulum: enter image description here

However, when I calculate numerical solutions of the Duffing oscillator with Mathematica, I am unable to find such a period doubling and the system goes into chaos right away, as this bifurcation diagram shows: enter image description here

Now I have tweaked and played with parameters and initial values, calculated some parts in more detail, but whatever I try, I still cannot find any period doubling. I find this very puzzling, since apparently period doubling does take place for the Duffing oscillator, according to Guckenheimer and Holmes. Also, I thought that it was a universal phenomenon for chaotic systems. I could not come up with any reason why I fail to find it other than shortcomings of the numerical method of Mathematica I used (I simply used NDSolve and ParametricNDSolve). Could there be any other reason why a period doubling is absent?

1

There are 1 best solutions below

0
On

The plot of logistic function is modified. Some points are removed from diagram ( preperiodic points)

Algorithm for each parameter value along horizontal axis :

  1. start with x0
  2. make n iterations (now you have xn) and do not draw points
  3. make k more iterations from x(n) to x(n+k) and drow these k points

See also here

HTH