Internal
problem
ID
[5320]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
25
Problem
number
:
730
Date
solved
:
Friday, March 14, 2025 at 01:29:57 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=x*(1-(x^2-y(x)^2)^(1/2))*diff(y(x),x) = y(x); dsolve(ode,y(x), singsol=all);
ode=x*(1-Sqrt[x^2-y[x]^2])*D[y[x],x]==y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*(1 - sqrt(x**2 - y(x)**2))*Derivative(y(x), x) - y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out