with one click
second-order-odes
Problem-solving strategies for second order odes in odes pdes
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Problem-solving strategies for second order odes in odes pdes
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Create git commits with user approval and no Claude attribution
Create or update continuity ledger for state preservation across clears
Create handoff document for transferring work to another session
Generate comprehensive PR descriptions following repository templates
Deep interview process to transform vague ideas into detailed specs. Works for technical and non-technical users.
Search Mathlib for lemmas by type signature pattern
| name | second-order-odes |
| description | Problem-solving strategies for second order odes in odes pdes |
| allowed-tools | ["Bash","Read"] |
Use this skill when working on second-order-odes problems in odes pdes.
Classify the ODE
Homogeneous with Constant Coefficients
sympy_compute.py solve "a*r**2 + b*r + c" --var rParticular Solution (Non-homogeneous)
sympy_compute.py dsolve "y'' + y = sin(x)"Numerical Solution
solve_ivp(system, [t0, tf], [y0, v0])Boundary Value Problems
scipy.integrate.solve_bvp(ode, bc, x, y_init)uv run python -c "from scipy.integrate import solve_ivp; sol = solve_ivp(lambda t, Y: [Y[1], -Y[0]], [0, 10], [1, 0]); print('y(10) =', sol.y[0][-1])"
uv run python -m runtime.harness scripts/sympy_compute.py solve "r**2 + r + 1" --var r
uv run python -m runtime.harness scripts/sympy_compute.py dsolve "Derivative(y,x,2) + y"
From indexed textbooks:
See .claude/skills/math-mode/SKILL.md for full tool documentation.