This exercise is from my textbook:
Let $I\subseteq \mathbb{R}$ be an open interval, let $f : I\rightarrow \mathbb{R}$ be differentiable on $I$, and suppose $f''(a)$ exists at $a\in I$. Show that:
$$f''(a) = \lim_{h\to 0} \frac{f(a+h) - 2f(a) + f(a-h)}{h^2}$$
which I solved using L'Hospital's rule, but I wasn't satisfied with that so I started to looking for an alternative proof and I found the following which uses the definition of derivative:
\begin{equation*} \begin{split} f''(a) &= \lim_{h\to 0} \frac{f'(a) - f'(a-h)}{h}\\ \\ &= \lim_{h\to 0} \frac{\lim_{h\to 0}\frac{f(a+h)-f(a)}{h} - \lim_{h\to 0}\frac{f(a)-f(a-h)}{h}}{h}\\ \\ &= \lim_{h\to 0}\frac{\frac{f(a+h)-f(a)}{h} - \frac{f(a)-f(a-h)}{h}}{h}\\ \\ &= \lim_{h\to 0} \frac{f(a+h) - 2f(a) + f(a-h)}{h^2} \end{split} \end{equation*}
Is this valid? It looks more like an abuse of notation.