Internal
problem
ID
[18748]
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.
Problems
at
page
37
Problem
number
:
Ex.
3
Date
solved
:
Monday, March 31, 2025 at 06:07:34 PM
CAS
classification
:
[_Clairaut]
ode:=y(x) = x*diff(y(x),x)+arcsin(diff(y(x),x)); dsolve(ode,y(x), singsol=all);
ode=y[x]==x*D[y[x],x]+ArcSin[D[y[x],x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*Derivative(y(x), x) + y(x) - asin(Derivative(y(x), x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : multiple generators [_X0, asin(_X0)] No algorithms are implemented to solve equation -_X0*x + y(x) - asin(_X0)