On 12/29/2016 04:48 AM, Ingo Dahn wrote:
> 
> According to tab completion SageCell doesn't seem to support any other form 
> of *simplify*. Is there any strategy to combine Sage commands in order to 
> simplify rational function expressions?

Plain "simplify" won't do much on its own. I guess it's only a top-level
function (as opposed to a method) because users of Mathematica and
friends will expect it to be there. But the good stuff can be found as
methods on the expression object:

  sage: q=(x^2+4*x+4)/(x+2)^2
  sage: q.simplify_full()
  1

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to sage-support@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/d/optout.

Reply via email to