aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/110-elliptisch/images
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@ost.ch>2021-10-12 07:44:15 +0200
committerAndreas Müller <andreas.mueller@ost.ch>2021-10-12 07:44:15 +0200
commit09e2c20b0a41a36161547b2628366db1e048eaf8 (patch)
tree19ce49dcdcf7ebe7835432ecc81b66ac1a97f7ec /buch/chapters/110-elliptisch/images
parentmore chapter skeletons (diff)
downloadSeminarSpezielleFunktionen-09e2c20b0a41a36161547b2628366db1e048eaf8.tar.gz
SeminarSpezielleFunktionen-09e2c20b0a41a36161547b2628366db1e048eaf8.zip
add some info on elliptic functions
Diffstat (limited to 'buch/chapters/110-elliptisch/images')
-rw-r--r--buch/chapters/110-elliptisch/images/Makefile10
-rw-r--r--buch/chapters/110-elliptisch/images/lemniskate.pdfbin0 -> 9914 bytes
-rw-r--r--buch/chapters/110-elliptisch/images/lemniskate.tex46
3 files changed, 56 insertions, 0 deletions
diff --git a/buch/chapters/110-elliptisch/images/Makefile b/buch/chapters/110-elliptisch/images/Makefile
new file mode 100644
index 0000000..ef2e6fc
--- /dev/null
+++ b/buch/chapters/110-elliptisch/images/Makefile
@@ -0,0 +1,10 @@
+#
+# Makefile -- make images
+#
+# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
+#
+all: lemniskate.pdf
+
+lemniskate.pdf: lemniskate.tex
+ pdflatex lemniskate.tex
+
diff --git a/buch/chapters/110-elliptisch/images/lemniskate.pdf b/buch/chapters/110-elliptisch/images/lemniskate.pdf
new file mode 100644
index 0000000..063a3e1
--- /dev/null
+++ b/buch/chapters/110-elliptisch/images/lemniskate.pdf
Binary files differ
diff --git a/buch/chapters/110-elliptisch/images/lemniskate.tex b/buch/chapters/110-elliptisch/images/lemniskate.tex
new file mode 100644
index 0000000..f74a81f
--- /dev/null
+++ b/buch/chapters/110-elliptisch/images/lemniskate.tex
@@ -0,0 +1,46 @@
+%
+% lemniskate.tex -- Lemniskate
+%
+% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
+%
+\documentclass[tikz]{standalone}
+\usepackage{amsmath}
+\usepackage{times}
+\usepackage{txfonts}
+\usepackage{pgfplots}
+\usepackage{csvsimple}
+\usetikzlibrary{arrows,intersections,math}
+\begin{document}
+\def\skala{4}
+\begin{tikzpicture}[>=latex,thick,scale=\skala]
+
+\draw[color=red,line width=1.0pt]
+ plot[domain=-45:45,samples=100] ({\x}:{sqrt(2*cos(2*\x))});
+\draw[color=red,line width=1.0pt]
+ plot[domain=135:225,samples=100] ({\x}:{sqrt(2*cos(2*\x))});
+
+\def\a{18}
+\def\b{39}
+
+\draw[->,color=blue,line width=1pt] (0,0) -- (\a:{sqrt(2*cos(2*\a))});
+
+\draw[color=red,line width=2.0pt]
+ plot[domain=45:\a,samples=100] ({\x}:{sqrt(2*cos(2*\x))});
+
+\draw[->] (-1.5,0) -- (1.5,0) coordinate[label={$x$}];
+\draw[->] (0,-0.7) -- (0,0.7) coordinate[label={right:$y$}];
+
+\fill[color=white] (1,0) circle[radius=0.02];
+\draw (1,0) circle[radius=0.02];
+\fill[color=white] (-1,0) circle[radius=0.02];
+\draw (-1,0) circle[radius=0.02];
+
+\node[color=blue] at (\a:{0.6*sqrt(2*cos(2*\a))}) [below] {$r$};
+\node[color=red] at ({\b}:{sqrt(2*cos(2*\b))}) [above] {$s$};
+
+\fill[color=white] (\a:{sqrt(2*cos(2*\a))}) circle[radius=0.02];
+\draw[color=red] (\a:{sqrt(2*cos(2*\a))}) circle[radius=0.02];
+
+\end{tikzpicture}
+\end{document}
+