Internal
problem
ID
[16291]
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
:
62
(a)
Date
solved
:
Monday, March 31, 2025 at 02:49:43 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
With initial conditions
ode:=t*diff(diff(y(t),t),t)+2*diff(y(t),t)+t*y(t) = -t; ic:=y(Pi) = -1, D(y)(Pi) = -1/Pi; dsolve([ode,ic],y(t), singsol=all);
ode=t*D[y[t],{t,2}]+2*D[y[t],t]+t*y[t]==-t; ic={y[Pi]==-1,Derivative[1][y][Pi]==-1/Pi}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t*y(t) + t*Derivative(y(t), (t, 2)) + t + 2*Derivative(y(t), t),0) ics = {y(pi): -1, Subs(Derivative(y(t), t), t, pi): -1/pi} dsolve(ode,func=y(t),ics=ics)
NotImplementedError : The given ODE -t*(-y(t) - Derivative(y(t), (t, 2)) - 1)/2 + Derivative(y(t), t) cannot be solved by the factorable group method