Internal
problem
ID
[16824]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Section
12.
Miscellaneous
problems.
Exercises
page
93
Problem
number
:
303
Date
solved
:
Monday, March 31, 2025 at 03:23:14 PM
CAS
classification
:
[[_homogeneous, `class C`], _rational, [_Abel, `2nd type`, `class A`]]
ode:=(3*x+3*y(x)+a^2)*diff(y(x),x) = 4*x+4*y(x)+b^2; dsolve(ode,y(x), singsol=all);
ode=(3*(x+y[x])+a^2)*D[y[x],x]==4*(x+y[x])+b^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(-b**2 - 4*x + (a**2 + 3*x + 3*y(x))*Derivative(y(x), x) - 4*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)