Graphical Representations

Separate graphs of the iterates and of the function values for each of the four methods.

> display( array( [[points[n], points[s]], [ points[b], points[B]] ] ) );

[Maple Plot]

> display( array( [[values[n], values[s]], [values[b],values[B]] ] ) );

[Maple Plot]

>

Combined graphsof the iterates and of the function values for each of the four methods.

> display( [values[n],values[s],values[b],values[B] ],
title="All Methods: Function Values" );

[Maple Plot]

> display( [ points[n], points[s], points[b], points[B] ],
title="All Methods: Iterates" );

[Maple Plot]

>

Note that if one or more method was NOT executed, then the corresponding plots will not be defined. Maple will complain about this (with a very lengthy error message). You will need to modify the display commands to remove all reference to undefined plots. Here are general formats that can be used for one, two, or three methods.

> #display( values[n] );

> #display( array( [values[n],values[s]] ) );

> #display( array( [values[n],values[s],values[b]] ) );

>