Class 5
This commit is contained in:
parent
d748f9bcb5
commit
5e75724fbc
BIN
5/exercise-05-plik.pdf
Normal file
BIN
5/exercise-05-plik.pdf
Normal file
Binary file not shown.
59
5/exercise-05-plik.tex
Normal file
59
5/exercise-05-plik.tex
Normal 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}
|
||||
|
Loading…
Reference in New Issue
Block a user