Internal
problem
ID
[17090]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
1.
Introduction
to
Differential
Equations.
Exercises
1.1,
page
10
Problem
number
:
30
Date
solved
:
Thursday, October 02, 2025 at 01:42:56 PM
CAS
classification
:
[[_homogeneous, `class G`], _exact, _rational, [_Abel, `2nd type`, `class B`]]
ode:=3*y(t)*(t^2+y(t))+t*(t^2+6*y(t))*diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=3*y[t]*(t^2+y[t])+t*(t^2+6*y[t])*D[y[t],t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t*(t**2 + 6*y(t))*Derivative(y(t), t) + (3*t**2 + 3*y(t))*y(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)