Internal
problem
ID
[2346]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.9.
Page
66
Problem
number
:
11
Date
solved
:
Saturday, March 29, 2025 at 11:57:59 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, [_Abel, `2nd type`, `class B`]]
With initial conditions
ode:=3*t*y(t)+y(t)^2+(t^2+t*y(t))*diff(y(t),t) = 0; ic:=y(2) = 1; dsolve([ode,ic],y(t), singsol=all);
ode=3*t*y[t]+y[t]^2+(t^2+t*y[t])*D[y[t],t] == 0; ic=y[2]==1; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(3*t*y(t) + (t**2 + t*y(t))*Derivative(y(t), t) + y(t)**2,0) ics = {y(2): 1} dsolve(ode,func=y(t),ics=ics)