Comment #1 on issue 3064 by [email protected]: Factor_terms inconsistency http://code.google.com/p/sympy/issues/detail?id=3064
Although factor_terms will not introduce coefficients on terms that have no denominator, gcd_terms does. And once it does it's hard to recover from the damage as a result of automatic rewriting, e.g.
1/sqrt(a/2+b/2-s+1)
1/sqrt(a/2 + b/2 - s + 1)
factor_terms(_)
sqrt(2)/sqrt(a + b - 2*s + 2)
gcd_terms(1/sqrt(a/2+b/2-s+1))
sqrt(2)/sqrt(a + b - 2*s + 2) I'll see what I can do. -- You received this message because you are subscribed to the Google Groups "sympy-issues" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy-issues?hl=en.
