Internal
problem
ID
[18737]
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
33
Problem
number
:
Ex.
2
Date
solved
:
Monday, March 31, 2025 at 06:05:27 PM
CAS
classification
:
[_quadrature]
ode:=y(x) = -a*diff(y(x),x)+1/(1-diff(y(x),x)^2)^(1/2)*(c+a*arcsin(diff(y(x),x))); dsolve(ode,y(x), singsol=all);
ode=y[x]==-a*D[y[x],x]+1/Sqrt[1-D[y[x],x]^2]*(c+a*ArcSin[D[y[x],x]]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") c = symbols("c") y = Function("y") ode = Eq(a*Derivative(y(x), x) + y(x) - (a*asin(Derivative(y(x), x)) + c)/sqrt(1 - Derivative(y(x), x)**2),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : multiple generators [_X0, asin(_X0), sqrt(1 - _X0**2)] No algorithms are implemented to solve equation _X0*a*sqrt(1 - _X0**2) - a*asin(_X0) - c + sqrt(1 - _X0**2)*y(x)