使用 Latex 绘制芝诺悖论图表(半圆、圆弧和螺旋)

使用 Latex 绘制芝诺悖论图表(半圆、圆弧和螺旋)

我对 Latex 还很陌生,想知道如何使用 Tikz 或 Tkz-euclide 创建以下图形或类似图形(只对几何方面感兴趣,而不是海龟和阿喀琉斯)芝诺悖论

谢谢

答案1

有以下可能性:

\documentclass[tikz]{standalone}
\begin{document}
\begin{tikzpicture}
  \coordinate (c);
  \def\firststep{3cm}
  \foreach \step in {1,...,5}{
    \pgfmathsetmacro\mypow{2^\step}
    % Achille
    \draw[blue,fill=blue!10] (c) arc(180:0:\firststep/\mypow) coordinate(c);
    % Turtle
    \draw[red,fill=red!10]  (c) arc(-180:0:\firststep/\mypow/2);
  }
  \draw[green] (0,0) -- (\firststep * 2, 0);
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容