Math Symbols used in Chapter 1
CS390, Fall 2022
Abstract
Continuing our goal of being able to actual type and present “proper” mathematics, here are the symbols used in Chapter 1 of the text that were not covered in our earlier basic look at TeX-style mathematics.
1 Boolean Logic
LaTeX | Renders As | meaning |
---|---|---|
P \vee Q |
P∨Q | or |
P \wedge Q |
P∧Q | and |
\neg Q |
¬Q | not |
P \rightarrow Q |
P→Q | conditional |
P \Rightarrow Q |
P⇒Q | implies |
P \leftrightarrow Q |
P↔Q | biconditional |
P \Leftrightarrow Q |
P⇔Q | is equivalent to |
\forall x |
∀x | for all |
\exists x |
∃x | there exists |
2 Sets
LaTeX | Renders As | meaning |
---|---|---|
\cal{N} |
N | Natural numbers (\cal invokes a caligraphy font) |
\cal{Z} |
Z | Integers |
\cal{R} |
R | Real numbers |
\\{ x \\} |
{x} | sets |
x \in S |
x∈S | member of, is in |
x \notin S |
x∉S | not a member of, is not in |
S \subset T |
S⊂T | (strict) subset of |
S \subseteq T |
S⊆T | subset of or equal to |
S \cup T |
S∪T | union |
S \cap T |
S∩T | intersection |
S \times T |
S×T | cross product |
\bigcup_{i=1}^n S_i |
⋃ni=1Si | union of many sets |
\bigcap_{i=1}^n S_i |
⋃ni=1Si | intersection of many sets |
The “big” union and intersection operators are similar to the summation and product operators that we have previously seen.
3 Greek Letters
Greek letters are common in mathematics. In TeX they are obtained by spelling out the name of the letter after a backslash. If you begin the spelled-out name with an upper-case letter, you get the upper-case greek letter:
LaTeX | Renders As | LaTeX | Renders As |
---|---|---|---|
\alpha |
α | A |
A |
\beta |
β | B |
B |
\gamma |
γ | \Gamma |
Γ |
\delta |
δ | \Delta |
Δ |
\epsilon |
ϵ | E |
E |
\zeta |
ζ | Z |
Z |
\eta |
η | H |
H |
\theta |
θ | \Theta |
Θ |
\iota |
ι | I |
I |
\kappa |
κ | K |
K |
\lambda |
λ | \Lambda |
Λ |
\mu |
μ | M |
M |
\nu |
ν | N |
N |
\xi |
ξ | \Xi |
Ξ |
\pi |
π | \Pi |
Π |
\rho |
ρ | R |
R |
\sigma |
σ | \Sigma |
Σ |
\tau |
τ | T |
T |
\upsilon |
υ | \Upsilon |
Υ |
\phi |
ϕ | \Phi |
Φ |
\chi |
χ | X |
X |
\psi |
ψ | \Psi |
Ψ |
\omega |
ω | \Omega |
Ω |
The Greek omicron is omitted from the above table as it is indistinguishable from our “O” in both lower and upper case. Similarly, several Greek letters have upper-case forms identical to ours and therefore lack a backslash code.