Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using Sympy solution in 3rd party category for Simplification by alexgerdom
from sympy import sympify
def simplify(expr):
expr = sympify(expr)
return str(expr.expand()).replace(" ","")
July 6, 2016
Comments: