Implicit 3d Plot

Description

Sage can plot implicit 3d functions with the implicit_plot3d command. The command takes the following arguments:

  • function: A function defined with 3 variables, usually x, y and z.
  • xrange: A tuple containing the x-axis variable, the minimum value, and the maximum value.
  • yrange: A tuple containing the y-axis variable, the minimum value, and the maximum value.
  • zrange: A tuple containing the z-axis variable, the minimum value, and the maximum value.
  • plot_points: The number of points evaluated in each direction. Defaults to 40.

Sage Cell

Code

var('x y z')
implicit_plot3d(x^2 + y^2 + z^2 == 4, (x, -3, 3), (y, -3, 3), (z, -3, 3))

Options

none

Tags

Primary Tags:

Secondary Tags:

A list of possible tags can be found at The WeBWorK Open Problem Library. For linear algebra tags see the Curated Courses Project.

Related Cells

Any related cells go here. Provide a link to the page containing the information about the cell.

Attribute

Permalink:

Author:

Date: 13 Aug 2019 00:46

Submitted by: Zane Corbiere

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License