Problem-solving strategies for first order odes in odes pdes
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.