Agent skill

numerical-methods-guide

Apply numerical methods and scientific computing techniques

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill numerical-methods-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/numerical-methods-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

# Numerical Methods Guide A skill for applying numerical methods in scientific computing and research. Covers root finding, numerical integration, ODE solvers, optimization, interpolation, and error analysis with practical implementations in Python. ## Root Finding ### Newton's Method and Alternatives ```python import numpy as np def newton_method(f, df, x0: float, tol: float = 1e-10, max_iter: int = 100) -> dict: """ Newton's method for finding roots of f(x) = 0. Args: f: Function whose root we seek df: Derivative of f x0: Initial guess tol: Convergence tolerance max_iter: Maximum iterations """ x = x0 history = [x] for i in range(max_iter): fx = f(x) dfx = df(x) if abs(dfx) < 1e-15: return {"root": x, "converged": False, "reason": "Zero derivative encountered"} x_new = x - fx / dfx history.append(x_new) if abs(x_new - x) < tol: return { "root": x_new, "converged": True, "iterations": i + 1, "f_at_root": f(x_new), "convergence": "quadratic" } x = x_new return {"root": x, "converged": False, "reason": "Max iterations reached"} ``` ### Method Selection Guide | Method | Convergence | Requires | Robustness | |--------|------------|----------|-----------| | Bisection | Linear (slow) |

What's inside
Steps it walks through
  1. Root Finding
  2. Newton's Method and Alternatives
  3. Method Selection Guide
  4. Numerical Integration
  5. Quadrature Methods
  6. Ordinary Differential Equations
  7. Solving Initial Value Problems
  8. Solver Selection
  9. Optimization
  10. Minimization Methods
  11. Error Analysis
  12. Sources of Numerical Error
More from Auto-Empirical-Research-Skills
All skills →
About this skill
What does the numerical-methods-guide skill do?

Apply numerical methods and scientific computing techniques

How do I install it?

Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill numerical-methods-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