Greek Letters and Math Symbols in LaTeX
Greek letters and math symbols are essential for scientific and mathematical writing. LaTeX provides commands for every Greek letter, operator, relation, arrow, and miscellaneous symbol you will ever need. This complete reference covers them all with copy-paste commands you can use immediately.
Lowercase Greek Letters
Lowercase Greek letters are used extensively in mathematics, physics, statistics, and engineering. Each letter is produced by a backslash followed by the letter's English name. All Greek letter commands must be used inside math mode (between $...$ or \[...\]).
| Command | Letter | Common Usage |
|---|---|---|
\alpha | α | Angles, coefficients, significance level |
\beta | β | Angles, coefficients, beta function |
\gamma | γ | Euler-Mascheroni constant, photon |
\delta | δ | Small change, Dirac delta, Kronecker delta |
\epsilon | ϵ | Small positive quantity, set membership |
\varepsilon | ε | Preferred epsilon variant in analysis |
\zeta | ζ | Riemann zeta function, damping ratio |
\eta | η | Efficiency, metric tensor component |
\theta | θ | Angles, parameter estimation |
\vartheta | ϑ | Script-style theta variant |
\iota | ι | Inclusion map, index variable |
\kappa | κ | Curvature, condition number |
\lambda | λ | Eigenvalue, wavelength, rate parameter |
\mu | μ | Mean, micro prefix, measure |
\nu | ν | Frequency, degrees of freedom |
\xi | ξ | Random variable, coordinate |
\pi | π | Circle constant 3.14159... |
\varpi | ϖ | Variant pi (pomega) |
\rho | ρ | Density, correlation coefficient |
\varrho | ϱ | Variant rho with curled tail |
\sigma | σ | Standard deviation, stress |
\varsigma | ς | Final sigma (used in Greek text) |
\tau | τ | Torque, time constant, tau function |
\upsilon | υ | Upsilon meson |
\phi | ϕ | Golden ratio, phase angle |
\varphi | φ | Preferred phi variant, Euler's totient |
\chi | χ | Chi-squared test, susceptibility |
\psi | ψ | Wave function, angle |
\omega | ω | Angular frequency, argument of periapsis |
Example usage:
% Lowercase Greek letters in equations
$\alpha + \beta = \gamma$
$\epsilon > 0$
$\lambda_1, \lambda_2, \ldots, \lambda_n$ % eigenvalues
$\theta \in [0, 2\pi)$ % angle range
$\mu = \frac{1}{n} \sum_{i=1}^{n} x_i$ % sample meanUppercase Greek Letters
Not every Greek letter has a distinct uppercase form in LaTeX. Letters like Alpha (A) and Beta (B) look identical to their Latin counterparts, so LaTeX does not provide separate commands for them — simply type the Latin letter instead. The letters below have unique uppercase forms.
| Command | Letter | Common Usage |
|---|---|---|
\Gamma | Γ | Gamma function, Christoffel symbols |
\Delta | Δ | Change/difference, Laplacian |
\Theta | Θ | Big-O family, Heaviside function |
\Lambda | Λ | Diagonal matrix, cosmological constant |
\Xi | Ξ | Grand canonical partition function |
\Pi | Π | Product operator, profit function |
\Sigma | Σ | Summation, covariance matrix |
\Upsilon | Υ | Upsilon particle |
\Phi | Φ | Cumulative normal distribution, electric potential |
\Psi | Ψ | Wave function (quantum mechanics) |
\Omega | Ω | Ohm, sample space, solid angle |
Example usage:
% Uppercase Greek letters
$\Gamma(n) = (n-1)!$ % Gamma function
$\Delta x = x_2 - x_1$ % difference
$\Sigma = \begin{pmatrix}
\sigma_1^2 & \rho\sigma_1\sigma_2 \\
\rho\sigma_1\sigma_2 & \sigma_2^2
\end{pmatrix}$ % covariance matrix
$\Omega = \{1, 2, 3, 4, 5, 6\}$ % sample space
$f(n) = \Theta(n \log n)$ % algorithm complexityBinary Operators
Binary operators appear between two operands with appropriate spacing. LaTeX automatically adds the correct spacing around these symbols when used in math mode.
| Command | Symbol | Description |
|---|---|---|
\times | × | Multiplication (cross product) |
\div | ÷ | Division |
\pm | ± | Plus or minus |
\mp | ∓ | Minus or plus |
\cdot | · | Centered dot (scalar multiplication) |
\circ | ∘ | Function composition |
\ast | ∗ | Asterisk operator (convolution) |
\oplus | ⊕ | Direct sum, XOR |
\otimes | ⊗ | Tensor product, Kronecker product |
Example usage:
% Binary operators
$3 \times 4 = 12$
$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$ % quadratic formula
$\mathbf{a} \cdot \mathbf{b} = |a||b|\cos\theta$ % dot product
$(f \circ g)(x) = f(g(x))$ % composition
$V = V_1 \oplus V_2$ % direct sumRelation Symbols
Relation symbols express relationships between mathematical expressions. LaTeX spaces them differently from binary operators to preserve readability.
| Command | Symbol | Description |
|---|---|---|
\leq | ≤ | Less than or equal to |
\geq | ≥ | Greater than or equal to |
\neq | ≠ | Not equal to |
\approx | ≈ | Approximately equal to |
\equiv | ≡ | Identical / congruent to |
\sim | ∼ | Similar to, distributed as |
\simeq | ≃ | Asymptotically equal to |
\propto | ∝ | Proportional to |
\ll | ≪ | Much less than |
\gg | ≫ | Much greater than |
\subset | ⊂ | Proper subset of |
\supset | ⊃ | Proper superset of |
\subseteq | ⊆ | Subset of or equal to |
\supseteq | ⊇ | Superset of or equal to |
\in | ∈ | Element of |
\ni | ∋ | Contains as member |
\notin | ∉ | Not an element of |
Example usage:
% Relation symbols
$x \leq y$ % less than or equal
$a \neq b$ % not equal
$\pi \approx 3.14159$ % approximately
$a \equiv b \pmod{n}$ % modular congruence
$X \sim \mathcal{N}(\mu, \sigma^2)$ % normal distribution
$F \propto ma$ % proportional
$A \subseteq B$ % subset or equal
$x \in \mathbb{R}$ % element of real numbers
$0 \notin \mathbb{N}$ % not a natural number (by convention)Arrows
Arrow symbols are used for mappings, implications, limits, and many other mathematical constructs.
| Command | Symbol | Description |
|---|---|---|
\leftarrow | ← | Left arrow |
\rightarrow | → | Right arrow (tends to) |
\Leftarrow | ⇐ | Double left arrow (implied by) |
\Rightarrow | ⇒ | Double right arrow (implies) |
\leftrightarrow | ↔ | Bidirectional arrow |
\Leftrightarrow | ⇔ | If and only if (iff) |
\longrightarrow | ⟶ | Long right arrow |
\mapsto | ↦ | Maps to (function mapping) |
\uparrow | ↑ | Up arrow |
\downarrow | ↓ | Down arrow |
Example usage:
% Arrows in practice
$x \rightarrow \infty$ % x tends to infinity
$A \Rightarrow B$ % A implies B
$P \Leftrightarrow Q$ % P if and only if Q
$f: X \rightarrow Y$ % function from X to Y
$x \mapsto x^2$ % maps x to x squared
$f: \mathbb{R} \longrightarrow \mathbb{R}$ % long arrow mapping
$\lim_{n \to \infty} a_n = L$ % limit notation (\to is alias for \rightarrow)Miscellaneous Symbols
These symbols appear frequently in advanced mathematics, physics, and theoretical computer science.
| Command | Symbol | Description |
|---|---|---|
\infty | ∞ | Infinity |
\nabla | ∇ | Nabla / gradient operator |
\partial | ∂ | Partial derivative |
\forall | ∀ | For all (universal quantifier) |
\exists | ∃ | There exists (existential quantifier) |
\nexists | ∄ | There does not exist (requires amssymb) |
\emptyset | ∅ | Empty set (old style) |
\varnothing | ∅ | Empty set (preferred, requires amssymb) |
\hbar | ℏ | Reduced Planck constant |
\ell | ℓ | Cursive l (often used for length) |
Example usage:
% Miscellaneous symbols in context
$\lim_{x \to \infty} f(x) = 0$ % limit at infinity
$\nabla f = \left( \frac{\partial f}{\partial x},
\frac{\partial f}{\partial y},
\frac{\partial f}{\partial z} \right)$ % gradient
$\forall x \in \mathbb{R}, \; x^2 \geq 0$ % universal statement
$\exists n \in \mathbb{N} : n > 100$ % existential statement
$A \cap B = \varnothing$ % disjoint sets
$E = \frac{p^2}{2m} + V(x)$ % using \hbar: $E = \hbar\omega$Dots and Ellipses
LaTeX provides several dot commands for different positions and orientations. Choosing the right one improves the visual quality of your equations.
| Command | Symbol | Usage |
|---|---|---|
\ldots | … | Baseline dots (lists: 1, 2, ..., n) |
\cdots | ⋯ | Centered dots (sums: a + b + ... + z) |
\vdots | ⋮ | Vertical dots (matrices) |
\ddots | ⋱ | Diagonal dots (matrices) |
Example usage:
% Dots and ellipses
$x_1, x_2, \ldots, x_n$ % baseline dots for lists
$x_1 + x_2 + \cdots + x_n$ % centered dots for operations
% Matrix with dots
$\begin{pmatrix}
a_{11} & a_{12} & \cdots & a_{1n} \\
a_{21} & a_{22} & \cdots & a_{2n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m1} & a_{m2} & \cdots & a_{mn}
\end{pmatrix}$Accents and Decorations
Math accents add marks above or below symbols to denote vectors, estimates, averages, derivatives, and other modifications.
| Command | Example | Description |
|---|---|---|
\hat{a} | â | Hat (unit vector, estimator) |
\tilde{a} | ã | Tilde (approximation, conjugate) |
\bar{a} | ā | Bar (average, closure, conjugate) |
\vec{a} | a⃗ | Vector arrow |
\dot{a} | ȧ | Single dot (time derivative) |
\ddot{a} | ä | Double dot (second time derivative) |
\widehat{abc} | abĉ | Wide hat spanning multiple characters |
\widetilde{abc} | abc̃ | Wide tilde spanning multiple characters |
Example usage:
% Accents in practice
$\hat{\theta}$ % estimated parameter
$\bar{x} = \frac{1}{n}\sum x_i$ % sample mean
$\vec{F} = m\vec{a}$ % Newton's second law
$\dot{x} = \frac{dx}{dt}$ % velocity
$\ddot{x} = \frac{d^2x}{dt^2}$ % acceleration
$\widehat{ABC}$ % wide hat over angle name
$\tilde{f}(\xi) = \int_{-\infty}^{\infty} f(x) e^{-2\pi i \xi x} \, dx$ % Fourier transformUsing Symbols in Practice
Here is a comprehensive example combining many Greek letters and math symbols in real physics and mathematics equations:
\documentclass{article}
\usepackage{amsmath, amssymb}
\begin{document}
\section{Maxwell's Equations}
\begin{align}
\nabla \cdot \vec{E} &= \frac{\rho}{\epsilon_0} \\
\nabla \cdot \vec{B} &= 0 \\
\nabla \times \vec{E} &= -\frac{\partial \vec{B}}{\partial t} \\
\nabla \times \vec{B} &= \mu_0 \vec{J} + \mu_0 \epsilon_0 \frac{\partial \vec{E}}{\partial t}
\end{align}
\section{Schrödinger Equation}
\[
i\hbar \frac{\partial}{\partial t} \Psi(\vec{r}, t)
= \left[ -\frac{\hbar^2}{2m} \nabla^2 + V(\vec{r}, t) \right] \Psi(\vec{r}, t)
\]
\section{Euler's Identity}
\[
e^{i\pi} + 1 = 0
\]
\section{Navier-Stokes Equation}
\[
\rho \left( \frac{\partial \vec{v}}{\partial t}
+ (\vec{v} \cdot \nabla) \vec{v} \right)
= -\nabla p + \mu \nabla^2 \vec{v} + \rho \vec{g}
\]
\section{Gaussian Integral}
\[
\int_{-\infty}^{\infty} e^{-\alpha x^2} \, dx = \sqrt{\frac{\pi}{\alpha}},
\quad \alpha > 0
\]
\section{Cauchy's Integral Formula}
\[
f(a) = \frac{1}{2\pi i} \oint_\gamma \frac{f(z)}{z - a} \, dz
\]
\section{Bayes' Theorem}
\[
P(A \mid B) = \frac{P(B \mid A) \, P(A)}{P(B)},
\quad P(B) \neq 0
\]
\section{General Relativity — Einstein Field Equations}
\[
R_{\mu\nu} - \frac{1}{2} R g_{\mu\nu} + \Lambda g_{\mu\nu}
= \frac{8\pi G}{c^4} T_{\mu\nu}
\]
\end{document}The amssymb Package
The amssymb package from the American Mathematical Society adds hundreds of extra symbols. Load it with \usepackage{amssymb}. Here are some of the most useful additions:
| Command | Symbol | Description |
|---|---|---|
\mathbb{R} | ℝ | Blackboard bold R (real numbers) |
\mathbb{Z} | ℤ | Blackboard bold Z (integers) |
\mathbb{N} | ℕ | Blackboard bold N (natural numbers) |
\mathbb{Q} | ℚ | Blackboard bold Q (rationals) |
\mathbb{C} | ℂ | Blackboard bold C (complex numbers) |
\nexists | ∄ | Does not exist |
\varnothing | ∅ | Empty set (preferred style) |
\therefore | ∴ | Therefore |
\because | ∵ | Because |
\leqslant | ⩽ | Slanted less-or-equal |
\geqslant | ⩾ | Slanted greater-or-equal |
\lll | ⋘ | Very much less than |
\ggg | ⋙ | Very much greater than |
\trianglelefteq | ⊴ | Normal subgroup of |
\square | □ | QED square / d'Alembertian |
\blacksquare | ■ | Filled QED square |
Example with number sets:
\usepackage{amssymb}
% Number sets
$\mathbb{N} \subset \mathbb{Z} \subset \mathbb{Q}
\subset \mathbb{R} \subset \mathbb{C}$
% Proof endings
$\therefore x = 5 \quad \blacksquare$
% Non-existence
$\nexists \, x \in \mathbb{R} : x^2 < 0$Quick Reference Table
The most commonly searched LaTeX symbols in one place. Copy and paste the command directly into your document.
| What You Need | LaTeX Command | Result |
|---|---|---|
| Alpha | \alpha | α |
| Beta | \beta | β |
| Gamma | \gamma / \Gamma | γ / Γ |
| Delta | \delta / \Delta | δ / Δ |
| Epsilon | \epsilon / \varepsilon | ϵ / ε |
| Theta | \theta / \Theta | θ / Θ |
| Lambda | \lambda / \Lambda | λ / Λ |
| Mu | \mu | μ |
| Pi | \pi / \Pi | π / Π |
| Sigma | \sigma / \Sigma | σ / Σ |
| Phi | \phi / \varphi / \Phi | ϕ / φ / Φ |
| Omega | \omega / \Omega | ω / Ω |
| Psi | \psi / \Psi | ψ / Ψ |
| Infinity | \infty | ∞ |
| Not equal | \neq | ≠ |
| Approximately | \approx | ≈ |
| Less/greater or equal | \leq / \geq | ≤ / ≥ |
| Times / divide | \times / \div | × / ÷ |
| Plus-minus | \pm | ± |
| Right arrow | \rightarrow | → |
| Implies | \Rightarrow | ⇒ |
| If and only if | \Leftrightarrow | ⇔ |
| Partial derivative | \partial | ∂ |
| Nabla / gradient | \nabla | ∇ |
| For all | \forall | ∀ |
| There exists | \exists | ∃ |
| Element of | \in | ∈ |
| Not element of | \notin | ∉ |
| Subset | \subset / \subseteq | ⊂ / ⊆ |
| Empty set | \emptyset / \varnothing | ∅ |
| Dots (low / center) | \ldots / \cdots | … / ⋯ |
| Real numbers | \mathbb{R} | ℝ |
Next Steps
Now that you have a complete reference for Greek letters and math symbols, explore these related topics:
- Mathematical Expressions in LaTeX – Learn how to write inline and display math, fractions, roots, and more
- Subscripts and Superscripts – Master sub/superscript positioning and nesting
- Integrals, Sums, and Limits – Typeset integral signs, summation notation, and limit expressions
Free LaTeX Tools
- LaTeX Symbols Reference – Browse and search every Greek letter and math operator interactively
- LaTeX Preview – Test your symbol commands with live PDF preview
- Math to LaTeX – Convert handwritten equations to LaTeX
- AI LaTeX Generator – Generate LaTeX from text descriptions
Ready to start writing?
Try Octree – the AI-powered LaTeX editor that makes writing faster and easier. All symbols are just a keystroke away with intelligent autocomplete.
Try Octree Free →