Mathematical Symbols Guide
Comprehensive guide to mathematical symbols in LaTeX. Learn operators, relations, delimiters, and special notation for professional mathematical documents.
This guide provides detailed coverage of mathematical symbols in LaTeX, organized by category with examples and best practices.
Quick tip: For a searchable symbol reference table, see our Symbol Reference page.
Quick Symbol Reference
Common Mathematical Symbols
Symbol | LaTeX | Symbol | LaTeX |
---|---|---|---|
+ | + | - | - |
× | \times | ÷ | \div |
± | \pm | ∓ | \mp |
· | \cdot | ∗ | \ast |
⋆ | \star | ∘ | \circ |
⊕ | \oplus | ⊖ | \ominus |
⊗ | \otimes | ⊘ | \oslash |
= | = | ≠ | \neq |
< | < | > | > |
≤ | \leq | ≥ | \geq |
≪ | \ll | ≫ | \gg |
≈ | \approx | ∼ | \sim |
≃ | \simeq | ≅ | \cong |
≡ | \equiv | ∝ | \propto |
Set Theory and Logic Symbols
Symbol | LaTeX | Symbol | LaTeX |
---|---|---|---|
∈ | \in | ∉ | \notin |
⊂ | \subset | ⊆ | \subseteq |
⊃ | \supset | ⊇ | \supseteq |
∪ | \cup | ∩ | \cap |
∅ | \emptyset | ∅ | \varnothing |
∀ | \forall | ∃ | \exists |
∄ | \nexists | ∴ | \therefore |
∵ | \because | ⇒ | \implies |
⇔ | \iff | ¬ | \neg |
∧ | \land | ∨ | \lor |
Calculus and Analysis
Symbol | LaTeX | Symbol | LaTeX |
---|---|---|---|
∑ | \sum | ∏ | \prod |
∫ | \int | ∮ | \oint |
∂ | \partial | ∇ | \nabla |
∞ | \infty | lim | \lim |
→ | \to | → | \rightarrow |
⇒ | \Rightarrow | ⇔ | \Leftrightarrow |
Mathematical Operators
Basic Arithmetic Operators
Binary Operators
Rendered output:
A \cup B
→ A ∪ B (union)
A \cap B
→ A ∩ B (intersection)
p \land q
→ p ∧ q (logical and)
Large Operators
Rendered output:
\sum_{i=1}^{n} a_i
→ Σ(i=1 to n) aᵢ
\int_a^b f(x)\,dx
→ ∫ᵃᵇ f(x) dx
\bigcup_{i=1}^{n} A_i
→ ⋃(i=1 to n) Aᵢ
Relations and Comparisons
Basic Relations
Set Relations
Advanced Relations
Arrows
Basic Arrows
Special Arrows
Delimiters
Brackets and Parentheses
Advanced Delimiters
Greek Letters Extended
Variant Forms
Special Notation
Dots and Accents
Over and Under Operations
Mathematical Alphabets
Special Font Commands
Spacing in Math Mode
Manual Spacing
Common Symbol Combinations
Physics Notation
Statistics and Probability
Best Practices
Symbol usage guidelines:
- Consistency: Use the same notation throughout your document
- Standards: Follow field-specific conventions
- Clarity: Define non-standard symbols
- Spacing: Use proper spacing around operators
- Size: Use
\displaystyle
in important inline formulas - Packages: Load necessary packages (amsmath, amssymb)
Troubleshooting
Common symbol issues:
- Missing symbols: Add
\usepackage{amssymb}
- Wrong size: Use
\displaystyle
or display math - Spacing issues: Use manual spacing commands
- Font issues: Check if special packages needed
- Encoding: Use
\usepackage[utf8]{inputenc}
Quick Reference Card
Essential Symbols
Category | Symbols |
---|---|
Greek | \alpha \beta \gamma \delta \epsilon \theta \lambda \mu \pi \sigma \phi \omega |
Operators | \sum \prod \int \cup \cap \oplus \otimes |
Relations | \leq \geq \neq \approx \equiv \sim \subset \in |
Arrows | \to \gets \leftrightarrow \Rightarrow \mapsto |
Delimiters | \{ \} \langle \rangle \lfloor \rfloor |
Accents | \hat{} \tilde{} \bar{} \vec{} \dot{} |
Next: Master Matrices and arrays for structured mathematical layouts, or explore Scientific notation for physics and chemistry.