Internal
problem
ID
[18771]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
III.
Equations
of
the
first
order
but
not
of
the
first
degree.
Examples
on
chapter
III.
page
38
Problem
number
:
Ex.
22
Date
solved
:
Monday, March 31, 2025 at 06:10:04 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