Internal
problem
ID
[13216]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
section
2.2
(Separable
equations).
Exercises
page
47
Problem
number
:
6
Date
solved
:
Wednesday, March 05, 2025 at 09:22:43 PM
CAS
classification
:
[_separable]
ode:=(exp(v(u))+1)*cos(u)+exp(v(u))*(1+sin(u))*diff(v(u),u) = 0; dsolve(ode,v(u), singsol=all);
ode=(Exp[v[u]]+1)*Cos[u] + Exp[v[u]]*(1+Sin[u])*D[ v[u],u]==0; ic={}; DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") v = Function("v") ode = Eq((exp(v(u)) + 1)*cos(u) + (sin(u) + 1)*exp(v(u))*Derivative(v(u), u),0) ics = {} dsolve(ode,func=v(u),ics=ics)