Internal
problem
ID
[3547]
Book
:
Differential
equations
and
linear
algebra,
Stephen
W.
Goode,
second
edition,
2000
Section
:
1.8,
page
68
Problem
number
:
12
Date
solved
:
Tuesday, March 04, 2025 at 04:45:24 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
ode:=x*diff(y(x),x) = (16*x^2-y(x)^2)^(1/2)+y(x); dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]==Sqrt[16*x^2-y[x]^2]+y[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) - sqrt(16*x**2 - y(x)**2) - y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)