Internal
problem
ID
[15917]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Exercises
2.3,
page
49
Problem
number
:
24
Date
solved
:
Monday, March 31, 2025 at 02:13:11 PM
CAS
classification
:
[_linear]
ode:=diff(p(t),t) = t^3+p(t)/t; dsolve(ode,p(t), singsol=all);
ode=D[p[t],t]==t^3+p[t]/t; ic={}; DSolve[{ode,ic},p[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") p = Function("p") ode = Eq(-t**3 + Derivative(p(t), t) - p(t)/t,0) ics = {} dsolve(ode,func=p(t),ics=ics)