Files
brueckenkurs/folgen01.tex
2024-12-23 07:42:39 +01:00

124 lines
3.3 KiB
TeX

%!TEX root=main.tex
\section{Folgen}
\paragraph*{Beispiel 1:}
Monatlicher Umsatz eines Shops: \\
\begin{center}
\begin{tabular}{|l|cccccc|}
\hline
\rule{0pt}{12pt}{\cellcolor[rgb]{1,0.647,0}}Monat &1 & 2 & 3 & 4 & 5 & 6 \\
\hline
\rule{0pt}{12pt}{\cellcolor[rgb]{1,0.647,0}}Umsatz in T\texteuro& 1 & 2 & 3 & 4 & 5 & 6 \\
\hline
\end{tabular}
\end{center}
\begin{center}
\begin{tikzpicture}[scale=1.25]
\definecolor{orange1}{rgb}{1,0.647,0}
\begin{axis}[%
xlabel={Monat},
ylabel={Umsatz [T\texteuro]},
%clickable coords={(xy): \thisrow{label}},%
scatter/classes={%
a={mark=square*,orange1}}]
\addplot[scatter,only marks,%
scatter src=explicit symbolic]%
table[meta=label] {
x y label
1 1 a
2 2 a
3 3 a
4 4 a
5 5 a
6 6 a
};
\end{axis}
\end{tikzpicture}
\end{center}
\paragraph*{Beispiel 2:}
Rückzahlung eines Kredites (monatlich 200 \texteuro): \\
\begin{center}
\begin{tabular}{|l|cccccc|}
\hline
\rule{0pt}{12pt}{\cellcolor[rgb]{0.98,0.1,0}}Monat &1 & 2 & 3 & 4 & 5 & 6 \\
\hline
\rule{0pt}{12pt}{\cellcolor[rgb]{0.98,0.1,0}}Schuld in T\texteuro& 7,0 & 6,8 & 6,6 & 6,4 & 6,2 & 6,0 \\
\hline
\end{tabular}
\end{center}
\begin{center}
\begin{tikzpicture}[scale=1.25]
\definecolor{red1}{rgb}{0.98,0.1,0}
\begin{axis}[%
xlabel={Monat},
ylabel={Schuld [T\texteuro]},
%clickable coords={(xy): \thisrow{label}},%
scatter/classes={%
a={mark=square*,red1}}]
\addplot[scatter,only marks,%
scatter src=explicit symbolic]%
table[meta=label] {
x y label
1 7.0 a
2 6.8 a
3 6.6 a
4 6.4 a
5 6.2 a
6 6.0 a
};
\end{axis}
\end{tikzpicture}
\end{center}
\fancybox[Definition \glqq undendliche Folge\grqq]{Eine unendliche Folge is eine Abbildung, die jeder natürlichen Zahl $n$ (also $n \in \mathbb{ N}$ bzw. $n \in \mathbb{N}_0$) eine reelle Zahl $a_n$ zuordnet.
1 - 4:52 weiter
}
\vfill
x-Achse = Abzisse
y-Achse = Ordinate
%\def\hcenter#1{\hfil#1\hfil}
%\begin{table}[]
% \begin{tabu}{
% >{\columncolor[HTML]{9A0000}}X[l]|X[c]|X[c]|X[c]|X[c]|X[c]|X[c]|}
% {\color[HTML]{FFFFFF} \textbf{Monat}} & {\color[HTML]{9A0000} \textbf{1}} & {\color[HTML]{9A0000} \textbf{2}} & {\color[HTML]{9A0000} \textbf{3}} & {\color[HTML]{9A0000} \textbf{4}} & {\color[HTML]{9A0000} \textbf{5}} & {\color[HTML]{9A0000} \textbf{6}}\\
% \rule{10pt}{20pt}{\color[HTML]{FFFFFF} \textbf{Umsatz in T\texteuro}} & \textbf{1} & \textbf{2} & \textbf{3} & \textbf{4} & \textbf{5} & \textbf{6}
% \end{tabu}
%\end{table}
% Muster
%\begin{tabular}{|>{\columncolor{blue!40}}r|rrrrr|}
% \hline
% \rowcolor[gray]{.8} \textbf{No.} & {\bf 134} & {\bf 135} & {\bf 136} & {\bf 137} & {\bf 138} \\
% \hline
% \textbf{Milch } & 0.00 & 0.05 & 0.00 & 0.04 & 0.00 \\
% \textbf{Käse } & 49.57 & 49.15 & 49.80 & 49.68 & 50.18 \\
% \textbf{Zucker } & 0.01 & 0.00 & 0.00 & 0.00 & 0.00 \\
% {\bf Apfel } & 0.00 & 0.06 & 0.00 & 0.01 & 0.01 \\
% {\bf Wurst } & 46.14 & 46.56 & 46.32 & 46.48 & 46.31\\\hline
% {\bf Total } & {\bf 97.13} & {\bf 97.23} & {\bf 97.53} & {\bf 97.65} & {\bf 98.04} \\\hline
%\end{tabular}
\newpage