A Python script designed to solve first and second-order ordinary differential equations (ODEs). This project was developed as part of a classroom activity, showcasing practical examples of differential equations.
The Calculadora EDO is a script that allows users to solve first and second-order differential equations interactively by inputting coefficients and functions. Although initially envisioned as a web application, this project is currently available as a Python script.
- General form:
A * dy/dx + B * y = C
- General form:
A * dΒ²y/dxΒ² + B * dy/dx + C * y = D
- Interactive input for equation coefficients.
- Solves:
- First-order ODEs
- Second-order ODEs
- Built using Pythonβs mathematical capabilities.
- Easy-to-understand syntax and design.
-
Ensure you have Python 3.x installed on your system.
-
Clone the repository:
git clone https://github.com/oalbertocavalcante/calculadora-edo
General form: A * dy/dx + B * y = C
A = 2,B = 3C = e^x + 0
A = 1,B = -1C = x^2
General form: A * dΒ²y/dxΒ² + B * dy/dx + C * y = D
A = 1,B = 2,C = 1D = e^(2x) + 0
A = 1,B = -3,C = 2D = sin(x)
- Python: Version 3.x or later.
- No additional libraries required.
This project was developed collaboratively as part of a group activity:
- Alberto CΓ΄rtes - LinkedIn
- Lucas Machado
- Google Colab: Open in Colab
- YouTube Demonstration: Watch on YouTube