skills/math/numerical-methods/numerical-integration/SKILL.md
Problem-solving strategies for numerical integration in numerical methods
npx skillsauth add rubicanjr/FinCognis numerical-integrationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
development
Goal-based workflow orchestration - routes tasks to specialist agents based on user goals
tools
Wiring Verification
development
Connection management, room patterns, reconnection strategies, message buffering, and binary protocol design.
development
Screenshot comparison QA for frontend development. Takes a screenshot of the current implementation, scores it across multiple visual dimensions, and returns a structured PASS/REVISE/FAIL verdict with concrete fixes. Use when implementing UI from a design reference or verifying visual correctness.