sage: version() 'Sage Version 4.4.3, Release Date: 2010-06-04' sage: f=e^(i*x*pi-i*2*pi) sage: f.simplify_full() e^(I*pi*x)
# So far, so good sage: n=var('n') sage: f=e^(i*x*pi*n-i*2*pi*n) sage: f.simplify_full() e^(I*pi*n*x - 2*I*pi*n) # Is there a way I can get this to simplify? sage: latex(f) e^{\left(I \, \pi n x + \left(-2 I\right) \, \pi n\right)} # Why the "extra" parentheses around -2I ? --Mike -- 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