Using Python and SymPy I am trying to solve this equation for b:
My code:
From sympy import *
b = Symbol('b')
x = ((b/(2*math.pi*math.e))*((math.pi*b)**(1/b)))**(1/(2*(b-1)))
solve(x-1.0034,b)
And I get this error: NotImplementedError: multiple generators...No algorithms are implemented to solve equation...
Do you know where is the mistake? Or is it possible that the equaiton is so difficult that Python can not solve it? Thank you