Recent content by jamp46

  1. J

    Exploring Chaos Theory: Studying a Parameter to Uncover Its Behavior

    Dear mlopes, I have calculate your recurrent equation Lyapunov exponent and I have build Fiegenbaun tree. I thing, if is not some calculus error: If c<2 is convergent and at c aprox= 2 are the first duplication ( f.e. if c= 1.500 converge to 1.0000, if 1.95 =>1,20894105, but if c= 2.05 =>...
  2. J

    Exploring Chaos Theory: Studying a Parameter to Uncover Its Behavior

    Please try thease little program REM fiegenbaun tree CLS SCREEN 9 on error goto 100 COLOR , 7 WINDOW (-1, 0)-(3, 5) FOR r = 0.005 TO 3 STEP .007 FOR i = 1 TO 200 x = .025 x = r * (x-x*x*x/3) NEXT i FOR j = 1 TO 200 x = r * (x-x*x*x/3) PSET (x, r), 4 NEXT j NEXT r 100...
Back
Top