Internal
problem
ID
[18469]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
24.
Problems
at
page
62
Problem
number
:
4
(a)
Date
solved
:
Monday, March 31, 2025 at 05:30:18 PM
CAS
classification
:
[_separable]
Time used: 0.212 (sec)
Solve
The ode
is separable as it can be written as
Where
Integrating gives
We now need to find the singular solutions, these are found by finding for what values
for
Now we go over each such singular solution and check if it verifies the ode itself and any initial conditions given. If it does not then the singular solution will not be used.
Therefore the solutions found are
Solving for
Summary of solutions found
ode:=sin(x)*cos(y(x))^2+cos(x)^2*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear trying Bernoulli trying separable <- separable successful
Maple step by step
ode=Sin[x]*Cos[y[x]]^2+ Cos[x]^2*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(sin(x)*cos(y(x))**2 + cos(x)**2*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out