Ah I see it is already fixed.
>>> from sympy import *
>>> a, b, t = symbols("a,b,t")
>>> solve(Eq(t / a + t / b, 1), t)
[a*b/(a + b)]
>>> solve(Eq(t / a + t / b, 1.0), t)
[a*b/(a + b)]
2011/11/13 Benjamin Gudehus <[email protected]>
> $ cd sympy-sympy-sympy-0.7.1-1106-g986e20c
> $ python
> >>> from sympy import *
> >>> a, b, t = symbols("a,b,t")
> >>> solve(Eq(t / a + t / b, 1), t)
> [a*b/(a + b)]
> >>> solve(Eq(t / a + t / b, 1.0), t)
> [a*b*conjugate(a)/(a*conjugate(a) + a*conjugate(b) + b*conjugate(a) +
> b*conjugate(b)) +
> a*b*conjugate(b)/(a*conjugate(a) + a*conjugate(b) + b*conjugate(a) + b*c
> onjugate(b))]
>
> $ cd sympy-sympy-sympy-0.7.1-1068-gcf9c01f
> $ python
> >>> from sympy import *
> >>> a, b, t = symbols("a,b,t")
> >>> solve(Eq(t / a + t / b, 1), t)
> [a*b/(a + b)]
> >>> solve(Eq(t / a + t / b, 1.0), t)
> [1.0*a*b/(1.0*a + 1.0*b)]
>
> 2011/11/13 Chris Smith <[email protected]>
>
>> > Can you open an issue for it?
>>
>> issue 2842
>>
>> --
>> 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.
>>
>>
>
--
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.