Internal
problem
ID
[13662]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
9,
First
order
linear
equations
and
the
integrating
factor.
Exercises
page
86
Problem
number
:
9.1
(iii)
Date
solved
:
Monday, March 31, 2025 at 08:07:00 AM
CAS
classification
:
[_linear]
ode:=diff(z(y),y) = z(y)*tan(y)+sin(y); dsolve(ode,z(y), singsol=all);
ode=D[z[y],y]==z[y]*Tan[y]+Sin[y]; ic={}; DSolve[{ode,ic},z[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") z = Function("z") ode = Eq(-z(y)*tan(y) - sin(y) + Derivative(z(y), y),0) ics = {} dsolve(ode,func=z(y),ics=ics)