Internal
problem
ID
[16366]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
4.
Higher
Order
Equations.
Exercises
4.4,
page
163
Problem
number
:
65
Date
solved
:
Tuesday, January 28, 2025 at 09:07:07 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
With initial conditions
✓ Solution by Maple
Time used: 1.381 (sec). Leaf size: 29
dsolve([(sin(t)-t*cos(t))*diff(y(t),t$2)-t*sin(t)*diff(y(t),t)+sin(t)*y(t)=t,y(1/4*Pi) = 0, D(y)(1/4*Pi) = 0],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.733 (sec). Leaf size: 109
DSolve[{(Sin[t]-t*Cos[t])*D[y[t],{t,2}]-t*Sin[t]*D[y[t],t]+Sin[t]*y[t]==t,{y[Pi/4]==0,Derivative[1][y][Pi/4]==0}},y[t],t,IncludeSingularSolutions -> True]