Internal
problem
ID
[2411]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
2.4,
The
method
of
variation
of
parameters.
Page
154
Problem
number
:
12
Date
solved
:
Sunday, March 30, 2025 at 12:00:42 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(y(t),t),t)-2*t/(t^2+1)*diff(y(t),t)+2/(t^2+1)*y(t) = t^2+1; dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]-2*t/(1+t^2)*D[y[t],t]+2/(1+t^2)*y[t]==1+t^2; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-t**2 - 2*t*Derivative(y(t), t)/(t**2 + 1) + Derivative(y(t), (t, 2)) - 1 + 2*y(t)/(t**2 + 1),0) ics = {} dsolve(ode,func=y(t),ics=ics)
NotImplementedError : The given ODE Derivative(y(t), t) - (t**2*(-t**2 + Derivative(y(t), (t, 2)) - 2) + 2*y(t) + Derivative(y(t), (t, 2)) - 1)/(2*t) cannot be solved by the factorable group method