Internal
problem
ID
[9027]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
43
Date
solved
:
Sunday, March 30, 2025 at 01:59:34 PM
CAS
classification
:
[_quadrature]
Time used: 0.024 (sec)
Solve
Since the ode has the form
Summary of solutions found
Time used: 0.075 (sec)
Solve
Applying change of variables
Which is now solved The ode
is separable as it can be written as
Where
Integrating gives
Taking the exponential of both sides the solution becomes
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
Converting
Converting
Summary of solutions found
ode:=Pi*y(x)*sin(x)*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 <- 1st order linear successful
Maple step by step
ode=Pi*y[x]*Sin[x]*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(pi*y(x)*sin(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)