Internal
problem
ID
[18901]
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
101
Problem
number
:
Ex.
1
Date
solved
:
Monday, March 31, 2025 at 06:21:23 PM
CAS
classification
:
[[_2nd_order, _missing_y], [_2nd_order, _exact, _nonlinear], [_2nd_order, _reducible, _mu_y_y1], [_2nd_order, _reducible, _mu_poly_yn]]
ode:=a^2*diff(diff(y(x),x),x)*diff(y(x),x) = x; dsolve(ode,y(x), singsol=all);
ode=a^2*D[y[x],{x,2}]*D[y[x],x]==x; 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*Derivative(y(x), x)*Derivative(y(x), (x, 2)) - x,0) ics = {} dsolve(ode,func=y(x),ics=ics)