Internal
problem
ID
[9068]
Book
:
First
order
enumerated
odes
Section
:
section
3.
First
order
odes
solved
using
Laplace
method
Problem
number
:
11
Date
solved
:
Sunday, March 30, 2025 at 02:06:07 PM
CAS
classification
:
[_separable]
Solve
With initial conditions
We will now apply Laplace transform to each term in the ode. Since this is time varying, the following Laplace transform property will be used
Where in the above
Collecting all the terms above, the ode in Laplace domain becomes
Replacing
The above ode in Y(s) is now solved.
This is Airy ODE. It has the general form
Where in this case
Therefore the solution to the homogeneous Airy ODE becomes
Will add steps showing solving for IC soon.
Applying inverse Laplace transform on the above gives.
Substituting initial conditions
Solving for the constant
Substituting the above back into the solution (1) gives
| |
Solution plot | Slope field |
ode:=t^2*y(t)+diff(y(t),t) = 0; ic:=y(0) = 0; dsolve([ode,ic],y(t),method='laplace');
Maple trace
Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear <- 1st order linear successful
Maple step by step
ode=D[y[t],t]+t^2*y[t]==0; ic=y[0]==0; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t**2*y(t) + Derivative(y(t), t),0) ics = {y(0): 0} dsolve(ode,func=y(t),ics=ics)