Internal
problem
ID
[18464]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
1.
section
5.
Problems
at
page
19
Problem
number
:
6
Date
solved
:
Monday, March 31, 2025 at 05:30:02 PM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = 1/x*(1-y(x)^2)^(1/2)*arcsin(y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==1/x*Sqrt[1-y[x]^2]*ArcSin[y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - sqrt(1 - y(x)**2)*asin(y(x))/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)