rom sympy import symbols, solve, pprint, roots import matplotlib.pyplot as p class Mohr(): def 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: sympy solve equation system as matrix
>>> system = Matrix(( (1, 4, 2), (-2, 1, 14)))
>>> solve_linear_system(system, x, y)
{x: -6, y: 2}