Internal
problem
ID
[10345]
Book
:
First
order
enumerated
odes
Section
:
section
3.
First
order
odes
solved
using
Laplace
method
Problem
number
:
2
Date
solved
:
Tuesday, September 30, 2025 at 07:22:27 PM
CAS
classification
:
[_separable]
Using Laplace method With initial conditions
ode:=diff(y(t),t)-t*y(t) = 0; ic:=[y(0) = 0]; dsolve([ode,op(ic)],y(t),method='laplace');
ode=D[y[t],t]-t*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*y(t) + Derivative(y(t), t),0) ics = {y(0): 0} dsolve(ode,func=y(t),ics=ics)