skills/math/odes-pdes/first-order-odes/SKILL.md
Problem-solving strategies for first order odes in odes pdes
npx skillsauth add vibeeval/vibecosystem first-order-odesInstall 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 first-order-odes problems in odes pdes.
Classify the ODE
Select Solution Method | Type | Method | |------|--------| | Separable | Separate and integrate | | Linear | Integrating factor e^{int P dx} | | Exact | Find potential function | | Bernoulli | Substitute v = y^{1-n} |
Numerical Solution (IVP)
scipy.integrate.solve_ivp(f, [t0, tf], y0, method='RK45')method='Radau' or method='BDF'Verify Solution
sympy_compute.py dsolve "y' + y = x" --ics "{y(0): 1}"Phase Portrait (Autonomous)
z3_solve.py solve "dy/dt == 0"uv run python -c "from scipy.integrate import solve_ivp; sol = solve_ivp(lambda t, y: -y, [0, 5], [1]); print('y(5) =', sol.y[0][-1])"
uv run python -m runtime.harness scripts/sympy_compute.py dsolve "Derivative(y,x) + y" --ics "{y(0): 1}"
uv run python -m runtime.harness scripts/z3_solve.py solve "f(y_star) == 0"
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.
testing
VP Engineering perspective - org design (team topologies), process improvement, cross-team dependencies, engineering culture, OKRs, incident management maturity, platform strategy, DX optimization, release management at scale