Registry / data / simple-equ

simple-equ

JSON →
library1.5.11pypypiunverified

An open source library containing multiple known STEM equations in a functional form. Current version 1.5.11, supports Python >=3.8. Developed by Muhammad Bilal Qamar. Released under MIT License.

pip install simple-equ
INSTALL
IMPORT
SIG · SIMPLE-EQU
S
simple-equ
datapythonv1.5.11
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

algebra
from simple_equ import algebra
from simple_equ import Arithmetic
physics
from simple_equ import physics
statistics
from simple_equ import statistics

Import and use the core modules: Arithmetic, Trigonometric, Quadratic, Factorial, Kinematics.

from simple_equ import Arithmetic, Trigonometric, Quadratic, Factorial, Kinematics # Arithmetic print(Arithmetic.inverse('add')) # Output: 'subtract' # Trigonometric degrees = 30 rad, sin_val, cos_val, tan_val = Trigonometric.evaluate(degrees) print(f"Radians: {rad}, sin: {sin_val:.2f}, cos: {cos_val:.2f}, tan: {tan_val:.2f}") # Quadratic roots = Quadratic.solve(1, -3, 2) print(f"Roots: {roots}") # Factorial print(Factorial.compute(5)) # 120 # Kinematics time = Kinematics.distance_freefall(10, 9.8) print(f"Time to fall 10m: {time:.2f}s")
Debug
Known issues
gotchaThe library uses underscores in module names (simple_equ), not hyphens. Import as 'from simple_equ import ...'.
fix
Use correct import: from simple_equ import ...
affects: all
gotchaSome functions expect specific argument order or return values. Always check the docstrings or source code for method signatures.
fix
Refer to official documentation for each module's API.
affects: all
Upgrade
Version history
1.5.11latest on PyPI · released Apr 20, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
13 hits · last 30 days
node
10
OpenAI (training)
1
Resources
simple-equ — pip install simple-equ · libregistry