# Darstellung der Lsungskurven Y = Y(x) nach den einzelnen
# Iterationsschritten, beginnend mit den Startwerten y2 = 1 und y3 = 0,
# die mit den Randwerten y1 = 1 und y4 = 0  bereinstimmen.
> Y[1] := 1 - 0.799491*x + 2.76703*x^2 - 2.96754*x^3;

                                             2            3
           Y[1] := 1 - 0.799491 x + 2.76703 x  - 2.96754 x

> Y[3] := 1 - 0.9955*x - 0.2565*x^2 + 0.25196*x^3;

                                           2            3
            Y[3] := 1 - 0.9955 x - 0.2565 x  + 0.25196 x

> Y[5] := 1 - 1.0003*x + 0.0234*x^2 - 0.02313*x^3;

                                           2            3
            Y[5] := 1 - 1.0003 x + 0.0234 x  - 0.02313 x

> y[ex] := 1 - x;

                            y[ex] := 1 - x

> plot({Y[1],Y[3],Y[5],y[ex]}, x = 0..1);

> 
> 
> 
