I have problem with determining the stability region for forward Euler method with equation:
$$ y' = -100y + 100 \cos t - \sin t \quad t \in[0, \pi], \quad y(0)= 1$$
Forward Euler method is defined as:
$$ y_{n+1} = y_{n} + hf(t_n, y_n)$$
How to find stability region in that case? I think that it's the same as for equation $y' = -100y$, which is $h<0.02$, but that's just my guess (confirmed by the graphical plots) and I don't know how to check it.