Internal
problem
ID
[8796]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
83
Date
solved
:
Sunday, March 30, 2025 at 01:36:49 PM
CAS
classification
:
[_quadrature]
Time used: 0.113 (sec)
Solve
Integrating gives
Singular solutions are found by solving
for
The following diagram is the phase line diagram. It classifies each of the above equilibrium points as stable or not stable or semi-stable.
Solving for
Summary of solutions found
Time used: 0.156 (sec)
Solve
To solve an ode of the form
We assume there exists a function
Hence
But since
If the above condition is satisfied, then the original ode is called exact. We still need to determine
Therefore
Comparing (1A) and (2A) shows that
The next step is to determine if the ODE is is exact or not. The ODE is exact when the following condition is satisfied
Using result found above gives
And
Since
Since
Since
The result of integrating gives
And
So now a modified ODE is obtained from the original ODE which will be exact and can be solved using the standard method. The modified ODE is
The following equations are now set up to solve for the function
Integrating (1) w.r.t.
Where
But equation (2) says that
Solving equation (5) for
Integrating the above w.r.t
Where
But since
Which simplifies to
Summary of solutions found
Time used: 0.167 (sec)
Solve
Let
Solving for
This has the form
Where
Solving ode 1A
Taking derivative of (*) w.r.t.
Comparing the form
Hence (2) becomes
The singular solution is found by setting
Solving the above for
Substituting these in (1A) and keeping singular solution that verifies the ode gives
The general solution is found when
This ODE is now solved for
Integrating gives
Singular solutions are found by solving
for
Substituing the above solution for
Solving ode 2A
Taking derivative of (*) w.r.t.
Comparing the form
Hence (2) becomes
The singular solution is found by setting
Solving the above for
Substituting these in (1A) and keeping singular solution that verifies the ode gives
The general solution is found when
This ODE is now solved for
Integrating gives
Singular solutions are found by solving
for
Substituing the above solution for
The solution
was found not to satisfy the ode or the IC. Hence it is removed. The solution
was found not to satisfy the ode or the IC. Hence it is removed. The solution
was found not to satisfy the ode or the IC. Hence it is removed.
Summary of solutions found
ode:=diff(y(x),x) = (1-y(x)^2)^(1/2); 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=D[y[x],x]==Sqrt[1-y[x]^2]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-sqrt(1 - y(x)**2) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)