Internal
problem
ID
[7513]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Section
2.6,
Substitutions
and
Transformations.
Exercises.
page
76
Problem
number
:
14
Date
solved
:
Tuesday, September 30, 2025 at 04:41:08 PM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
ode:=diff(y(t),t) = (t*sec(y(t)/t)+y(t))/t; dsolve(ode,y(t), singsol=all);
ode=D[y[t],t]==( t*Sec[ y[t]/t ]+y[t] ) /t; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(Derivative(y(t), t) - (t*sec(y(t)/t) + y(t))/t,0) ics = {} dsolve(ode,func=y(t),ics=ics)