[sympy] Re: New user question: Expanding quotients of complex numbers

2014-06-06 Thread F. B.
On Friday, June 6, 2014 2:36:34 AM UTC+2, jeanbi...@gmail.com wrote: > > > var('A,B,C,D,u,v,qi,qf') > qi = 1/(u-I*v) > qf = (A+B/qi)/(C+D/qi) > First of all, you don't need to declare *qi* and *qf* in var( ... ), because they get overwritten in the next expressions. By the way, maybe you mean

[sympy] Re: New user question: Expanding quotients of complex numbers

2014-06-06 Thread jeanbigboute
On Friday, June 6, 2014 2:16:57 AM UTC-7, F. B. wrote: > > > > On Friday, June 6, 2014 2:36:34 AM UTC+2, jeanbi...@gmail.com wrote: >> >> >> var('A,B,C,D,u,v,qi,qf') >> qi = 1/(u-I*v) >> qf = (A+B/qi)/(C+D/qi) >> > > First of all, you don't need to declare *qi* and *qf* in var( ... ), > because