4-7.mws

Construct this graph associated with the
logistic equation
x ' = ax(1-x)

> x:=0.7;

x := .7

> a:=3.7;

a := 3.7

> y:=a*x*(1-x);

y := .777

> m:=[];

m := []

> for k to 200 do m:=[op(m),[x,x],[x,y]]:x:=y:y:=a*x*(1-x):od:

> plot(m,scaling=constrained);

[Maple Plot]

>