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.
-A pair of concentric cylinders about the z axis, with a height of 7.
Solution: Using the following Maple code you can create the following 3D plot of a pair of concentric cylinders about the z axis, with a height of 7 and radii 1 and 3 unit centered at (0,0,0) in boxed format.
>with(plottools);
> with(plots);
>display(cylinder([0, 0, 0], 3, 7, capped = false), cylinder([0,
0, 0], 1, 7, capped = false), orientation = [45, 70], scaling =
constrained, axes = boxed);
Here the screen shot of ouput of above code is also given: