Hi all,
I am new to mathematica and am trying to get a hang of rules. Here is what I am trying to do.
I wanted to show in Mathematica that the Limit of $$
\begin{align*}
\lim_{R \to \infty } \frac{e^{a R}}{e^R} = 0 & & | a | < 1
\end{align*}
$$
So what I tried in Mathematica is Limit[ Exp[a*R] / Exp[R], R -> [Infinity]].
But I don't know how to force it use a rule like this: Abs[a]<1
Anyone know what would be the proper syntax in Mathematica to do the above?
Thanks in advance.