$\let\divisionsymbol\div \let\oldRe\Re \let\oldIm\Im$

Greater or Less

greater than

$a \gt b$

a \gt b
Copy

In MathJax, we use \gt because > has a special meaning on the web. It comes from "greater than".

greater than or equal

$a \geq b$

a \geq b
Copy

\geq is a combination of "greater than" and "equal".

greater than or equal 2

$a \geqq b$

a \geqq b
Copy

If you use \geqq, you will have one more horizontal line than with \geq.

less than

$a \lt b$

a \lt b
Copy

In MathJax, we use \lt because < has a special meaning on the web. It comes from "less than".

less than or equal

$a \leq b$

a \leq b
Copy

\leq is a combination of "less than" and "equal".

less than or equal 2

$a \leqq b$

a \leqq b
Copy

If you use \leqq, you will have one more horizontal line than with \leq.

equal

$a = b$

a = b
Copy

We use the symbols as it is.

not equal

$a \neq b$

a \neq b
Copy

\neq comes from "not equal". It can also be written as \ne or \not=.

nearly equal

$a \fallingdotseq b$

a \fallingdotseq b
Copy

\fallingdotseq is a combination of "falling dots" and "equal".

nearly equal 2

$a \sim b$

a \sim b
Copy

\sim comes from "similar".

nearly equal 3

$a \simeq b$

a \simeq b
Copy

It is a combination of "similar" and "equal". If you write \eqsim, the symbols above and below will be swapped

nearly equal 4

$a \approx b$

a \approx b
Copy

\approx comes from "approximately".

much greater than

$a \gg b$

a \gg b
Copy

If you write "\gg", two > overlap.. If you write "\ggg", three > overlap.

much less than

$a \ll b$

a \ll b
Copy

If you write "\ll", two < overlap.. If you write "\lll", three < overlap.

maximum

$\max f(x)$

\max f(x)
Copy
minimum

$\min f(x)$

\min f(x)
Copy
max sample

$\begin{eqnarray} \max ( a, b ) = \begin{cases} a & ( a \geqq b ) \\ b & ( a \lt b ) \end{cases} \end{eqnarray}$

\begin{eqnarray}
\max ( a, b )
=
  \begin{cases}
    a & ( a \geqq b ) \\
    b & ( a \lt b )
  \end{cases}
\end{eqnarray}
Copy

The eqnarray environment is used to display multiple expressions. The cases environment is used to write cases.