"Bluff your way in chaos,fractals and differential equations".
This first section should be a {\bf motivation} for more serious material, which follows in the next weeks.
Here is the Bluffer's definition of chaos
Chaos is still in fashion. From 1991-1993, 2406 journal articles and in 1993-1995 even 2451 articles use the word chaos in the title or abstract. This means that you had to read in average 6 articles per day during that time in order to stay up to date. And then you have not yet read most of the good articles, where the word chaos does not appear. The chaos blow reached newspapers, TV and even the film, pictures of Mandelbrot and Julia sets are hanging in living rooms or banks, some books got bestsellers. However, in the nineties, the public or at least the journalists have got a bit tired of it: everybody has seen the Mandelbrot set many times on photos, posters, newspapers, TV, school and on home computers. Still it is not possible to use the insights of the "chaologists" to predict for example the Dow-Jones index for the next week. Some newer research has therefore been devoted to the "control of chaos", a tipic, which was now fashion for a few years. It is not an easy task to answer the question
T[x_]:=4 x *(1-x); IterateTT[x_,n_]:=Module[{y=x},Do[y=T[y],{n}];y]; S[x_]:=4 x- 4 x^2; IterateSS[x_,n_]:=Module[{y=x},Do[y=S[y],{n}];y]; {IterateTT[0.1,59],IterateSS[0.1,59]}; ListPlot[Table[IterateTT[0.1,k]-IterateSS[0.1,k],{k,100}]]Note that Mathematica computes with 16 digits. This does not help! The results of the two outputs of T^{59}(x) and S^{59}(x) are completely different and illustrate that the computer does not follow the
x --> 4 x (1-x)was proposed as a random number generator by S.Ulam and J.von Neumann, who had been interested in the design of algorithms for random numbers on the first electronic computer. An other story is the true tale that if you look in the television how the balls of the numbers pool (Lotto) are falling and you shake your hand, it will affect the motion of the balls. The little gravitational change over hundreds or even thousends of miles has already an affect on the balls and will change the numbers and also the winners. Apropos television. If you have a video camara, you can film inside the picture shown by the camara. Strange patterns appear. Chaos does not only have its root in nonlinearity: The
(x,y) ---> (2x+y,x+y)on the torus is a linear map but a poor cat sitting on the torus and exposed to the dynamics will be in many little pieces after only a few iterations. The idea to put a cat onto the torus is in Arnold's great book in classical mechanics and the origin of the name of the map. In the next experiment, we see just one orbit of length 1000 of this map: By the way, it is a shame to use more than a line for such a program.
T[{x_,y_}]:=N[Mod[{2x+y,x+y},1]]; ListPlot[NestList[T,{0.2,0.4},1000]];
M=Compile[{x,y},Block[{z=x+I y,k=0},While[Abs[z]<2&&k<50,z=z^2+x+I y;++k];k]]; DensityPlot[50-M[x,y],{x,-2.,1.},{y,-1.5,1.5},PlotPoints->200,Mesh->False];The name Mandelbrot was invented by Douady and Hubbard who investigated this fascinating object the first time mathematically. The first picture of the Mandelbrot set has been computed not by Mandelbrot but by Brooks and Matelski who studied Kleinian groups. Their name is however not forgotten: there is an open subset of the Mandelbrot set which is now called
J=Compile[{u,v},Block[{z=u+I v,k=0},While[Abs[z]<99&&k<50,z=z^2-.12+.74I;++k];k]]; DensityPlot[50-J[u,v],{u,-1,1},{v,-1,1},PlotPoints->200,Mesh->False];Fractals are known over 100 years now. The most famous and ancestor of all fractals is the Cantor set, which is the prototype of a fractal. Did you know that it has not been found by Georg Cantor but by Henry Smith in 1875?
T[{x_,y_}]:=N[Mod[{2x-y+1.3*Sin[x],x},N[2Pi]]];ListPlot[NestList[T,{.2,.4},10^4]];When speaking from fractal invariant sets of dynamical systems, it is good to know that the famous "strange attractors" are only conjectured. Mathematically, it is in general difficult to estimate the dimension of an attractor from a specific case like the famous Henon map, which we see next:
T[{x_,y_}]:={0.3*y+1-1.4*x^2,x};ListPlot[NestList[T,{.56,.37},10^4]]For this choice of parameters, it is still not known (and maybe not a good question) whether we see a "strange attractor". A little bit gossip also here: the publication of the first papers about strange attractors had some difficulties in acceptance. Henon's paper was first not accepted because it was believed that the attractor is just a periodic orbit of large period. Also Ruelle had problems with the publication of the Ruelle-Takens paper. He had to be his own referee in order to accept the paper with Takens. Also Feigenbaum had problems to publish his results about the Feigenbaum attractor. They are indeed hard to read. The question
Orb=NDSolve[{x'[t]==10(y[t]-x[t]),y'[t]==-x[t] z[t]+28x[t]-y[t],z'[t]== x[t]*y[t]-8z[t]/3,x[0]==z[0]==0,y[0]==.3},{x,y,z},{t,0,40},MaxSteps->5000]; Plo=ParametricPlot3D[Evaluate[{x[t],y[t],z[t]} /. Orb],{t,0,40},PlotPoints->5000]; Do[Show[Plo,ViewPoint->{2k,1,1}],{k,-2,2}]This is a simple toy model for the time evolution of a convecting fluid layer. Other very complex system are the stock market or neural networks like our brain. We don't know even the exact laws for such complex systems but we can measure datas like temperature and pressure for the climate, the Down Jones index in the economic world or the electroencephalograms for the brain. It would be very interesting (and profitable) to know, if such complicated dynamical systems could be simulated by low dimensional dynamical systems. Recent research has suggested that chaos is normal in the heartbeat and contrary to expectations, it is the sickest hearts whose beat often looks most periodic. Similarly, levels of white blood cells fluctuate chaotically in healthy people but oscillate cyclically in certain patients with leukemia. There are also indications that the immune system's method for making antibodies may involve chaotic activity. Tremors of Parkinson's disease may arise from a loss of normal chaos in the neurological system. To answer the question about the usefulness of chaos: there is no doubt that the ideas of chaos had a tremendous stimulation for a part of science and even if direct applications are not possible, the ideas have increased the knowledge about many things.
In order to bluff your way more successfuly, we recommend to look at some of the following books about chaos. It is no bluff however, that there are many more on the market. You find a literature list with books I recommend if one or the other of you might want to know more during the course or later. The theory of chaos and fractals are popular pillars of the theory of dynamical systems. Lets ask our last question:
| Summary |
|
|