I am new to sympy and enjoyed the pythonic syntax. However, I encountered a problem that can't be solved by sympy but can be easily solved in Maple.
So, I have following system:
0.0165 * exp( -2.0405-0.33*b-0.5*n)+0.031 * exp(-4.164-0.62*b-0.5*n)=k*p
0.025 * exp( -2.0405-0.33*b-0.5*n) +0.025 * exp(-4.164-0.62*b-0.5*n)=5*k
2*p=p*b+5*n
I need to solve b
,n
and k
in terms of p
. I can easily solve this in Maple, but using sympy, it takes forever and crashed at the end for exhausting the RAM. Maple can provide exact symbolic solutions.
The sympy code I used is solve([eq1,eq2,eq3],[b,n,k])
Thank for you any help!
Use the rational=False flag: