skills/math/numerical-methods/root-finding/SKILL.md
Problem-solving strategies for root finding in numerical methods
npx skillsauth add rubicanjr/FinCognis root-findingInstall 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 root-finding problems in numerical methods.
Characterize the Problem
Method Selection
| Situation | Method | Implementation |
|-----------|--------|----------------|
| Bracketed, no derivatives | Bisection, Brent | scipy.optimize.brentq |
| Derivatives available | Newton-Raphson | scipy.optimize.newton |
| No derivatives | Secant method | scipy.optimize.newton (no fprime) |
| System of equations | scipy.optimize.fsolve | Requires Jacobian ideally |
Implement Root Finding
scipy.optimize.brentq(f, a, b) - guaranteed convergence if bracketedscipy.optimize.newton(f, x0, fprime=df) - quadratic convergence near rootscipy.optimize.fsolve(F, x0)Handle Multiple Roots
sympy_compute.py solve "f(x)" --var x for symbolic solutionsVerify Solutions
z3_solve.py prove "f(root) == 0"uv run python -c "from scipy.optimize import brentq; root = brentq(lambda x: x**2 - 2, 0, 2); print('Root:', root)"
uv run python -c "from scipy.optimize import newton; root = newton(lambda x: x**2 - 2, 1.0, fprime=lambda x: 2*x); print('Root:', root)"
uv run python -m runtime.harness scripts/sympy_compute.py solve "x**3 - x - 1" --var x
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.