Internal
problem
ID
[4084]
Book
:
Differential
equations,
Shepley
L.
Ross,
1964
Section
:
2.4,
page
55
Problem
number
:
8
Date
solved
:
Sunday, March 30, 2025 at 02:16:48 AM
CAS
classification
:
[[_homogeneous, `class C`], _exact, _rational, [_Abel, `2nd type`, `class A`]]
With initial conditions
ode:=6*x+4*y(x)+1+(4*x+2*y(x)+2)*diff(y(x),x) = 0; ic:=y(1/2) = 3; dsolve([ode,ic],y(x), singsol=all);
ode=(6*x+4*y[x]+1)+(4*x+2*y[x]+2)*D[y[x],x]==0; ic=y[1/2]==3; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(6*x + (4*x + 2*y(x) + 2)*Derivative(y(x), x) + 4*y(x) + 1,0) ics = {y(1/2): 3} dsolve(ode,func=y(x),ics=ics)