Internal
problem
ID
[13708]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
17,
Reduction
of
order.
Exercises
page
162
Problem
number
:
17.4
Date
solved
:
Wednesday, March 05, 2025 at 10:13:23 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Using reduction of order method given that one solution is
ode:=(-t^2+t)*diff(diff(x(t),t),t)+(-t^2+2)*diff(x(t),t)+(-t+2)*x(t) = 0; dsolve(ode,x(t), singsol=all);
ode=(t-t^2)*D[x[t],{t,2}]+(2-t^2)*D[x[t],t]+(2-t)*x[t]==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq((2 - t)*x(t) + (2 - t**2)*Derivative(x(t), t) + (-t**2 + t)*Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics)