Re: [sympy] solving simultaneous equations involving sine and cosine functions

2019-09-13 Thread Ashith Shyam
Thanks Oscar. Opened a new issue in github. Ash On Fri, Sep 13, 2019 at 11:17 AM Oscar Benjamin wrote: > This is a bug. Can you open an issue on github please? > https://github.com/sympy/sympy/issues > > The error comes from: > > In [2]: factor_terms(pi/4+oo*I) >

Re: [sympy] solving simultaneous equations involving sine and cosine functions

2019-09-13 Thread Oscar Benjamin
This is a bug. Can you open an issue on github please? https://github.com/sympy/sympy/issues The error comes from: In [2]: factor_terms(pi/4+oo*I) --- TypeError: can't convert oo to int Probably another error has left to

[sympy] solving simultaneous equations involving sine and cosine functions

2019-09-13 Thread Ash
Hello, I have the following minimal working example for solving a system of simultaneous non-linear equations. Angles, ang_xs, ang_ys, and ang_zs are dynamic in nature but for this particular instant, I am trying to solve A = [0, 0, 0]^T. This returns an error "can't convert oo to int". Could