Macaulay2 » Documentation
Packages » Visualize :: visualize(Ideal)
next | previous | forward | backward | up | index | toc

visualize(Ideal) -- visualizes an ideal in the browser

Synopsis

Description

Using JavaScript, this method creates an interactive visualization of an ideal, in either 2 or 3 variables, in a modern browser. Unlike other Types, when visualizing an ideal you do not need to open a port as there is no communication between Macaulay2 and the browser. We hope to add more functionality to this method in future versions. The ideal being visualized is actually the ideal of leading terms.

i1 : S = QQ[x,y]

o1 = S

o1 : PolynomialRing
i2 : I = ideal"x4,xy3,y5"

             4     3   5
o2 = ideal (x , x*y , y )

o2 : Ideal of S

In order to visualize this, simply type visualize I and the following example will appear in the browser.

Visualize ideal in 2 variables example

i3 : R = QQ[x,y,z]

o3 = R

o3 : PolynomialRing
i4 : J = ideal"x4,xyz3,yz2,xz3,z6,y5"

             4       3     2     3   6   5
o4 = ideal (x , x*y*z , y*z , x*z , z , y )

o4 : Ideal of R

In order to visualize this, simply type visualize J and the following example will appear in the browser.

Visualize ideal in 3 variables example

Caveat

Visualizing ideals is still in development so please be gentle with it.

See also

Ways to use this method: