How to write an infinity symbol(∞) in LaTeX?

Usually, you are all familiar with the infinity symbol. And use of this infinity symbol is much more in mathematics. Mathematically, infinity is denoted by the ∞ symbol.

Properties Value
Symbol Infinity
Argument No
Command \infty
Example \infty → ∞

However, to represent this infinity symbol in latex, you need to use the \infty command.

\documentclass{article}
\begin{document}
   \[ \left ( -\infty ,+\infty \right ) \]
\end{document}

Output :

latex infinity symbol

List of indeterminate forms in LaTeX

The Indeterminate forms of Infinity are discussed with the help of the table below

Command Output
1^{\infty}  indeterminate form of infinity
\infty^{0} indeterminate form of infinity 1
\frac{\infty}{\infty}  latex indeterminate form of infinity 2
0\cdot\infty  latex indeterminate form of infinity3
\infty-\infty  latex indeterminate form of infinity4

Don’t be confused to use single dollar and double dollar on both sides of the equation.

If you want to use inline equations. Then you need to add single dollar sign on both sides of latex equation.

\documentclass{article}
\begin{document} 
  Range of R $\left(-infty,0 \right]$
\end{document}

Output :

Range of R (-∞,0]

And if you write the equation separately instead of using the text, you can use the double dollar sign on both sides of the equation.

\documentclass{article}
\begin{document}
   Range of R $\left(-infty,0 \right]$
   \[ \lim_{x \to \infty}f(x) \]
\end{documeet}

Output :

Range of R (-∞,0]

limit of f(x) in latex

Use of Infinity Symbol in Mathematics

1. This infinity symbol is used when determining the domain and range of an expression.

\documentclass{article}
\begin{document}
   $R \in (-\infty,a]\cup[b,+\infty)$
\end{document}

Output :

range of R

And if you look at the code above, you can see that the \in command has been used for the ∈ symbol.

2. Also, the infinity symbol is used to represent the limit. And in this case, plus or minus is used before the limit.

\documentclass{article}
\begin{document}
  \[ \lim_{x\to\infty}=f(x) \]
  \[ \lim_{x\to+\infty}=\frac{1}{x} \]
  \[ \lim_{x\to-\infty}=\frac{x+1}{x-1} \]
\end{document}

Output :

limit with infinity in latex

3. The Infinity symbol is used when writing the Infinity series with a summation symbol. Notice this program below

\documentclass{article}
\begin{document}
   \[ \sum_{n=1}^{\infty} \frac{1}{n} \]
   \[ \sum_{n=1}^{\infty} \frac{1}{n+1} \]
\end{document}

Output :

summation with infinity symbol

4. And if you have read Quantum Physics, you will see that this infinity symbol is also used to define different equations.

\documentclass{article}
\begin{document}
   $ \int_{-\infty}^{\infty}e^{-ax^{2}}\:dx=\sqrt{\frac{\pi}{a}} $
\end{document}

Output :

integration with infinity symbol in latex

And you may see in many documents that the negative infinity symbol is used. In this case, you need to use the minus symbol before the latex \infty command.

Md Jidan Mondal

LaTeX expert with over 10 years of experience in document preparation and typesetting. Specializes in creating professional documents, reports, and presentations using LaTeX.

2 thoughts on “How to write an infinity symbol(∞) in LaTeX?”

Leave a Comment

Your email address will not be published. Required fields are marked *