I\'m trying to solve an equation in python using SymPy. I have a generated equation (something like function = y(8.0-(y**3.0)) which I use with SymPy to create a ne
function = y(8.0-(y**3.0))
This is a non-linear equation. What you need to look for is a root finding algorithm in SciPy.