Internal
problem
ID
[18649]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
II.
Equations
of
the
first
order
and
of
the
first
degree.
Exercises
at
page
14
Problem
number
:
Ex.
2
Date
solved
:
Thursday, March 13, 2025 at 12:27:20 PM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]
ode:=diff(y(x),x)+((1-y(x)^2)/(-x^2+1))^(1/2) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+Sqrt[ (1-y[x]^2)/(1-x^2)]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(sqrt((1 - y(x)**2)/(1 - x**2)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)