답변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}