On Tue, Feb 02, 2010 at 08:05:37PM -0800, mhampton wrote:
> I'm going to give an intro talk on Sage in a couple of days, and I'm
> wondering if anyone has something particularly cool I could demo.  I
> already have a lot of examples but perhaps there are some recent
> additions I could highlight that I am unaware of.
> 
> Some of things I am already using: William's seapig demo of pylab/svd/
> interact functionality, 3d vector field plots, the new graph editor
> (although maybe someone could give me a particularly good use of it).
> Many of my other examples are from the wiki interact page - I
> encourage people to add to that if you have something nice that could
> be turned into an interact.

Some 3D Cayley graphs maybe? Not much interactive though.

    sage: W = WeylGroup(['A',3])
    sage: d = W.cayley_graph(); d
    sage: d.show3d(color_by_label=True, edge_size=0.01, vertex_size=0.03)

    sage: W = WeylGroup(['B',3])
    sage: d = W.cayley_graph(); d
    sage: d.show3d(color_by_label=True, edge_size=0.01, vertex_size=0.03)

And in case you can run your demo with sage 4.2 and #8044 gets merged
in time:

    sage: W = SymmetricGroup(4)   # same graph as for A3 above
    sage: d = W.cayley_graph(); d
    sage: d.show3d(color_by_label=True, edge_size=0.01, vertex_size=0.03)

    sage: G = GL(2,3)
    sage: g = G.cayley_graph()
    sage: g.show3d(color_by_label=True)

Cheers,
                                Nicolas
--
Nicolas M. ThiƩry "Isil" <nthi...@users.sf.net>
http://Nicolas.Thiery.name/

-- 
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to 
sage-devel+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org

Reply via email to