second-order-odes
Problem-solving strategies for second order odes in odes pdes
Install
mkdir -p .claude/skills/second-order-odes && curl -L -o skill.zip "https://mcp.directory/api/skills/download/8413" && unzip -o skill.zip -d .claude/skills/second-order-odes && rm skill.zipInstalls to .claude/skills/second-order-odes
About this skill
Second Order Odes
When to Use
Use this skill when working on second-order-odes problems in odes pdes.
Decision Tree
-
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?
-
Homogeneous with Constant Coefficients
- Characteristic equation: ar^2 + br + c = 0
- Distinct real roots: y = c1e^{r1x} + c2e^{r2x}
- Repeated root: y = (c1 + c2x)e^{rx}
- Complex roots a +/- bi: y = e^{ax}(c1cos(bx) + c2sin(bx))
sympy_compute.py solve "a*r**2 + b*r + c" --var r
-
Particular Solution (Non-homogeneous)
- Undetermined coefficients: guess based on f(x)
- Variation of parameters: y_p = u1y1 + u2y2
sympy_compute.py dsolve "y'' + y = sin(x)"
-
Numerical Solution
- Convert to first-order system: let v = y', then v' = y''
solve_ivp(system, [t0, tf], [y0, v0])
-
Boundary Value Problems
- Shooting method: guess initial slope, iterate
scipy.integrate.solve_bvp(ode, bc, x, y_init)
Tool Commands
Scipy_Solve_Ivp_System
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])"
Sympy_Charpoly
uv run python -m runtime.harness scripts/sympy_compute.py solve "r**2 + r + 1" --var r
Sympy_Dsolve_2Nd
uv run python -m runtime.harness scripts/sympy_compute.py dsolve "Derivative(y,x,2) + y"
Key Techniques
From indexed textbooks:
- [An Introduction to Numerical Analysis... (Z-Library)] Modern Numerical Methods for Ordinary Wiley, New York. User's guide for DVERK: A subroutine for solving non-stiff ODEs. Keller (1966), Analysis of Numerical Methods.
- [Elementary Differential Equations and... (Z-Library)] Riccati equation and that y1(t) = 1 is one solution. Use the transformation suggested in Problem 33, and nd the linear equation satised by v(t). Find v(t) in the case that x(t) = at, where a is a constant.
- [An Introduction to Numerical Analysis... (Z-Library)] Test results on initial value methods for non-stiff ordinary differential equations, SIAM J. Comparing numerical methods for Fehlberg, E. Klassische Runge-Kutta-Formeln vierter und niedrigerer Ordnumg mit Schrittweiten-Kontrolle und ihre Anwendung auf Warme leitungsprobleme, Computing 6, 61-71.
- [Elementary Differential Equations and... (Z-Library)] Two papers by Robert May cited in the text are R. May,“Biological Populations with Nonoverlapping Generations: Stable Points, Stable Cycles, and Chaos,” Science 186 (1974), pp. Biological Populations Obeying Difference Equations: Stable Points, Stable Cycles, and Chaos,” Journal of Theoretical Biology 51 (1975), pp.
- [An Introduction to Numerical Analysis... (Z-Library)] COLSYS: collocation software for boundary-value ODEs, ACM Trans. Numerical Solutions of Boundary Value Problems for Ordinary Differential Equations. Elementary Differential Equations and Boundary Value Problems, 4th ed.
Cognitive Tools Reference
See .claude/skills/math-mode/SKILL.md for full tool documentation.
More by parcadei
View all skills by parcadei →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
pdf-to-markdown
aliceisjustplaying
Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.
Related MCP Servers
Browse all serversTrade Robinhood via Claude with natural language - portfolio analysis, quotes, buy/sell orders, and automated trading st
Enhance software testing with Playwright MCP: Fast, reliable browser automation, an innovative alternative to Selenium s
n8n offers conversational workflow automation, enabling seamless software workflow creation and management without platf
Connect Supabase projects to AI with Supabase MCP Server. Standardize LLM communication for secure, efficient developmen
Leverage structured decision making and advanced problem solving techniques for step-by-step analysis and adaptive strat
Fast, local-first web content extraction for LLMs. Scrape, crawl, extract structured data — all from Rust. CLI, REST API
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.