math

Featured

Unified math capabilities - computation, solving, and explanation. I route to the right tool.

AI & Automation 453 stars 37 forks Updated 1 months ago MIT

Install

View on GitHub

Quality Score: 97/100

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

Skill Content

# /math - Unified Math Capabilities **One entry point for all computation and explanation.** I route to the right tool based on your request. For formal proofs, use `/prove` instead. --- ## Quick Examples | You Say | I Use | |---------|-------| | "Solve x² - 4 = 0" | SymPy solve | | "Integrate sin(x) from 0 to π" | SymPy integrate | | "Eigenvalues of [[1,2],[3,4]]" | SymPy eigenvalues | | "Is x² + 1 > 0 for all x?" | Z3 prove | | "Convert 5 miles to km" | Pint | | "Explain what a functor is" | Category theory skill | --- ## Computation Scripts ### SymPy (Symbolic Math) ```bash uv run python "$CLAUDE_PROJECT_DIR/.claude/scripts/cc_math/sympy_compute.py" <command> <args> ``` | Command | Description | Example | |---------|-------------|---------| | `solve` | Solve equations | `solve "x**2 - 4" --var x` | | `integrate` | Definite/indefinite integral | `integrate "sin(x)" --var x --lower 0 --upper pi` | | `diff` | Derivative | `diff "x**3" --var x` | | `simplify` | Simplify expression | `simplify "sin(x)**2 + cos(x)**2"` | | `limit` | Compute limit | `limit "sin(x)/x" --var x --point 0` | | `series` | Taylor expansion | `series "exp(x)" --var x --point 0 --n 5` | | `dsolve` | Solve ODE | `dsolve "f''(x) + f(x)" --func f --var x` | | `laplace` | Laplace transform | `laplace "sin(t)" --var t` | **Matrix Operations:** | Command | Description | |---------|-------------| | `det` | Determinant | | `eigenvalues` | Eigenvalues | | `eig...

Details

Author
vibeeval
Repository
vibeeval/vibecosystem
Created
2 months ago
Last Updated
1 months ago
Language
C#
License
MIT

Integrates with

Related Skills