I've been trying to get the solution for the following equations. 4.5*b = a*b^0.45-a+1 4.5 = 0.45*a*b^(0.45-1)
I think this should do it. ab = sympy.solve([a * b**0.45 - a + 1 - 4.5 * b, 0.45 * a * b**(0.45 - 1) - 4.5]) After waiting 100 minutes I cancelled it. It's not clear to me if it will eventually find a solution, or if it has reached a broken internal state which will make it compute indefinitely. -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/857b5528-22eb-496c-b0a1-5e449c0c2075%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
