Agent skill
convergence
Problem-solving strategies for convergence in real analysis
Install this agent skill to your Project
npx add-skill https://github.com/parcadei/Continuous-Claude-v3/tree/main/.claude/skills/math/real-analysis/convergence
SKILL.md
Convergence
When to Use
Use this skill when working on convergence problems in real analysis.
Decision Tree
-
Identify Sequence/Series Type
- Geometric series: |r| < 1 converges
- p-series: p > 1 converges
- Alternating series: check decreasing + limit 0
-
Apply Convergence Tests
- Ratio test:
sympy_compute.py limit "a_{n+1}/a_n" - Root test:
sympy_compute.py limit "a_n^(1/n)" - Comparison test: find bounding series
- Ratio test:
-
Verify Bounds
- Use
z3_solve.py provefor inequality bounds - Check monotonicity with derivatives
- Use
-
Compute Sum (if convergent)
sympy_compute.py sum "a_n" --var n --from 0 --to oo
Tool Commands
Sympy_Limit
uv run python -m runtime.harness scripts/sympy_compute.py limit "a_n" --var n --at oo
Sympy_Sum
uv run python -m runtime.harness scripts/sympy_compute.py sum "1/n**2" --var n --from 1 --to oo
Z3_Prove
uv run python -m runtime.harness scripts/z3_solve.py prove "series_bounded"
Cognitive Tools Reference
See .claude/skills/math-mode/SKILL.md for full tool documentation.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
tdd-migration-pipeline
Orchestrator-only workflow for migrating/rewriting codebases with full TDD and agent delegation
agentica-prompts
Write reliable prompts for Agentica/REPL agents that avoid LLM instruction ambiguity
planning-agent
Planning agent that creates implementation plans and handoffs from conversation context
recall
Query the memory system for relevant learnings from past sessions
implement_task
Implementation agent that executes a single task and creates handoff on completion
braintrust-tracing
Braintrust tracing for Claude Code - hook architecture, sub-agent correlation, debugging
Didn't find tool you were looking for?