There are multiple symbols commonly used to represent "such that"
\backepsilonor\ni\mid:
For "therefore", I usually see
\therefore
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:
Videos
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
There are multiple symbols commonly used to represent "such that"
\backepsilonor\ni\mid:
For "therefore", I usually see
\therefore
"It seems like $\therefore$ is more frequently used when reaching the conclusion of an argument, while $\implies$ (alternatively $\rightarrow$) is for intermediate claims that imply each other."
Your supposition is largely correct; my only concern is your description of $\implies$ being used to denote intermediate claims (in a proof or an argument, for example) that imply each other. The $\implies$ denotation, as in $p \implies q$, merely conveys that the preceding claim ($p$, if true) implies the subsequent claim $q$; i.e., it does not denote a bi-direction implication $\iff$ which reads "if and only if".
'$\implies$' or '$\rightarrow$' is often used in a "modus ponens" style (short in scope) argument: If $p\implies q$, and if it's the case that $p$, then it follows that $q$.
Typically, as you note, $\therefore$ helps to signify the conclusion of an argument: given what we know (or are assuming as given) to be true and given the intermediate implications which follow, we conclude that...
So, put briefly, $\implies$ ("which implies that") is typically shorter in scope, usually intended to link, by implication, the preceding statement and what follows from it, whereas '$\therefore$' has typically, though not always, greater scope, so to speak, linking the initial assumptions/givens, the intermediate implications, with "that which was to be shown" in, say, a proof or argument.
Added:
I found the following Wikipedia entry on the meaning/use of the symbol'$\therefore$', from which I'll quote:
To denote logical implication or entailment, various signs are used in mathematical logic: $\rightarrow, \;\implies, \;\supset$ and $\vdash$, $\models$. These symbols are then part of a mathematical formula, and are not considered to be punctuation. In contrast, the therefore sign $[\;\therefore\;]$ is traditionally used as a punctuation mark, and does not form part of a formula.
It also refers to the "complementary" of the "therefore" symbol$\;\therefore\;$, namely the symbol $\;\because\;$, which denotes "because".
Example:
$\because$ All men are mortal.
$\because$ Socrates is a man.
$\therefore$ Socrates is mortal.
$\therefore$ and $\implies$ are quite different!
"Hence" and "therefore" and "as a consequence" are all synonyms. The usage is "A, therefore B", meaning "A is true, and it follows that B is true." Note that the truth of A is being asserted. Latex \therefore ($\therefore$) gives the dot triangle that has long been used to mean "therefore".
"Because" is the same in reverse. "B because A" means that B is true because A is true. This contains the assertion that A is true. Latex \because ($\because$) gives the inverted dot triangle that has long been used to mean "because".
"Implies" is completely different. "A implies B" means that IF A is true, then B is also true. It makes no statement about the truth of A. Latex \implies ($\implies$), \Rightarrow ($\Rightarrow$), and \Longrightarrow ($\Longrightarrow$) all give the double right arrow that is often used to mean "implies". Sometimes a single right arrow is used, which has the same meaning.
It is very common to use the \implies symbol instead of "therefore", but since "implies" and "therefore" have significantly different meanings, this is very bad writing.
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.