Internal
problem
ID
[19526]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Book
Solved
Excercises.
Chapter
VII.
Exact
differential
equations.
Problem
number
:
Ex
13
page
108
Date
solved
:
Thursday, March 13, 2025 at 02:47:43 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(y(x),x),x)+diff(y(x),x)+diff(y(x),x)^3 = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+D[y[x],x]+D[y[x],x]^3==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x)**3 + Derivative(y(x), x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)