Internal
problem
ID
[3524]
Book
:
Differential
equations
and
linear
algebra,
Stephen
W.
Goode,
second
edition,
2000
Section
:
1.4,
page
36
Problem
number
:
10
Date
solved
:
Tuesday, March 04, 2025 at 04:44:19 PM
CAS
classification
:
[_linear]
ode:=diff(y(x),x) = (x^2*y(x)-32)/(-x^2+16)+32; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==(x^2*y[x]-32)/(16-x^2) + 32; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - 32 - (x**2*y(x) - 32)/(16 - x**2),0) ics = {} dsolve(ode,func=y(x),ics=ics)
AssertionError : [False]