Figures 15 - 19

> z := x - 1/9*x^3 - 1/2*y^2;

z := x-1/9*x^3-1/2*y^2

> plot3d( z, x=-3.8..3.8, y=-3.8..3.8, orientation=[-45,45], title="Figure 15 a" );

[Maple Plot]

> plot3d( z, x=-3.8..3.8, y=-3.8..3.8, style=patchcontour, orientation=[-45,45], title="Figure 15 b" );

[Maple Plot]

> plot3d( z, x=-3.8..3.8, y=-3.8..3.8, style=contour, orientation=[-90,0], title="Figure 15 c" );

[Maple Plot]

>

> z := y/(1+x^2+y^2);

z := y/(1+x^2+y^2)

> plot3d( z, x=-5..5, y=-5..5, orientation=[-45,45], title="Figure 16 a" );

[Maple Plot]

> plot3d( z, x=-5..5, y=-5..5, style=patchcontour, orientation=[-45,45], title="Figure 16 b" );

[Maple Plot]

> plot3d( z, x=-5..5, y=-5..5, style=contour, orientation=[-90,0], title="Figure 16 c" );

[Maple Plot]

>

> z := -1 + cos( y/(1+x^2+y^2) );

z := -1+cos(y/(1+x^2+y^2))

> plot3d( z, x=-5..5, y=-3.8..3.8, orientation=[-45,45], title="Figure 17 a" );

[Maple Plot]

> plot3d( z, x=-5..5, y=-3.8..3.8, style=patchcontour, orientation=[-45,45], title="Figure 17 b" );

[Maple Plot]

> plot3d( z, x=-5..5, y=-3.8..3.8, style=contour, orientation=[-90,0], title="Figure 17 c" );

[Maple Plot]

>

> z := exp( -(x^2+y^2)+x*y/4 );

z := exp(-x^2-y^2+1/4*x*y)

> plot3d( z, x=-2..2, y=-2..2, orientation=[-45,45], title="Figure 18 a" );

[Maple Plot]

> plot3d( z, x=-2..2, y=-2..2, style=patchcontour, orientation=[-45,45], title="Figure 18 b" );

[Maple Plot]

> plot3d( z, x=-2..2, y=-2..2, style=contour, orientation=[-90,0], title="Figure 18 c" );

[Maple Plot]

>

> z := exp( -(x^2+y^2)/4 ) * sin( x*sqrt(abs(y)) );

z := exp(-1/4*x^2-1/4*y^2)*sin(x*sqrt(abs(y)))

> plot3d( z, x=-5..5, y=-5..5, orientation=[-45,45], title="Figure 19 a" );

[Maple Plot]

> plot3d( z, x=-5..5, y=-5..5, style=patchcontour, orientation=[-45,45], title="Figure 19 b" );

[Maple Plot]

> plot3d( z, x=-5..5, y=-5..5, style=contour, orientation=[-90,0], title="Figure 19 c" );

[Maple Plot]

>