Internal
problem
ID
[10018]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
20
Date
solved
:
Tuesday, September 30, 2025 at 06:46:42 PM
CAS
classification
:
[_Bernoulli]
ode:=diff(y(x),x)+1/3*y(x) = 1/3*(1-2*x)*y(x)^4; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+y[x]/3== (1-2*x)/3*y[x]^4; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((2*x - 1)*y(x)**4/3 + y(x)/3 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)