Internal
problem
ID
[23364]
Book
:
Ordinary
differential
equations
with
modern
applications.
Ladas,
G.
E.
and
Finizio,
N.
Wadsworth
Publishing.
California.
1978.
ISBN
0-534-00552-7.
QA372.F56
Section
:
Chapter
2.
Linear
differential
equations.
Exercise
at
page
65
Problem
number
:
10
Date
solved
:
Thursday, October 02, 2025 at 09:40:34 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _Chini]
ode:=diff(y(x),x)+y(x)^(1/2) = 3*x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+y[x]^(1/2)==3*x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Timed out
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-3*x + sqrt(y(x)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -3*x + sqrt(y(x)) + Derivative(y(x), x) cannot be solved by the