Internal
problem
ID
[4704]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
4
Problem
number
:
102
Date
solved
:
Sunday, March 30, 2025 at 03:42:44 AM
CAS
classification
:
[_Bernoulli]
ode:=diff(y(x),x)+2*y(x)*(1-x*y(x)^(1/2)) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+2 y[x] (1-x Sqrt[y[x]])==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-2*x*sqrt(y(x)) + 2)*y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)