Internal
problem
ID
[1220]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Miscellaneous
problems,
end
of
chapter
2.
Page
133
Problem
number
:
3
Date
solved
:
Thursday, March 13, 2025 at 03:55:30 PM
CAS
classification
:
[_rational]
With initial conditions
ode:=diff(y(x),x) = (2*x+y(x))/(3-x+3*y(x)^2); ic:=y(0) = 0; dsolve([ode,ic],y(x), singsol=all);
ode=D[y[x],x] == (2*x+y[x])/(3-x+3*y[x]^2); ic=y[0]==0; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-2*x - y(x))/(-x + 3*y(x)**2 + 3) + Derivative(y(x), x),0) ics = {y(0): 0} dsolve(ode,func=y(x),ics=ics)
Timed Out