Internal
problem
ID
[16439]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
4.
Higher
Order
Equations.
Exercises
4.6,
page
187
Problem
number
:
34
Date
solved
:
Tuesday, January 28, 2025 at 09:07:59 AM
CAS
classification
:
[[_high_order, _missing_y]]
With initial conditions
✓ Solution by Maple
Time used: 0.043 (sec). Leaf size: 24
dsolve([t*diff(y(t),t$4)+2*diff(y(t),t$3)=45/8*1/t^(7/2),y(1) = 0, D(y)(1) = 0, (D@@2)(y)(1) = 1, (D@@3)(y)(1) = 0],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.095 (sec). Leaf size: 31
DSolve[{t*D[y[t],{t,4}]+2*D[ y[t],{t,3}]==45/8*1/t^(7/2),{y[1]==0,Derivative[1][y][1]==0,Derivative[2][y][1]==1,Derivative[3][y][1]==0}},y[t],t,IncludeSingularSolutions -> True]