sympy quadratic problem code example
Example 1: solve equation python
>>> from sympy.solvers import solve
>>> from sympy import Symbol
>>> x = Symbol('x')
>>> solve(x**2 - 1, x) #Your equation here
[-1, 1]
Example 2: how to write x in terms of y sympy
def express(a, b, name):
sym = symbols(name)
sol = solve(a-sym, b)
assert len(sol) == 1
return (sym, sol[0])