Continuous-Claude-v3 limits
Problem-solving strategies for limits in real analysis
install
source · Clone the upstream repo
git clone https://github.com/parcadei/Continuous-Claude-v3
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/parcadei/Continuous-Claude-v3 "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/math/real-analysis/limits" ~/.claude/skills/parcadei-continuous-claude-v3-limits && rm -rf "$T"
manifest:
.claude/skills/math/real-analysis/limits/SKILL.mdsource content
Limits
When to Use
Use this skill when working on limits problems in real analysis.
Decision Tree
-
Direct Substitution
- Try plugging in the value directly
- If you get a determinate form, that's the answer
-
Indeterminate Form? (0/0, inf/inf)
- Try algebraic manipulation (factor, rationalize)
- Try L'Hopital's rule:
on numerator/denominatorsympy_compute.py diff
-
Squeeze Theorem
- If bounded: find g(x) <= f(x) <= h(x) where lim g = lim h
- Verify bounds with
z3_solve.py prove
-
Epsilon-Delta Proof
- For rigorous proof: set up |f(x) - L| < epsilon
- Find delta in terms of epsilon
- Verify with
math_scratchpad.py verify
Tool Commands
Sympy_Limit
uv run python -m runtime.harness scripts/sympy_compute.py limit "sin(x)/x" --var x --at 0
Sympy_Diff
uv run python -m runtime.harness scripts/sympy_compute.py diff "x**2" --var x
Z3_Prove
uv run python -m runtime.harness scripts/z3_solve.py prove "limit_bound" --vars x
Cognitive Tools Reference
See
.claude/skills/math-mode/SKILL.md for full tool documentation.