Your solution is not correct.
Hint: The exact solution is $$y(t) = e^{-\alpha t} y(0).$$
The Forward-Euler scheme is given by the recurrence $y_{n+1} = ( 1 - \alpha \Delta t) y_n$ and initial condition $y_0 = y(0)$.
This recurrence can be solved to obtain $$y_n = (1 - \alpha \Delta t)^n y(0).$$
Letting $x = \alpha \Delta t$, note that
\begin{align*}
y_n - y(n \Delta t)
& = (1 - x)^n y(0) - e^{- n x} y(0) \\
& = \left( (1 - x)^n - e^{- n x} \right) y(0).
\end{align*}
Now, you have to show that $$(1 - x)^n - e^{- n x} \leq 0 \qquad \text{for } x \in (0,1) \text{ and } n \in \mathbb{N}. \tag{1}$$
Assuming $\text{(1)}$, you can conclude the following:
- If $y(0) < 0$, the Forward-Euler scheme is an overestimator.
- If $y(0) = 0$, the Forward-Euler scheme gives the exact (trivial) solution.
- If $y(0) > 0$, the Forward-Euler scheme is an underestimator.