Question

In: Advanced Math

Create the following 3D plot in boxed format using MAPLE. Include a title and the code...

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.

Solutions

Expert Solution

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:


Related Solutions

Create the following 3D plot in boxed format using MAPLE. Include a title and the code...
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)
The following code must be written using matlab Create a contour plot of the following function...
The following code must be written using matlab Create a contour plot of the following function f(x,y) = (x+y^2-10)^2 +(x^2+y^2+8) in range [-6,6] for both x and y Clearly indicate in the plot the coordinates of the minimum ponts and the the corresponding function values in these points
C++ CODE ONLY Using the following code. #include <iostream> #include <string> #include <climits> #include <algorithm> using...
C++ CODE ONLY Using the following code. #include <iostream> #include <string> #include <climits> #include <algorithm> using namespace std; // M x N matrix #define M 5 #define N 5 // Naive recursive function to find the minimum cost to reach // cell (m, n) from cell (0, 0) int findMinCost(int cost[M][N], int m, int n) {    // base case    if (n == 0 || m == 0)        return INT_MAX;    // if we're at first cell...
Change the format of the given code to two columns, add a sub title and an...
Change the format of the given code to two columns, add a sub title and an author name and increase the color and thickness of the column-rule. Add an image and float the text around the image. <!DOCTYPE html> <!-- Fig. 5.17: multicolumns.html --> <!-- Multicolumn text in CSS3. --> <html> <head> <meta charset = "utf-8"› <title>Multicolumns</title> <style type = "text/css"› p { margin:0.9em Oem; } .multicolumns { /* setting the number of columns to 3 */ -webkit-column-count: 3; -moz-column-count:...
python code: Create a phase plot of a damped driven pendulum using odeint. Show a graph...
python code: Create a phase plot of a damped driven pendulum using odeint. Show a graph of angle as a function of time and angular velocity as a function of angle. Show each step in the code.
So the problem is to create a plot of points and plot them using only 'o'...
So the problem is to create a plot of points and plot them using only 'o' and no lines then using the polyfit and polyval functions, find a first order equation to curve fit the points (and plot it on the existing plot). I got that part and have the following code clear clc %define measured data temp = [250 300 340 400 460 500 540 600 660 700 750 810 930 1000 1120] HC= [.791 .846 .895 .939 .978...
A) Create two vectors in R3 ( 3D vectors) such that they are orthogonal. b) Using...
A) Create two vectors in R3 ( 3D vectors) such that they are orthogonal. b) Using the two vectors from a) above, determine the cross product of the two vectors c)Is it possible to write the vector [0,0,1] using scalar multiples of these vectors?
C++ code Why my code is not compiling? :( #include <iostream> #include <iomanip> #include <string> using...
C++ code Why my code is not compiling? :( #include <iostream> #include <iomanip> #include <string> using namespace std; const int CWIDTH = 26; int main() {    int choice;    double convertFoC, converCtoF;    double starting, endvalue, incrementvalue;    const int CWIDTH = 13;    do {       cin >> choice;    switch (choice)    {        cin >> starting;    if (starting == 28){       cout << "Invalid range. Try again.";    }    while (!(cin >> starting)){       string  garbage;       cin.clear();       getline(cin, garbage);       cout << "Invalid data Type, must be a number....
I need the following code completed: #include <iostream> #include <time.h> #include "CSVparser.hpp" using namespace std; //============================================================================...
I need the following code completed: #include <iostream> #include <time.h> #include "CSVparser.hpp" using namespace std; //============================================================================ // Global definitions visible to all methods and classes //============================================================================ // forward declarations double strToDouble(string str, char ch); // define a structure to hold bid information struct Bid { string bidId; // unique identifier string title; string fund; double amount; Bid() { amount = 0.0; } }; // FIXME (1): Internal structure for tree node struct Node {    Bid data; Node *left; Node...
Using MATLAB, Create five scripts for 5 3D polts with different views
Using MATLAB, Create five scripts for 5 3D polts with different views
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT