The problem is that sympy automatically converted sin(x)**2/cos(x)**2 to tan(x)**2. How does one prevent this or should simplify and/or trigsimp be more sophisticated?
In [1]: A = cos(x)**2*tan(x)**2 In [3]: A Out[3]: 2 2 cos (x)?tan (x) In [4]: trigsimp(A) Out[4]: 2 2 cos (x)?tan (x) In [5]: simplify(A) Out[5]: 2 2 cos (x)?tan (x) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sympy" 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?hl=en -~----------~----~----~----~------~----~------~--~---
