答え1
答え2
直立矢印と矢印の下のより大きい記号とより小さい記号に加えて、左と右の限界は、ウィキペディアの記事次のように表記されることもあります:
上付きプラス記号またはマイナス記号:
\documentclass{article} \usepackage{amsmath} \begin{document} \[ \lim_{x\to a^{+}} f(x) \text{ and } \lim_{x\to a^{-}} f(x) \] \end{document}
斜めの矢印(
\nearrow
および\searrow
):\documentclass{article} \usepackage{amsmath} \begin{document} \[ \lim_{x\nearrow a} f(x) \text{ and } \lim_{x\searrow a} f(x) \] \end{document}
答え3
が下からまたは上から近づくにつれてf(x)
の極限をとるという概念を表現しようとしているものと仮定します。この仮定が正しい場合、と( とも呼ばれます)の代わりに、とを使用して、とられる極限の「片側性」を表現するのが一般的であると私は思います。x
a
\uparrow
\downarrow
\rightarrow
\to
\documentclass{article}
\usepackage{amsmath} % for '\text' macro
\begin{document}
\[
\lim_{x\uparrow a}f(x) \text{ and } \lim_{x\downarrow a}f(x)
\]
\end{document}