Agent skill

second-order-odes

Problem-solving strategies for second order odes in odes pdes

parcadei3,879★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill second-order-odes --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: BashRead
Path: .claude/skills/math/odes-pdes/second-order-odes/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Second Order Odes ## When to Use Use this skill when working on second-order-odes problems in odes pdes. ## Decision Tree 1. **Classify the ODE** - Constant coefficients: ay'' + by' + cy = f(x)? - Variable coefficients: y'' + P(x)y' + Q(x)y = R(x)? - Cauchy-Euler: x^2 y'' + bxy' + cy = 0? 2. **Homogeneous with Constant Coefficients** - Characteristic equation: ar^2 + br + c = 0 - Distinct real roots: y = c1*e^{r1*x} + c2*e^{r2*x} - Repeated root: y = (c1 + c2*x)e^{r*x} - Complex roots a +/- bi: y = e^{ax}(c1*cos(bx) + c2*sin(bx)) - `sympy_compute.py solve "a*r**2 + b*r + c" --var r` 3. **Particular Solution (Non-homogeneous)** - Undetermined coefficients: guess based on f(x) - Variation of parameters: y_p = u1*y1 + u2*y2 - `sympy_compute.py dsolve "y'' + y = sin(x)"` 4. **Numerical Solution** - Convert to first-order system: let v = y', then v' = y'' - `solve_ivp(system, [t0, tf], [y0, v0])` 5. **Boundary Value Problems** - Shooting method: guess initial slope, iterate - `scipy.integrate.solve_bvp(ode, bc, x, y_init)` ## Tool Commands ### Scipy_Solve_Ivp_System ```bash uv run python -c "from scipy.integrate import solve_ivp; sol = solve_ivp(lambda t, Y: [Y[1], -Y[0]], [0, 10], [1

What's inside
Steps it walks through
  1. When to Use
  2. Decision Tree
  3. Tool Commands
  4. ScipySolveIvpSystem
  5. SympyCharpoly
  6. SympyDsolve2Nd
  7. Key Techniques
  8. Cognitive Tools Reference
Commands it runs
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"
More from Continuous-Claude-v3
All skills →
About this skill
What does the second-order-odes skill do?

Problem-solving strategies for second order odes in odes pdes

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill second-order-odes --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From parcadei/Continuous-Claude-v3, a repository with 3,879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going