As stated in the comments, you get the symbols in mathmode simply by writing them down. Packages like amsmath and amssymb support you.
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\newtheorem{theorem}{THEOREM}
\newtheorem{proof}{PROOF}
\begin{document}
\begin{theorem}
If an operator has both Left Identity and
Right Identity then it is \emph{UNIQUE}.
\end{theorem}
\begin{proof}
Let $e_{l}$ is left identity
$\therefore e_{l} * e_{r} \implies e_{r}$
\end{proof}
\end{document}
Videos
As stated in the comments, you get the symbols in mathmode simply by writing them down. Packages like amsmath and amssymb support you.
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\newtheorem{theorem}{THEOREM}
\newtheorem{proof}{PROOF}
\begin{document}
\begin{theorem}
If an operator has both Left Identity and
Right Identity then it is \emph{UNIQUE}.
\end{theorem}
\begin{proof}
Let $e_{l}$ is left identity
$\therefore e_{l} * e_{r} \implies e_{r}$
\end{proof}
\end{document}
A somewhat larger version of \therefore may be built as:
\dot{.\hspace{.095in}.}\hspace{.5in}
Comparison traditional and larger version:
Doing an assignment for a CS class, wanted to use LaTeX. Tried using `\therefore` both in and outside of Math Mode, and it is telling me it isn't \def'd. I have also tried using amsmath and mathtools packages to get the symbols I need, to no avail.
Placement to check if it exists Error messageAm I going insane? I swear I've used this symbol before
If you add \usepackage{amssymb} to your preamble (or any package which loads this), you can just write \therefore in maths mode. As Willie Wong says, if you have even a minimally functional installation of LaTeX, you already have this package.
If you are using non-default text fonts, you might want to use a different set of fonts for maths, too, but \therefore will be available in any reasonably comprehensive configuration.
amssymb is part of the amsfonts collection. In Debian it is included as part of the package texlive-base; if you've "installed TeXLive" in any reasonable sense of the phrase using the Debian package manager, you should already have the amssymb package available on your system.
I'm new to overleaf and a LaTex rookie so I have no idea if I'm just missing the most obvious thing here. Sorry if I am.
How do you use \therefore?
$\therefore$
That doesn't render. I've done a couple things to try to figure it out. So far, using the beamer documentclass works.