Internal
problem
ID
[8798]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
85
Date
solved
:
Sunday, March 30, 2025 at 01:37:39 PM
CAS
classification
:
[_Bernoulli]
With initial conditions
ode:=diff(y(x),x) = 2*y(x)*(x*y(x)^(1/2)-1); ic:=y(0) = 1; dsolve([ode,ic],y(x), singsol=all);
ode=D[y[x],x]==2*y[x]*(x*Sqrt[y[x]-1]); ic={y[0]==1}; 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 = {y(0): 1} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : Initial conditions produced too many solutions for constants