I would like to compute the composition (f o g) where f, g are polynomial maps from R^2 to R^2. For example, if f(x,y) = (y, y^2 + x), I would like to obtain (f o f)(x,y) = (y^2 + x, (y^2 + x)^2 + y)
In Maple the code is more or less : f := (x,y) -> (y, y^2 + x); (f...@f)(x,y); Is there a way to do a similar code with Sage ? Thanks, Stephane -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org