Internal
problem
ID
[22071]
Book
:
Schaums
outline
series.
Differential
Equations
By
Richard
Bronson.
1973.
McGraw-Hill
Inc.
ISBN
0-07-008009-7
Section
:
Chapter
1.
Basic
concepts.
Supplementary
problems
Problem
number
:
1.7
Date
solved
:
Thursday, October 02, 2025 at 08:23:24 PM
CAS
classification
:
[[_high_order, _missing_y]]
ode:=x^4*diff(diff(diff(diff(y(x),x),x),x),x)+x*diff(diff(diff(y(x),x),x),x) = exp(x); dsolve(ode,y(x), singsol=all);
ode=x^4*D[y[x],{x,4}]+x*D[y[x],{x,3}]==Exp[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**4*Derivative(y(x), (x, 4)) + x*Derivative(y(x), (x, 3)) - exp(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out