Internal
problem
ID
[2988]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
11,
page
45
Problem
number
:
7
Date
solved
:
Sunday, March 30, 2025 at 01:03:43 AM
CAS
classification
:
[[_homogeneous, `class G`], _rational, _Bernoulli]
ode:=t*diff(x(t),t)+x(t)*(1-x(t)^2*t^4) = 0; dsolve(ode,x(t), singsol=all);
ode=t*D[x[t],t]+x[t]*(1-x[t]^2*t^4)==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(t*Derivative(x(t), t) + (-t**4*x(t)**2 + 1)*x(t),0) ics = {} dsolve(ode,func=x(t),ics=ics)