| 1 | initial version |
You can achieve this by
sage: f.nth_iterate_map(2).defining_polynomials()
(x^4, y^4)
As a general tip, if you have an object that you want to get information out of, try assigning it to a variable e.g.
f2 = f.nth_iterate_map(2)
and then type f2.<TAB>; this will suggest a list of methods.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.