Internal
problem
ID
[9063]
Book
:
First
order
enumerated
odes
Section
:
section
3.
First
order
odes
solved
using
Laplace
method
Problem
number
:
6
Date
solved
:
Sunday, March 30, 2025 at 02:06:00 PM
CAS
classification
:
[_separable]
Solve
Since no initial condition is explicitly given, then let
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
The above ode in Y(s) is now solved.
Since the ode has the form
Applying inverse Laplace transform on the above gives.
Substituting initial conditions
Solving for the constant
Substituting the above back into the solution (1) gives
ode:=diff(y(t),t)*t+y(t) = 0; dsolve(ode,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=t*D[y[t],t]+y[t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t*Derivative(y(t), t) + y(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)