Internal
problem
ID
[19323]
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
:
3
Date
solved
:
Thursday, March 13, 2025 at 02:15:55 PM
CAS
classification
:
[[_3rd_order, _missing_x], [_3rd_order, _missing_y], [_3rd_order, _exact, _nonlinear], [_3rd_order, _with_linear_symmetries], [_3rd_order, _reducible, _mu_y2], [_3rd_order, _reducible, _mu_poly_yn]]
ode:=diff(diff(diff(y(x),x),x),x)*diff(diff(y(x),x),x) = 2; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]*D[y[x],{x,2}]==2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), (x, 2))*Derivative(y(x), (x, 3)) - 2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out