I want to show that, given a sequence of real numbers $(a_k)_{k=1}^{\infty}$ converges to $a\in\mathbb{R}$, then
$$\lim_{n\to\infty}\frac{1}{n}\sum_{k=1}^{n}a_k=a.$$
My general idea is this:
We know that $\forall \, \varepsilon> 0, \,\exists \,M\in\mathbb{N}$ s.t. $\forall \, m\geq M$, $|a_m-a|<\varepsilon$.
I want to formally say that
$$\begin{aligned} \frac{1}{n}\sum_{k=1}^{n}a_k &\approx \frac{1}{n}\left(\sum_{k=1}^{m-1}a_k+\sum_{k=m}^{n}a\right)\\ &=\frac{1}{n}\left(\sum_{k=1}^{m-1}a_k+(n-m+1)a\right)\\ \end{aligned}$$ Then, as $n$ gets large, since $\sum\limits_{k=1}^{m-1}a_k$ is just some fixed number, $\frac{1}{n}\sum\limits_{k=1}^{m-1}a_k$ will tend to $0$. Also, $\frac{n-m+1}{n}\to1$, so $\frac{n-m+1}{n}\,a\to a$.
This argument seems to be the more intuitive way to explain the result, but the task is to argue it rigorously.
I'm having trouble figuring out how I can formally write the part where I split the sum in the part from $1$ to $m-1$ and $m$ to $n$, I'm not sure how I can express this idea more formally in terms of an $\varepsilon-N$ type argument, or whether there's an alternative way for me to be able to show this formally.
The proof of this is as follows. Let $\epsilon > 0$. Since $a_k \to a$, we can choose $m \in \mathbb N$ such that $|a_n - a| \le \frac \epsilon 2$ for all $n \ge m$. Then we can choose $N \in \mathbb N$, $N \ge m$, such that
$$ \frac 1 N \sum_{j = 1}^m |a_j| \le \frac \epsilon 2.$$
Then, for $n \ge N$:
$$ \left | \frac 1 n \left(\sum_{j = 1}^n a_j \right) - a \right| \le \frac 1 n \sum_{j = 1}^m |a_j| + \frac 1 n \sum_{j = m}^n |a_j -a | \le \frac \epsilon 2 + \frac{n - m + 1}{n} \frac \epsilon 2 \le \epsilon.$$
However, your intuition is good, keep it in mind. The proof basically is just your intuition in formulas. (Your $a_k \approx a$ becomes $|a_k - a| \le \frac \epsilon 2$)