Status: Accepted
Owner: ----
CC: [email protected]
Labels: Type-Defect Priority-Medium

New issue 3064 by [email protected]: Factor_terms inconsistency
http://code.google.com/p/sympy/issues/detail?id=3064

In [1]: a, b, s = symbols('a b s')

In [2]: 1/gamma(a/2+b/2-s+1)
Out[2]:
       1
────────────────
 ⎛a   b        ⎞
Γ⎜─ + ─ - s + 1⎟
 ⎝2   2        ⎠

In [3]: factor_terms(_)
Out[3]:
        1
──────────────────
 ⎛a + b - 2⋅s + 2⎞
Γ⎜───────────────⎟
 ⎝       2       ⎠

In [4]: gamma(a/2+b/2-s+1)
Out[4]:
 ⎛a   b        ⎞
Γ⎜─ + ─ - s + 1⎟
 ⎝2   2        ⎠

In [5]: factor_terms(_)
Out[5]:
 ⎛a   b        ⎞
Γ⎜─ + ─ - s + 1⎟
 ⎝2   2        ⎠


--
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.

Reply via email to