Documentation

Installation

        pip install mathlib
    

Example Usage

        
from mathlib import Algebra

# Solve an equation
result = Algebra.solve(x^2 - 4 = 0)
print(result)  # Output: [2, -2]