Internal
problem
ID
[19841]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
31.
Problems
at
page
85
Problem
number
:
4
Date
solved
:
Thursday, October 02, 2025 at 04:48:09 PM
CAS
classification
:
[_linear]
ode:=diff(p(t),t) = (p(t)+a*t^3-2*p(t)*t^2)/t/(-t^2+1); dsolve(ode,p(t), singsol=all);
ode=D[p[t],t]==(p[t]+a*t^3-2*p[t]*t^2 )/(t*(1-t^2)); ic={}; DSolve[{ode,ic},p[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") a = symbols("a") p = Function("p") ode = Eq(Derivative(p(t), t) - (a*t**3 - 2*t**2*p(t) + p(t))/(t*(1 - t**2)),0) ics = {} dsolve(ode,func=p(t),ics=ics)