Internal
problem
ID
[8859]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
3.0
Problem
number
:
1
Date
solved
:
Wednesday, March 05, 2025 at 06:56:29 AM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(y(x),x),x)+c*diff(y(x),x)+k*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]-x^3*D[y[x],x]-x^2*y[x]-x^3==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") c = symbols("c") k = symbols("k") y = Function("y") ode = Eq(c*Derivative(y(x), x) + k*y(x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)