Internal
problem
ID
[8729]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
18
Date
solved
:
Friday, April 25, 2025 at 04:58:17 PM
CAS
classification
:
[_quadrature]
Solve
With initial conditions
This is non linear first order ODE. In canonical form it is written as
The
And the point
The
And the point
Time used: 0.182 (sec)
Solve
With initial conditions
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.
Solving for the constant of integration from initial conditions, the solution becomes
Summary of solutions found
ode:=diff(y(x),x) = ((y(x)+1)/y(x)^2)^(1/2); ic:=y(0) = 1; dsolve([ode,ic],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])/y[x]^2]; ic=y[0]==1; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-sqrt((y(x) + 1)/y(x)**2) + Derivative(y(x), x),0) ics = {y(0): 1} dsolve(ode,func=y(x),ics=ics)