画一条倒置的抛物线

画一条倒置的抛物线

我想使用 TikZ 绘制下图(旋转 180 度——我不知道为什么它会颠倒过来): 倒置抛物线

这似乎应该很容易,我尝试使用 ARC 函数,但一无所获。有人对此有什么想法吗?

这是我尝试过的:

\def\R{\mathbb{R}}
\newcommand{\cvx}{convex}
% glossary
\begin{document}


\begin{figure}

\begin{tikzpicture}[scale=0.5]

\scriptsize

\draw (0,11.5) -- (0,0) node[below left]{$0$} -- (11,0) node[below right]{$Z$};


\node [above left] at (0,11){$\chi$};

\node [above] at (0,12){$$Consumption$$};

\node [below] at (5.5,0){$\Delta$ in $Z$};


\draw (0,0)arc(90:-90:11cm and 5.5cm);

\draw (0,5.5) node[below left]{$t^*$} -- (11,5.5);

\draw (11.2,11) -- (11.7,11) -- (11.7,5.5) -- (11.2,5.5);

\node[align=left, right] at (11.7,8.25) {Prohibitive\\Range};


\draw[fill=gray] (11,5.5)arc(0:90:11cm and 5.5cm);

\draw[fill=gray] (11,5.5) -- (0,5.5) -- (0,11);


\end{tikzpicture}

\caption{The Laffer curve}

\end{figure}

\end{document}

答案1

如果我正确理解了你的问题的话,这是一个开始。

\documentclass[tikz,margin=2]{standalone}
\begin{document}
\begin{tikzpicture}[>=stealth]
\draw[thick] plot[smooth,samples=100,domain=-2:2] (\x,\x*\x);
\draw[<->] (-3,4) -| (2,-1);
\draw[dashed] (0,4) |- (2,0);
\end{tikzpicture}
\end{document}

在此处输入图片描述

答案2

Z 具有parabola为此目的而构造的路径。

\documentclass[tikz,border=3.14mm]{standalone}
\begin{document}
\begin{tikzpicture}
 \draw[stealth-stealth] (-5,0) -| (0,-5);
 \draw[dashed] (-2,0) |- (0,-4);
 \draw (-4,0) parabola bend (-2,-4) (0,0);
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容