23 lines
421 B
TeX
23 lines
421 B
TeX
|
\documentclass{article}
|
||
|
\usepackage{amsfonts, amsthm}
|
||
|
|
||
|
\newtheorem{theorem}{Theorem}
|
||
|
|
||
|
\begin{document}
|
||
|
|
||
|
\begin{theorem}[Sum of Arithmetic Series]
|
||
|
|
||
|
Let $(a_i)_{i \geq 0}$ be an arithmetic sequence with common difference $d$.
|
||
|
Then for some $n \in \mathbb{N}$,
|
||
|
$$\sum_{i=0}^n a_i = \frac{(n + 1)(a_0 + a_n)}{2}.$$
|
||
|
|
||
|
\end{theorem}
|
||
|
|
||
|
\begin{proof}
|
||
|
|
||
|
Common.Sequence.Arithmetic.sum\_recursive\_closed
|
||
|
|
||
|
\end{proof}
|
||
|
|
||
|
\end{document}
|