math-tools

Solid

Deterministic mathematical computation using SymPy. Use for ANY math operation requiring exact/verified results - basic arithmetic, algebra (simplify, expand, factor, solve equations), calculus (derivatives, integrals, limits, series), linear algebra (matrices, determinants, eigenvalues), trigonometry, number theory (primes, GCD/LCM, factorization), and statistics. Ensures mathematical accuracy by using symbolic computation rather than LLM estimation.

AI & Automation 2,202 stars 164 forks Updated 1 weeks ago Apache-2.0

Install

View on GitHub

Quality Score: 91/100

Stars 20%
100
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Math Tools Deterministic mathematical computation engine using SymPy. All calculations use symbolic math - no LLM estimation. ## When to Use Use this skill whenever mathematical accuracy matters: - Arithmetic involving fractions, roots, or large numbers - Algebraic simplification, expansion, factoring - Solving equations (polynomial, transcendental, systems) - Calculus (derivatives, integrals, limits, series) - Linear algebra (matrices, eigenvalues, determinants) - Number theory (primes, factorization, GCD/LCM) - Statistical calculations ## Quick Start Run the calculator script with operation and arguments: ```bash python scripts/math_calculator.py <operation> <args...> ``` All results return JSON with `result`, `latex`, and `numeric` fields. ## Core Operations ### Arithmetic ```bash python scripts/math_calculator.py add 5 3 2 # 10 python scripts/math_calculator.py multiply 2 3 4 # 24 python scripts/math_calculator.py divide 10 4 # 5/2 (exact) python scripts/math_calculator.py sqrt 8 # 2*sqrt(2) python scripts/math_calculator.py factorial 10 # 3628800 ``` ### Algebra ```bash # Simplify python scripts/math_calculator.py simplify "(x**2 - 1)/(x - 1)" # → x + 1 # Expand python scripts/math_calculator.py expand "(x + 1)**3" # → x**3 + 3*x**2 + 3*x + 1 # Factor python scripts/math_calculator.py factor "x**3 - 8" # → (x - 2)*(x**2 + 2*x + 4) # Solve equations python scripts/math_calculator.py solve "x**2 - 5*x + 6" x # → [2, 3] pyth...

Details

Author
foryourhealth111-pixel
Repository
foryourhealth111-pixel/Vibe-Skills
Created
3 months ago
Last Updated
1 weeks ago
Language
Python
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

sympy

SymPy is a Python library for symbolic mathematics that enables exact computation using mathematical symbols rather than numerical approximations.

39,227 Updated today
sickn33
AI & Automation Solid

sympy

Use this skill when working with symbolic mathematics in Python. This skill should be used for symbolic computation tasks including solving equations algebraically, performing calculus operations (derivatives, integrals, limits), manipulating algebraic expressions, working with matrices symbolically, physics calculations, number theory problems, geometry computations, and generating executable code from mathematical expressions. Apply this skill when the user needs exact symbolic results rather than numerical approximations, or when working with mathematical formulas that contain variables and parameters.

26,659 Updated 2 days ago
K-Dense-AI
AI & Automation Solid

sympy

Use this skill when working with symbolic mathematics in Python. This skill should be used for symbolic computation tasks including solving equations algebraically, performing calculus operations (derivatives, integrals, limits), manipulating algebraic expressions, working with matrices symbolically, physics calculations, number theory problems, geometry computations, and generating executable code from mathematical expressions. Apply this skill when the user needs exact symbolic results rather than numerical approximations, or when working with mathematical formulas that contain variables and parameters.

27,681 Updated today
davila7
AI & Automation Solid

sympy

Use this skill when working with symbolic mathematics in Python. This skill should be used for symbolic computation tasks including solving equations algebraically, performing calculus operations (derivatives, integrals, limits), manipulating algebraic expressions, working with matrices symbolically, physics calculations, number theory problems, geometry computations, and generating executable code from mathematical expressions. Apply this skill when the user needs exact symbolic results rather than numerical approximations, or when working with mathematical formulas that contain variables and parameters.

2,202 Updated 1 weeks ago
foryourhealth111-pixel
API & Backend Listed

sympy

Use this skill when working with symbolic mathematics in Python. This skill should be used for symbolic computation tasks including solving equations algebraically, performing calculus operations (derivatives, integrals, limits), manipulating algebraic expressions, working with matrices symbolically, physics calculations, number theory problems, geometry computations, and generating executable code from mathematical expressions. Apply this skill when the user needs exact symbolic results rather than numerical approximations, or when working with mathematical formulas that contain variables and parameters.

335 Updated today
aiskillstore