Database
mathmat.txt
Associated article: Difference Equations and Chaos in Mathematica
Tags: Database
Source code accompanying the article by Robert Knapp and Mark Sofroniou in which the use Mathematica to set up programs and use links to external programs to demonstrate Mathematica's dynamical properties.
Difference Equations and Chaos in Mathematica
by Robert Knapp and mark Sofroniou
Listing One
(a)
In[1]:= LogisticFunction[r_][x_] := r x (1 - x);
(b)
In[2]:= iterates = NestList[LogisticFunction[2.5], 0.1, 30];
ListPlot[iterates, PlotJoined->True,PlotRange->All];
(c)
In[3]:= Last[iterates]
...


