This commit is contained in:
Catarina Gamelas 2018-11-06 18:21:46 +01:00
parent 719bf3bb86
commit eba93742ff
2 changed files with 61 additions and 0 deletions

BIN
exercise-05-plik.pdf Normal file

Binary file not shown.

61
exercise-05-plik.tex Normal file
View File

@ -0,0 +1,61 @@
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{polski}
\usepackage{amsmath}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\[
x\mapsto x^2-2x+3\
\]
\begin{tikzpicture}
\begin{axis}
\addplot{(x^2-2*x+3)};
\end{axis} content...
\end{tikzpicture}
\\
\[
x\mapsto \cos 2x\
\]
\begin{tikzpicture}
\begin{axis}
\addplot{(cos(2*x))};
\end{axis} content...
\end{tikzpicture}
\\
\[
x\mapsto\sin \tfrac{1}{x}\
\]
\begin{tikzpicture}
\begin{axis}
\addplot{(sin(1/x))};
\end{axis} content...
\end{tikzpicture}
\\
\[
(x,y)\mapsto x^2+y^2\
\]
\begin{tikzpicture}
\begin{axis}
\addplot3{(x^2+y^2)};
\end{axis} content...
\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} content...
\end{tikzpicture}
\\
\end{document}