Issue 886 in sympy: simplify for general functions and derivatives fails

2009-08-13 Thread codesite-noreply
Comment #9 on issue 886 by Vinzent.Steinberg: simplify for general functions and derivatives fails http://code.google.com/p/sympy/issues/detail?id=886 A more explicit test case. (It does however need yet-to-be-implemented assumptions functionality and probably more explicit hints for

Issue 886 in sympy: simplify for general functions and derivatives fails

2009-03-30 Thread codesite-noreply
Comment #8 on issue 886 by johann.cohentanugi: simplify for general functions and derivatives fails http://code.google.com/p/sympy/issues/detail?id=886 from current HEAD version: In [1]: from sympy import * In [2]: var('x') Out[2]: x In [3]: f=Function('f') In [4]:

Issue 886 in sympy: simplify for general functions and derivatives fails

2009-01-28 Thread codesite-noreply
Updates: Labels: module-simplify Comment #3 on issue 886 by fabian.seoane: simplify for general functions and derivatives fails http://code.google.com/p/sympy/issues/detail?id=886 (No comment was entered for this change.) -- You received this message because you are listed in the

Issue 886 in sympy: simplify for general functions and derivatives fails

2009-01-28 Thread codesite-noreply
Updates: Cc: Vinzent.Steinberg Comment #4 on issue 886 by fabian.seoane: simplify for general functions and derivatives fails http://code.google.com/p/sympy/issues/detail?id=886 I can't reproduce the bug. Vinzent, can you confirm that this is fixed or provide a test case ? -- You

Issue 886 in sympy: simplify for general functions and derivatives fails

2009-01-28 Thread codesite-noreply
Comment #5 on issue 886 by Vinzent.Steinberg: simplify for general functions and derivatives fails http://code.google.com/p/sympy/issues/detail?id=886 from sympy import * var('x') x f=Function('f') f(x)*f(x).diff(x,2)/f(x).diff(x)**2 f(x)*D(f(x), x, x)/D(f(x), x)**2