Issue 1181 in sympy: Advanced trigonometric simplification

2008-10-30 Thread codesite-noreply
Issue 1181: Advanced trigonometric simplification http://code.google.com/p/sympy/issues/detail?id=1181 New issue report by [EMAIL PROTECTED]: Suggestion is to automate trigonometric simplification for following types of expressions (should also work for hyperbolic expressions) which occur in coo

Issue 1181 in sympy: Advanced trigonometric simplification

2008-11-01 Thread codesite-noreply
Issue 1181: Advanced trigonometric simplification http://code.google.com/p/sympy/issues/detail?id=1181 Comment #1 by [EMAIL PROTECTED]: The following code worked for the cases in comment 1. I don't know if it would work if there are more than two (theta and phi) trigonometric variables. def T

Re: Issue 1181 in sympy: Advanced trigonometric simplification

2011-11-28 Thread sympy
Updates: Labels: smichr NeedsReview Comment #5 on issue 1181 by smi...@gmail.com: Advanced trigonometric simplification http://code.google.com/p/sympy/issues/detail?id=1181 https://github.com/sympy/sympy/pull/772 -- You received this message because you are subscribed to the Google G

Re: Issue 1181 in sympy: Advanced trigonometric simplification

2012-03-21 Thread sympy
Updates: Labels: -smichr -NeedsReview Comment #7 on issue 1181 by smi...@gmail.com: Advanced trigonometric simplification http://code.google.com/p/sympy/issues/detail?id=1181 (No comment was entered for this change.) -- You received this message because you are subscribed to the Goog

Re: Issue 1181 in sympy: Advanced trigonometric simplification

2012-07-09 Thread sympy
Comment #8 on issue 1181 by eldad.a...@gmail.com: Advanced trigonometric simplification http://code.google.com/p/sympy/issues/detail?id=1181 I am new to SymPy, so I may have missed a more straight forward method: I have found the following quite useful in simplifying trigonometric expressio

Re: Issue 1181 in sympy: Advanced trigonometric simplification

2013-01-21 Thread sympy
Updates: Status: Fixed Comment #9 on issue 1181 by smi...@gmail.com: Advanced trigonometric simplification http://code.google.com/p/sympy/issues/detail?id=1181 The OP expresions now give eq3=r**2*cos(theta)**2*sin(phi)**2 eq1=cos(theta)**2 + cos(phi)**2*sin(theta)**2 + sin(phi)**2

Re: Issue 1181 in sympy: Advanced trigonometric simplification

2010-12-04 Thread sympy
Comment #2 on issue 1181 by Vinzent.Steinberg: Advanced trigonometric simplification http://code.google.com/p/sympy/issues/detail?id=1181 Currently you could use a poor man's trigsimp: In [18]: e Out[18]: 22 22 2 22 2 r ⋅cos (φ) + r ⋅sin (φ)⋅sin (θ) - r ⋅

Re: Issue 1181 in sympy: Advanced trigonometric simplification

2010-12-05 Thread sympy
Comment #3 on issue 1181 by asmeurer: Advanced trigonometric simplification http://code.google.com/p/sympy/issues/detail?id=1181 Maybe we should add a flag to trigsimp (not sure what it should be called) that just implements this simple simplification. This method can, I think, be very inef