Internal
problem
ID
[6995]
Book
:
A
First
Course
in
Differential
Equations
with
Modeling
Applications
by
Dennis
G.
Zill.
12
ed.
Metric
version.
2024.
Cengage
learning.
Section
:
Chapter
1.
Introduction
to
differential
equations.
Review
problems
at
page
34
Problem
number
:
22
Date
solved
:
Sunday, March 30, 2025 at 11:33:23 AM
CAS
classification
:
[_Chini]
With initial conditions
ode:=diff(y(x),x) = 6*y(x)^(1/2)+5*x^3; ic:=y(-1) = 4; dsolve([ode,ic],y(x), singsol=all);
ode=D[y[x],x]==6*Sqrt[y[x]]+5*x^3; ic={y[-1]==4}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-5*x**3 - 6*sqrt(y(x)) + Derivative(y(x), x),0) ics = {y(-1): 4} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -5*x**3 - 6*sqrt(y(x)) + Derivative(y(x), x) cannot be solved by the lie group method