答案1
这里有一个使用 pgfplots 的示例,但你可以用 Ti 做同样的事情钾仅限 Z。
\documentclass[tikz,border=2mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.15}
\begin{document}
\tikzset{declare function={f(\x)=(\x)^(1/2)-\x;}}
\begin{tikzpicture}
\begin{axis}[domain=0:0.5,ytick={0,0.5,1},xtick={0,1,2,3,4},
xmin=0,ymin=0,ymax=0.5,xmax=0.5,mark=none,samples=100]
\addplot[very thick] {f(x)};
\addplot[very thick] ({f(x)},{x});
\end{axis}
\end{tikzpicture}
\end{document}