Internal
problem
ID
[8780]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
68
Date
solved
:
Sunday, March 30, 2025 at 01:35:31 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
ode:=a*y(x)*diff(diff(y(x),x),x)+b*y(x) = c; dsolve(ode,y(x), singsol=all);
ode=a*y[x]*D[y[x],{x,2}]+b*y[x]==c; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(a*y(x)*Derivative(y(x), (x, 2)) + b*y(x) - c,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out