In: Advanced Math
Create the following 3D plot in boxed format using MAPLE. Include a title and the code for the plot in the same page.
-3 spheres of radius 5 centered at (0,-8,0) , (0,8,0) and (0,0,0)
Solution: Using the following Maple code you can create the following 3D plot of 3 spheres of radius 5 centered at (0,-8,0) , (0,8,0) and (0,0,0) in boxed format
>with(plottools);
with(plots);
>c := sphere([0, -8, 0], 5);
d := sphere([0, 8, 0], 5);
e := sphere([0, 0, 0], 5);
>display(c, scaling = constrained, axes = boxed, title = "Sphere
of radius 5 centered at (0,-8,0) ");
display(d, scaling = constrained, axes = boxed, title = "Sphere of
radius 5 centered at (0,8,0)");
display(e, scaling = constrained, axes = boxed, title = "Sphere of
radius 5 centered at (0,0,0)");
Here the screen shot of ouput of above code is also given: