Blogue

Le Memphré 2010, mon centième tournoi d'ultimate

13 septembre 2010 | Catégories: ultimate | View Comments

Le tournoi Chez Memphré 2010 est le centième tournoi d'ultimate auquel je participe.

Année Nombre de tournois participés
2003 19
2004 17
2005 15
2006 12
2007 9
2008 10
2009 11
Read and Post Comments

The Tamer and the Lion (done with Xavier Provençal)

20 novembre 2009 | Catégories: animation, sage | View Comments

A tamer wants to escape within a circle without being eaten by a lion who lives on the circle. The speed of the lion is 4 times that of the tamer. How can the tamer escape? There is a nice and clever solution in 2d, but does the naive solution where the tamer always moves oppositely to the lion works? In November 2009, a small script written in Sage by Xavier Provençal and Sébastien Labbé in Montpellier answers the question. To create the animation, download the script tamer.sage and run the commands:

sage: load tamer.sage
sage: l = range(0,1200,10)
sage: a = anime(l)
sage: a
Animation with 120 frames
sage: show(a)
/Files/2009/tamer.gif

How can the tamer escape? Can you find the solution?

Read and Post Comments

Fibonacci Tiles

01 juillet 2009 | Catégories: animation, sage | View Comments

The first 7 Fibonacci Tiles:

sage: path_op = dict(rgbcolor='red', thickness=1)
sage: fill_op = dict(rgbcolor='blue', alpha=0.3)
sage: options = dict(pathoptions=path_op, filloptions=fill_op, endarrow=False, startpoint=False)
sage: G = [words.fibonacci_tile(i).plot(**options) for i in range(7)]
sage: a = animate(G)
sage: a.show(delay=150)
/Files/2009/fibotile.gif
Read and Post Comments

« Previous Page