Internal
problem
ID
[18893]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
VIII.
Exact
differential
equations,
and
equations
of
particular
forms.
Integration
in
series.
problems
at
page
98
Problem
number
:
Ex.
4
Date
solved
:
Monday, March 31, 2025 at 06:21:01 PM
CAS
classification
:
[[_3rd_order, _missing_y], [_3rd_order, _with_linear_symmetries], [_3rd_order, _reducible, _mu_y2], [_3rd_order, _reducible, _mu_poly_yn]]
ode:=2*x*diff(diff(diff(y(x),x),x),x)*diff(diff(y(x),x),x) = diff(diff(y(x),x),x)^2-a^2; dsolve(ode,y(x), singsol=all);
ode=2*x*D[y[x],{x,3}]*D[y[x],{x,2}]==D[y[x],{x,2}]^2-a^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(a**2 + 2*x*Derivative(y(x), (x, 2))*Derivative(y(x), (x, 3)) - Derivative(y(x), (x, 2))**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out