Internal
problem
ID
[10347]
Book
:
First
order
enumerated
odes
Section
:
section
3.
First
order
odes
solved
using
Laplace
method
Problem
number
:
4
Date
solved
:
Tuesday, September 30, 2025 at 07:22:28 PM
CAS
classification
:
[_separable]
Using Laplace method With initial conditions
ode:=t*diff(y(t),t)+y(t) = 0; ic:=[y(0) = y__0]; dsolve([ode,op(ic)],y(t),method='laplace');
ode=t*D[y[t],t]+y[t]==0; ic=y[0]==y0; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
Not solved
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t*Derivative(y(t), t) + y(t),0) ics = {y(0): y__0} dsolve(ode,func=y(t),ics=ics)