Internal
problem
ID
[19479]
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
IV.
Equations
of
the
first
order
but
not
of
the
first
degree
Problem
number
:
Ex
7
page
54
Date
solved
:
Monday, March 31, 2025 at 07:21:45 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=diff(y(x),x)^3+m*diff(y(x),x)^2 = a*(y(x)+m*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]^3+m*D[y[x],x]^2==a*(y[x]+m*x); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Timed out
from sympy import * x = symbols("x") a = symbols("a") m = symbols("m") y = Function("y") ode = Eq(-a*(m*x + y(x)) + m*Derivative(y(x), x)**2 + Derivative(y(x), x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out