diff --git a/math/agnesi_witch.tex b/math/agnesi_witch.tex new file mode 100755 index 0000000..281f300 --- /dev/null +++ b/math/agnesi_witch.tex @@ -0,0 +1,20 @@ +\documentclass{standalone} +% +\usepackage{tikz} +\usepackage{pgfplots} +\pgfplotsset{width=10cm,compat=1.9} + +\usepackage{xcolor} +\definecolor{space}{HTML}{0A2543} +% +\title{The Witch of Agnesi} +\begin{document} + \begin{tikzpicture}[domain=-15:15] + \begin{scope}[scale=2] + \begin{axis} + \foreach \a in {1,2,4,8} + \addplot [domain=-15:15, samples=100, color=space, thick]{8 * \a^2 / (x^2 + 4 * \a)}; + \end{axis} + \end{scope} + \end{tikzpicture} +\end{document} \ No newline at end of file diff --git a/math/pdf/agnesi_witch.pdf b/math/pdf/agnesi_witch.pdf new file mode 100644 index 0000000..9c576cc Binary files /dev/null and b/math/pdf/agnesi_witch.pdf differ