Internal
problem
ID
[19322]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Chapter
VII.
Exact
differential
equations
and
certain
particular
forms
of
equations.
Exercise
VII
(F)
at
page
113
Problem
number
:
2
Date
solved
:
Thursday, March 13, 2025 at 02:15:53 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)