Internal
problem
ID
[13604]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
11,
The
nth
order
homogeneous
linear
differential
equation.
Section
11.8,
Exercises
page
583
Problem
number
:
4(c)
Date
solved
:
Monday, March 31, 2025 at 08:02:26 AM
CAS
classification
:
[_Lienard]
ode:=diff(diff(x(t),t),t)-tan(t)*diff(x(t),t)+x(t) = 0; dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,2}]-Tan[t]*D[x[t],t]+x[t]==0; ic={}; DSolve[{ode,ic},{x[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(x(t) - tan(t)*Derivative(x(t), t) + Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics)