Internal
problem
ID
[8719]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
8
Date
solved
:
Friday, April 25, 2025 at 04:57:49 PM
CAS
classification
:
[_quadrature]
Time used: 0.051 (sec)
Solve
Integrating gives
The following diagram is the phase line diagram. It classifies each of the above equilibrium points as stable or not stable or semi-stable.
Summary of solutions found
Time used: 0.082 (sec)
Solve
Applying change of variables
Which is now solved 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
Converting
Converting
Solving for
Which simplifies to
Summary of solutions found
Time used: 0.158 (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
The result of integrating gives
And
Now a modified ODE is ontained from the original ODE, which is exact and can be solved. The modified ODE is
The following equations are now set up to solve for the function
Integrating (2) w.r.t.
Where
But equation (1) says that
Solving equation (5) for
Therefore
Where
But since
Solving for
Which simplifies to
Summary of solutions found
Time used: 0.047 (sec)
Solve
Let
Solving for
This has the form
Where
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
Substituing the above solution for
Summary of solutions found
ode:=diff(y(x),x) = y(x); 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=D[y[x],x] == y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)