[Math] Differential Equation ,Finding solution by sketching the graph

ordinary differential equations

"Use direction field and Isocline make a qualitative sketch of the solution , determine equilibrium values and classify them ?"

$y'=y-\sqrt y $
enter image description here

It is clear that $y=0 , y=1 $ are equilibrium points but for these types of question which finding solution for DE is hard how to find which equilibrium point is stable or unstable without sketching vector field ?

Best Answer

This is a powerful qualitative tool that helps us get a general understanding of the behavior. When the DEQ is not solvable (other than using numerical methods or otherwise), this is the next best thing - we do qualitative analyses. Just look at how much information you were able to garner just from the direction field and plotting typical solutions using numerical methods on top of those.

We have to just look at the derivatives sign or if it equals zero to determine if it is a 'sink', 'source' or 'node' and can draw a phase line from this, that correlates to the nice phase plot you gave.

Theorem (Stability and Instability Conditions)

Let $f$ and $f′$ be continuous.

  • The equation $y′ = f(y)$ has a sink at $y = y_0$ provided $f(y_0) = 0$ and $f′(y_0) \lt 0$ (stable).

  • An equilibrium $y = y_1$ is a source provided $f(y_1) = 0$ and $f′(y_1) \gt 0$ (unstable).

  • There is no test when $f′$ is zero at an equilibrium (indeterminate). The no-test case can sometimes be decided by an additional test:

  • (a) Equation $y′ = f(y)$ has a sink at $y = y_0$ provided $f(y)$ changes sign from positive to negative at $y = y_0$.

  • (b) Equation $y′ = f(y)$ has a source at $y = y_0$ provided $f(y)$ changes sign from negative to positive at $y = y_0$.

In your example, $y' = f(y) = y - \sqrt{y}$, which is an autonomous system.

You already know the equilibrium points, now, use the theorem and then compare this qualitative method with what you already have in the diagram.

Regards