This commit is contained in:
Miguel Buenache 2018-11-06 18:15:42 +01:00
parent d748f9bcb5
commit 5e75724fbc
2 changed files with 59 additions and 0 deletions

BIN
5/exercise-05-plik.pdf Normal file

Binary file not shown.

59
5/exercise-05-plik.tex Normal file
View File

@ -0,0 +1,59 @@
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\[
x\mapsto x^2-2x+3\
\]
\begin{tikzpicture}
\begin{axis}
\addplot{(x^2-2*x+3)};
\end{axis}
\end{tikzpicture}
\\
\[
x\mapsto \cos 2x\
\]
\begin{tikzpicture}
\begin{axis}
\addplot{(cos(2*x))};
\end{axis}
\end{tikzpicture}
\\ \\ \\ \\ \\ \\ \\ \\ \\ \\ \\
\[
x\mapsto\sin \tfrac{1}{x}\
\]
\begin{tikzpicture}
\begin{axis}
\addplot{(sin(1/x))};
\end{axis}
\end{tikzpicture}
\\
\[
(x,y)\mapsto x^2+y^2\
\]
\begin{tikzpicture}
\begin{axis}
\addplot3{(x^2+y^2)};
\end{axis}
\end{tikzpicture}
\\ \\ \\ \\ \\ \\ \\ \\ \\ \\ \\
\[
(x,y)\mapsto x^2-y^2 + 2 x y ^2+1\
\]
\begin{tikzpicture}
\begin{axis}
\addplot3{(x^2-y^2+2*x*y^2+1)};
\end{axis}
\end{tikzpicture}
\end{document}