How to get the following plot only using latex (TikZ package) of the system of differential equations:
u ’ = u (1 - u) - (a u v)/(u + d)
v ’ = b v (1 - v/u)
a=1, b=0.2,d=0.25.
I don't need the direction fields. I can draw the nullclines as below:
\documentclass[tikz]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[->] (0,0) -- (1,0) node[right] {$u$};
\draw[->] (0,0) -- (0,1) node[above] {$v$};
\draw[scale=1,domain=0:1,smooth,variable=\x,blue] plot ({\x},{-(-1+\x)*(\x+0.25)/1});
\draw[scale=1,domain=0:1,smooth,variable=\x,red] plot ({\x},{\x});
\end{tikzpicture}
\end{document}


