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.

-3 spheres of radius 5 centered at (0,-8,0) , (0,8,0) and (0,0,0)

Solutions

Expert Solution

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:


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. -A pair of concentric cylinders about the z axis, with a height of 7.
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:...
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....
Does anyone know the code to use in R programming to create a scatter plot?
Does anyone know the code to use in R programming to create a scatter plot?
Does anyone know the code to use in R programming to create a box plot?
Does anyone know the code to use in R programming to create a box plot?
Using MATLAB, Create five scripts for 5 3D polts with different views
Using MATLAB, Create five scripts for 5 3D polts with different views
USING YOUR KNOWLEDGE OF MODULES, REWRITE THE FOLLOWING BATCH OF CODE USING PSEUDOCODE AND CREATE A...
USING YOUR KNOWLEDGE OF MODULES, REWRITE THE FOLLOWING BATCH OF CODE USING PSEUDOCODE AND CREATE A FLOWCHART TO REPRESENT THE LOGIC: There’s one thing every coder must understand. The System.out.println command. There’s one thing every coder must understand. The System.out.println command.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT