Internal
problem
ID
[13295]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
Miscellaneous
Review.
Exercises
page
60
Problem
number
:
16
Date
solved
:
Monday, March 31, 2025 at 07:47:12 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=2*y(x)^2+8+(-x^2+1)*y(x)*diff(y(x),x) = 0; ic:=y(3) = 0; dsolve([ode,ic],y(x), singsol=all);
ode=2*(y[x]^2+4)+(1-x^2)*y[x]*D[y[x],x]==0; ic={y[3]==0}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((1 - x**2)*y(x)*Derivative(y(x), x) + 2*y(x)**2 + 8,0) ics = {y(3): 0} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : Initial conditions produced too many solutions for constants