Differences between revisions 10 and 12 (spanning 2 versions)
Revision 10 as of 2008-11-14 13:42:15
Size: 7556
Editor: anonymous
Comment: converted to 1.6 markup
Revision 12 as of 2012-04-11 20:17:18
Size: 7580
Editor: bvarberg
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
{{{ {{{#!sagecell
Line 22: Line 22:
{{{ {{{#!sagecell
Line 58: Line 58:
        degs = [[max([q.degree(avar) for q in b]) for avar in our_vars] for b in a_gf.reduced_groebner_bases()]
        maxdegs = [max([float(q[i]) for q in degs]) for i in range(len(our_vars))]
        degs = [[max(q.degree(avar) for q in b) for avar in our_vars] for b in a_gf.reduced_groebner_bases()]
        maxdegs = [max(float(q[i]) for q in degs) for i in range(len(our_vars))]
Line 61: Line 61:
        color_list = [tuple([c[i]/max(c) for i in range(3)]) for c in color_list]         color_list = [tuple(c[i]/max(c) for i in range(3)) for c in color_list]
Line 119: Line 119:
{{{ {{{#!sagecell

Sage Interactions - Algebra

goto interact main page

Groebner fan of an ideal

by Marshall Hampton; (needs sage-2.11 or higher, with gfan-0.3 interface)

gfan_interact.png

3D Groebner fan browser

by Marshall Hampton

gb3d.png

Numerical Solutions of Polynomial Systems with PHCpack

by Marshall Hampton; requires phcpack optional package (PHCpack written by Jan Verschelde). The example below is a two-parameter deformation of the cyclic-6 problem. Solution paths are tracked through the parameter homotopy.

pathtrack.png

interact/algebra (last edited 2019-04-06 06:18:49 by chapoton)