Problem-solving strategies for numerical integration in numerical methods
Use this skill when working on numerical-integration problems in numerical methods.
Identify Integral Type
Select Quadrature Method
scipy.integrate.quad(f, a, b) for general 1DAdaptive Integration
scipy.integrate.quad(f, a, b, epsabs=1e-8, epsrel=1e-8)Multiple Dimensions
scipy.integrate.dblquad for 2Dscipy.integrate.tplquad for 3DVerify Accuracy
sympy_compute.py integrate "f(x)" --var x --from a --to buv run python -c "from scipy.integrate import quad; import numpy as np; result, err = quad(lambda x: np.sin(x), 0, np.pi); print('Integral:', result, 'Error:', err)"
uv run python -c "from scipy.integrate import dblquad; result, err = dblquad(lambda y, x: x*y, 0, 1, 0, 1); print('Integral:', result)"
uv run python -m runtime.harness scripts/sympy_compute.py integrate "sin(x)" --var x --from 0 --to "pi"
From indexed textbooks:
See .claude/skills/math-mode/SKILL.md for full tool documentation.
npx skills add parcadei/numerical-integration下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Use CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
Best practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).
Start voice calls via the OpenClaw voice-call plugin.
Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading/injecting/running secrets via op.
BluOS CLI (blu) for discovery, playback, grouping, and volume.
Category:developer