Internal
problem
ID
[8732]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
20
Date
solved
:
Wednesday, March 05, 2025 at 06:42:30 AM
CAS
classification
:
[_Bernoulli]
ode:=diff(y(x),x)+1/3*y(x) = 1/3*(-2*x+1)*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)