Agent skill

symbolic-computation-guide

Computer algebra systems: SymPy, SageMath, and Mathematica for research

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill symbolic-computation-guide --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/43-wentorai-research-plugins/skills/domains/math/symbolic-computation-guide/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,244
Language: Stata
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Symbolic Computation Guide A skill for using computer algebra systems (CAS) in mathematical research. Covers symbolic differentiation, integration, equation solving, series expansion, linear algebra, and polynomial arithmetic using SymPy, SageMath, and Mathematica, with practical workflows for research mathematics. ## SymPy Fundamentals ### Symbolic Expressions and Manipulation ```python from sympy import ( symbols, expand, factor, simplify, cancel, apart, sin, cos, exp, log, sqrt, pi, oo, I, Rational, Eq, solve, solveset, S ) x, y, z, t, n, k = symbols("x y z t n k") a, b, c = symbols("a b c", real=True) # Expression manipulation expr = (x + 1) ** 3 expanded = expand(expr) # x**3 + 3*x**2 + 3*x + 1 factored = factor(expanded) # (x + 1)**3 # Trigonometric simplification from sympy import trigsimp trig_expr = sin(x)**2 + cos(x)**2 simplified = trigsimp(trig_expr) # 1 # Partial fraction decomposition rational = (x**2 + 2*x + 3) / ((x + 1) * (x + 2) * (x + 3)) partial = apart(rational, x) # 3/(2*(x + 3)) - 2/(x + 2) + 1/(2*(x + 1)) ``` ### Calculus ```python from sympy import diff, integrate, limit, series, Sum, Product # Differentiation f = x**3 * exp(-x) * sin(x) f_prime = diff(f,

What's inside
Steps it walks through
  1. SymPy Fundamentals
  2. Symbolic Expressions and Manipulation
  3. Calculus
  4. Equation Solving
  5. Linear Algebra
  6. Symbolic Matrix Operations
  7. SageMath for Research
  8. Number Theory
  9. Combinatorics and Graph Theory
  10. Mathematica / Wolfram Language
  11. Common Research Patterns
  12. Practical Workflows
  13. Verifying Research Computations
  14. Tools and Resources
More from Auto-Empirical-Research-Skills
All skills →
About this skill
What does the symbolic-computation-guide skill do?

Computer algebra systems: SymPy, SageMath, and Mathematica for research

How do I install it?

Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill symbolic-computation-guide --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going