Usage#
To use Pyquations, simply import the package and call the equations you need. For example:
from pyquations import quadratic_formula
roots = quadratic_formula(1, 2, 3)
print(roots)
For more details on available equations and their usage, refer to the API Reference.