Internal
problem
ID
[15420]
Book
:
Ordinary
Differential
Equations.
An
introduction
to
the
fundamentals.
Kenneth
B.
Howell.
second
edition.
CRC
Press.
FL,
USA.
2020
Section
:
Chapter
21.
Nonhomogeneous
equations
in
general.
Additional
exercises
page
391
Problem
number
:
21.12
Date
solved
:
Tuesday, January 28, 2025 at 07:55:08 AM
CAS
classification
:
[[_high_order, _missing_x]]
With initial conditions
✓ Solution by Maple
Time used: 0.023 (sec). Leaf size: 20
dsolve([diff(y(x),x$4)+diff(y(x),x$2)=1,y(0) = 4, D(y)(0) = 3, (D@@2)(y)(0) = 0, (D@@3)(y)(0) = 2],y(x), singsol=all)
✓ Solution by Mathematica
Time used: 60.022 (sec). Leaf size: 88
DSolve[{D[y[x],{x,4}]+D[y[x],{x,2}]==1,{y[0]==4,Derivative[1][y][0] ==3,Derivative[2][y][0] ==0,Derivative[3][y][0]==2}},y[x],x,IncludeSingularSolutions -> True]