Notes/Every Possible Math Symbol You Might Encounter
Back to Notes

Every Possible Math Symbol You Might Encounter

A visual reference of 150+ mathematical symbols organized by subject: arithmetic, algebra, calculus, linear algebra, abstract algebra, probability, statistics, set theory, logic, complexity, ML, finance, physics, chemistry, quantum mechanics, and information theory.

2025-09-08AI-Synthesized from Personal NotesSource2700+ words of raw notesEnrichmentsStructured contentPipelineMulti-pass AI review · Score: 99/100
Share
GuidesMath SymbolsReferenceNotation

What & Why

Mathematical notation is the universal shorthand of science and engineering. A single symbol like $\nabla$ encodes "take the partial derivative with respect to every variable and stack the results into a vector." A formula like $P(A|B) = \frac{P(B|A)P(A)}{P(B)}$ communicates an idea that would take a full page in English.

The problem: notation is dense, context-dependent, and rarely explained in one place. The same Greek letter $\alpha$ means "learning rate" in ML, "significance level" in statistics, "excess return" in finance, and "fine-structure constant" in physics.

This guide organizes 150+ symbols across 16 subject areas. Each entry gives the symbol, its name, what it means, and a concrete example. Bookmark it.

Arithmetic & Basic Operations

Symbol Name Meaning Example
$+$, $-$, $\times$, $\div$ Basic ops Addition, subtraction, multiplication, division $3 + 4 = 7$
$=$ Equals Left equals right $x = 5$
$\neq$ Not equal Left differs from right $3 \neq 4$
$\approx$ Approximately Close but not exact $\pi \approx 3.14$
$<$, $>$, $\leq$, $\geq$ Inequalities Less, greater, at most, at least $x \leq 10$
$|x|$ Absolute value Distance from zero $|-7| = 7$
$n!$ Factorial Product of integers 1 to $n$ $5! = 120$
$\binom{n}{k}$ Binomial coefficient Ways to choose $k$ from $n$ $\binom{5}{2} = 10$
$\lfloor x \rfloor$ Floor Round down $\lfloor 3.7 \rfloor = 3$
$\lceil x \rceil$ Ceiling Round up $\lceil 3.2 \rceil = 4$
$\text{mod}$ Modulo Remainder after division $7 \text{ mod } 3 = 1$
$\pm$ Plus-minus Both positive and negative $x = 3 \pm 0.5$
$\propto$ Proportional to Scales linearly with $F \propto m$

Summation, Products & Sequences

Symbol Name Meaning Example
$\sum$ Sigma (sum) Add up terms $\sum_{i=1}^{3} i = 6$
$\prod$ Pi (product) Multiply terms $\prod_{i=1}^{4} i = 24$
$\infty$ Infinity Larger than any finite number $\lim_{n \to \infty}$
$\lim$ Limit Value a function approaches $\lim_{x \to 0} \frac{\sin x}{x} = 1$
$\to$ Approaches / Maps to Tends toward, or input-output mapping $n \to \infty$, $f: x \to x^2$

Set Theory & Logic

Symbol Name Meaning Example
$\in$ Element of $x$ is in set $S$ $3 \in {1,2,3}$
$\notin$ Not element of $x$ is not in $S$ $5 \notin {1,2,3}$
$\subset$, $\subseteq$ Subset Every element of $A$ is in $B$ ${1,2} \subset {1,2,3}$
$\cup$ Union Elements in $A$ or $B$ ${1,2} \cup {2,3} = {1,2,3}$
$\cap$ Intersection Elements in both $A$ and $B$ ${1,2} \cap {2,3} = {2}$
$\setminus$ Set difference Elements in $A$ but not $B$ ${1,2,3} \setminus {2} = {1,3}$
$\emptyset$ Empty set Set with no elements ${1} \cap {2} = \emptyset$
$|S|$ Cardinality Number of elements $|{a,b,c}| = 3$
$\mathcal{P}(S)$ Power set Set of all subsets of $S$ $\mathcal{P}({1,2}) = {\emptyset, {1}, {2}, {1,2}}$
$\forall$ For all Holds for every element $\forall x > 0: x^2 > 0$
$\exists$ There exists At least one satisfies it $\exists x: x^2 = 4$
$\land$ AND Both true $p \land q$
$\lor$ OR At least one true $p \lor q$
$\neg$ NOT Opposite truth value $\neg p$
$\Rightarrow$ Implies If left then right $x > 2 \Rightarrow x > 1$
$\Leftrightarrow$ Iff (if and only if) Both share truth value $x = 3 \Leftrightarrow x+1 = 4$
$\therefore$ Therefore Conclusion follows $x = 3, \therefore x^2 = 9$

Number Sets

Symbol Name Members
$\mathbb{N}$ Natural numbers ${0, 1, 2, 3, \ldots}$
$\mathbb{Z}$ Integers ${\ldots, -2, -1, 0, 1, 2, \ldots}$
$\mathbb{Q}$ Rationals Fractions $\frac{p}{q}$
$\mathbb{R}$ Real numbers All points on the number line
$\mathbb{C}$ Complex numbers $a + bi$ where $i = \sqrt{-1}$
$\mathbb{R}^n$ n-dimensional real space Vectors with $n$ real components
$\mathbb{Z}_p$ Integers mod $p$ ${0, 1, \ldots, p-1}$ with modular arithmetic

Calculus

Symbol Name Meaning Example
$\frac{dy}{dx}$ or $f'(x)$ Derivative Rate of change $\frac{d}{dx}x^2 = 2x$
$\frac{\partial f}{\partial x}$ Partial derivative Derivative holding others constant $\frac{\partial}{\partial x}(xy) = y$
$\nabla f$ Gradient Vector of all partial derivatives $\nabla f = [\frac{\partial f}{\partial x}, \frac{\partial f}{\partial y}]$
$\nabla \cdot \mathbf{F}$ Divergence How much a field "spreads out" $\nabla \cdot \mathbf{F} = \frac{\partial F_x}{\partial x} + \frac{\partial F_y}{\partial y}$
$\nabla \times \mathbf{F}$ Curl How much a field "rotates" Used in electromagnetism
$\nabla^2 f$ Laplacian Sum of second partial derivatives $\nabla^2 f = \frac{\partial^2 f}{\partial x^2} + \frac{\partial^2 f}{\partial y^2}$
$\int$ Integral Area under curve / antiderivative $\int_0^1 x,dx = \frac{1}{2}$
$\oint$ Contour integral Integral around a closed path $\oint_C \mathbf{F} \cdot d\mathbf{r}$
$\Delta$ Delta (change) Finite change in a quantity $\Delta x = x_2 - x_1$
$dx$ Differential Infinitesimally small change $dy = f'(x),dx$
$e$ Euler's number $\approx 2.718$, base of natural log $e^{i\pi} + 1 = 0$

Linear Algebra

Symbol Name Meaning Example
$\mathbf{v}$ or $\vec{v}$ Vector Ordered list of numbers $\mathbf{v} = [3, 4, 5]$
$A$ Matrix 2D grid of numbers $A = \begin{bmatrix} 1 & 2 \ 3 & 4 \end{bmatrix}$
$A^T$ Transpose Flip rows and columns $[1,2,3]^T$ is a column vector
$A^{-1}$ Inverse $A \cdot A^{-1} = I$ Solving $Ax = b$ gives $x = A^{-1}b$
$I$ Identity matrix 1s on diagonal, 0s elsewhere $AI = A$
$\det(A)$ Determinant Scaling factor, 0 means singular For 2x2: $ad - bc$
$\mathbf{a} \cdot \mathbf{b}$ Dot product Sum of element-wise products $[1,2] \cdot [3,4] = 11$
$\mathbf{a} \times \mathbf{b}$ Cross product Vector perpendicular to both (3D) $\hat{i} \times \hat{j} = \hat{k}$
$|\mathbf{v}|$ Norm Length of a vector $|[3,4]| = 5$
$\lambda$ Eigenvalue $A\mathbf{v} = \lambda\mathbf{v}$ Scaling factor of eigenvector
$\Sigma$ Covariance matrix Pairwise covariances of variables $\sigma_p^2 = \mathbf{w}^T\Sigma\mathbf{w}$
$\text{tr}(A)$ Trace Sum of diagonal elements $\text{tr}(I_3) = 3$
$\text{rank}(A)$ Rank Number of linearly independent rows/cols $\text{rank}(I_n) = n$
$\otimes$ Tensor/Kronecker product Outer product of matrices $A \otimes B$

Abstract Algebra

Symbol Name Meaning Example
$(G, \cdot)$ Group Set with an associative binary operation, identity, and inverses $(\mathbb{Z}, +)$ is a group
$e$ or $1_G$ Identity element $a \cdot e = e \cdot a = a$ $0$ in $(\mathbb{Z}, +)$, $1$ in $(\mathbb{R}^*, \times)$
$a^{-1}$ Inverse $a \cdot a^{-1} = e$ $-3$ is the inverse of $3$ in $(\mathbb{Z}, +)$
$|G|$ Order of a group Number of elements $|\mathbb{Z}_5| = 5$
$\text{ord}(a)$ Order of an element Smallest $n$ such that $a^n = e$ $\text{ord}(2) = 4$ in $\mathbb{Z}_5^*$
$H \leq G$ Subgroup $H$ is a group contained in $G$ $2\mathbb{Z} \leq \mathbb{Z}$
$G / H$ Quotient group Group of cosets of $H$ in $G$ $\mathbb{Z} / 3\mathbb{Z} = {0,1,2}$
$\cong$ Isomorphic Same structure, different labels $\mathbb{Z}_2 \times \mathbb{Z}_3 \cong \mathbb{Z}_6$
$\text{ker}(\phi)$ Kernel Elements mapped to identity by $\phi$ $\text{ker}(\det) = SL_n$
$\text{im}(\phi)$ Image Output set of homomorphism $\phi$ $\text{im}(\phi) \leq G'$
$(R, +, \cdot)$ Ring Set with addition and multiplication $(\mathbb{Z}, +, \cdot)$
$(F, +, \cdot)$ Field Ring where every nonzero element has a multiplicative inverse $\mathbb{Q}, \mathbb{R}, \mathbb{C}, \mathbb{F}_p$
$\mathbb{F}_q$ or $GF(q)$ Galois field Finite field with $q = p^n$ elements $\mathbb{F}_2 = {0, 1}$ (binary)
$\langle g \rangle$ Cyclic group Group generated by element $g$ $\langle 2 \rangle = {0,2,4,1,3}$ in $\mathbb{Z}_5$
$S_n$ Symmetric group All permutations of $n$ elements $|S_3| = 6$
$\trianglelefteq$ Normal subgroup $gHg^{-1} = H$ for all $g \in G$ Required for quotient groups

Probability & Statistics

Symbol Name Meaning Example
$P(A)$ Probability Likelihood of $A$, between 0 and 1 $P(\text{heads}) = 0.5$
$P(A|B)$ Conditional probability Probability of $A$ given $B$ $P(\text{rain}|\text{clouds})$
$E[X]$ or $\mu$ Expected value Average over infinite trials $E[X] = \sum x_i P(x_i)$
$\text{Var}(X)$ or $\sigma^2$ Variance Average squared deviation $\sigma^2 = E[(X - \mu)^2]$
$\sigma$ Standard deviation $\sqrt{\text{Var}(X)}$, same units as data $\sigma = 15%$ annual volatility
$\text{Cov}(X,Y)$ Covariance How two variables co-move $E[(X-\mu_X)(Y-\mu_Y)]$
$\rho$ Correlation Normalized covariance, $[-1, 1]$ $\rho = \frac{\text{Cov}(X,Y)}{\sigma_X \sigma_Y}$
$\sim$ Distributed as Variable follows a distribution $X \sim \mathcal{N}(0, 1)$
$\mathcal{N}(\mu, \sigma^2)$ Normal distribution Bell curve Standard normal: $\mathcal{N}(0,1)$
$\hat{\theta}$ Estimator Estimate from data $\hat{\mu} = \frac{1}{n}\sum x_i$
$\bar{x}$ Sample mean Average of observations $\bar{x} = \frac{1}{n}\sum x_i$
$\mathcal{U}(a,b)$ Uniform distribution Equal probability on $[a,b]$ $X \sim \mathcal{U}(0,1)$
$\text{Bernoulli}(p)$ Bernoulli Binary outcome with probability $p$ Coin flip: $p = 0.5$
$\text{Poisson}(\lambda)$ Poisson Count of events in fixed interval $P(X=k) = \frac{\lambda^k e^{-\lambda}}{k!}$

Complexity & CS Notation

Symbol Name Meaning Example
$O(f(n))$ Big-O Upper bound on growth Binary search: $O(\log n)$
$\Omega(f(n))$ Big-Omega Lower bound on growth Comparison sort: $\Omega(n \log n)$
$\Theta(f(n))$ Big-Theta Tight bound Merge sort: $\Theta(n \log n)$
$\log n$ Logarithm Base 2 in CS $\log_2 1024 = 10$
$\ln n$ Natural log Base $e$ $\ln e = 1$
$\oplus$ XOR Exclusive or $1 \oplus 1 = 0$
$\ll$, $\gg$ Bit shift Shift bits left/right $5 \ll 1 = 10$
$\mathcal{P}$, $\mathcal{NP}$ Complexity classes Poly-time solvable / verifiable $\mathcal{P} \stackrel{?}{=} \mathcal{NP}$

Machine Learning & Optimization

Symbol Name Meaning Example
$\theta$ Parameters Learnable model weights $f(x; \theta) = \theta_0 + \theta_1 x$
$\mathcal{L}$ or $J$ Loss function Prediction error measure $\mathcal{L} = \frac{1}{n}\sum(y_i - \hat{y}_i)^2$
$\alpha$ or $\eta$ Learning rate Gradient descent step size $\theta \leftarrow \theta - \alpha \nabla \mathcal{L}$
$\arg\min$, $\arg\max$ Argmin/Argmax Input that min/maximizes $\hat{\theta} = \arg\min_\theta \mathcal{L}$
$\leftarrow$ Assignment Update left with right $w \leftarrow w - \alpha \nabla L$
$\odot$ Hadamard product Element-wise multiply $[1,2] \odot [3,4] = [3,8]$
$\text{softmax}$ Softmax Scores to probabilities $\frac{e^{z_i}}{\sum_j e^{z_j}}$
$\text{ReLU}$ ReLU $\max(0, x)$ Activation function
$\mathcal{D}$ Dataset Collection of training examples $(x_i, y_i) \in \mathcal{D}$
$\text{KL}(P | Q)$ KL divergence How $P$ differs from $Q$ $\sum P(x) \ln \frac{P(x)}{Q(x)}$

Finance & Quantitative Notation

Symbol Name Meaning Example
$R$ or $r$ Return Percentage gain/loss $R = \frac{P_t - P_{t-1}}{P_{t-1}}$
$R_f$ Risk-free rate Riskless asset return $R_f \approx 0.04$
$\beta$ Beta Market sensitivity $R_i = R_f + \beta(R_m - R_f)$
$\alpha$ Alpha (finance) Excess return above model Manager skill measure
$S_t$ Spot price Current price at time $t$ $S_0 = 100$
$C$, $P$ Call / Put Option prices $C = S\Phi(d_1) - Ke^{-rT}\Phi(d_2)$
$K$ Strike price Option exercise price $K = 105$
$T$, $\tau$ Time to expiry Years until expiration $T = 0.25$ (3 months)
$\Phi(x)$ Standard normal CDF $P(Z \leq x)$ $\Phi(0) = 0.5$
$\text{VaR}$ Value at Risk Max loss at confidence level 95% VaR
$\text{SR}$ Sharpe Ratio Risk-adjusted return $\frac{E[R] - R_f}{\sigma}$
$\mathbf{w}$ Portfolio weights Asset fractions (sum to 1) $\mathbf{w} = [0.6, 0.3, 0.1]$
$dS$ Stochastic differential Infinitesimal price change $dS = \mu S,dt + \sigma S,dW$
$dW$ or $dB$ Wiener process increment Random Brownian motion step $dW \sim \mathcal{N}(0, dt)$

Physics

Symbol Name Meaning Example
$F$ Force Push or pull on an object $F = ma$ (Newton's second law)
$m$ Mass Amount of matter $m = 70$ kg
$a$ Acceleration Rate of velocity change $a = 9.8$ m/s$^2$ (gravity)
$v$ Velocity Speed with direction $v = \frac{dx}{dt}$
$p$ Momentum Mass times velocity $p = mv$
$E$ or $K$ Energy Capacity to do work $E = \frac{1}{2}mv^2$ (kinetic)
$U$ or $V$ Potential energy Stored energy from position $U = mgh$
$W$ Work Force times distance $W = F \cdot d$
$P$ Power Rate of energy transfer $P = \frac{dW}{dt}$
$c$ Speed of light $\approx 3 \times 10^8$ m/s $E = mc^2$
$G$ Gravitational constant $6.674 \times 10^{-11}$ N m$^2$/kg$^2$ $F = \frac{Gm_1 m_2}{r^2}$
$k_B$ Boltzmann constant $1.38 \times 10^{-23}$ J/K $E = \frac{3}{2}k_B T$
$\hbar$ Reduced Planck constant $h / 2\pi$ $E = \hbar \omega$
$\omega$ Angular frequency Radians per second $\omega = 2\pi f$
$\mathbf{E}$, $\mathbf{B}$ Electric/Magnetic field Force fields in electromagnetism Maxwell's equations
$\epsilon_0$ Permittivity of free space Electric constant $F = \frac{q_1 q_2}{4\pi\epsilon_0 r^2}$
$\mu_0$ Permeability of free space Magnetic constant $B = \frac{\mu_0 I}{2\pi r}$

Chemistry

Symbol Name Meaning Example
$\rightarrow$ Reaction arrow Reactants yield products $2H_2 + O_2 \rightarrow 2H_2O$
$\rightleftharpoons$ Equilibrium Reaction goes both ways $N_2 + 3H_2 \rightleftharpoons 2NH_3$
$K_{eq}$ Equilibrium constant Ratio of products to reactants $K_{eq} = \frac{[C]^c[D]^d}{[A]^a[B]^b}$
$\Delta G$ Gibbs free energy change Spontaneity: negative = spontaneous $\Delta G = \Delta H - T\Delta S$
$\Delta H$ Enthalpy change Heat absorbed/released $\Delta H < 0$ (exothermic)
$\Delta S$ Entropy change Disorder change $\Delta S > 0$ (more disorder)
$[X]$ Concentration Moles per liter (molarity) $[HCl] = 0.1$ M
$pH$ Acidity $-\log_{10}[H^+]$ $pH = 7$ (neutral)
$n$ Moles Amount of substance $n = \frac{m}{M}$
$R$ Gas constant $8.314$ J/(mol K) $PV = nRT$
$N_A$ Avogadro's number $6.022 \times 10^{23}$ mol$^{-1}$ Atoms per mole

Quantum Mechanics

Symbol Name Meaning Example
$\psi$ Wave function Quantum state of a system $\psi(x, t)$
$|\psi|^2$ Probability density Likelihood of finding particle at $x$ $\int |\psi|^2 dx = 1$
$\hat{H}$ Hamiltonian operator Total energy operator $\hat{H}\psi = E\psi$
$\langle A \rangle$ Expectation value Average measurement outcome $\langle x \rangle = \int \psi^* x \psi,dx$
$\langle \phi | \psi \rangle$ Bra-ket (inner product) Overlap between two states $\langle 0 | 1 \rangle = 0$ (orthogonal)
$| \psi \rangle$ Ket Quantum state vector $| \psi \rangle = \alpha|0\rangle + \beta|1\rangle$
$\langle \psi |$ Bra Conjugate transpose of ket $\langle \psi | = (| \psi \rangle)^\dagger$
$\dagger$ Dagger (adjoint) Conjugate transpose $A^\dagger = (\bar{A})^T$
$\Delta x \cdot \Delta p \geq \frac{\hbar}{2}$ Uncertainty principle Cannot know position and momentum exactly Heisenberg
$\otimes$ Tensor product Combining quantum systems $|00\rangle = |0\rangle \otimes |0\rangle$
$\sigma_x, \sigma_y, \sigma_z$ Pauli matrices Spin-1/2 operators $\sigma_z = \begin{bmatrix}1&0\0&-1\end{bmatrix}$

Information Theory

Symbol Name Meaning Example
$H(X)$ Entropy Average information content $H(X) = -\sum P(x) \log P(x)$
$H(X|Y)$ Conditional entropy Remaining uncertainty given $Y$ $H(X|Y) \leq H(X)$
$I(X;Y)$ Mutual information Shared information between $X$ and $Y$ $I(X;Y) = H(X) - H(X|Y)$
$D_{KL}(P|Q)$ KL divergence How $P$ differs from $Q$ $\sum P(x) \ln \frac{P(x)}{Q(x)}$
$C$ Channel capacity Max reliable transmission rate $C = \max_{P(x)} I(X;Y)$
$\log_2$ Log base 2 Information measured in bits $H(\text{fair coin}) = 1$ bit

Geometry & Topology

Symbol Name Meaning Example
$\pi$ Pi Ratio of circumference to diameter $C = 2\pi r$
$\angle$ Angle Measure of rotation between two lines $\angle ABC = 90°$
$\perp$ Perpendicular Lines meet at right angles $AB \perp CD$
$\parallel$ Parallel Lines never meet $AB \parallel CD$
$\sim$ Similar Same shape, different size $\triangle ABC \sim \triangle DEF$
$\cong$ Congruent Same shape and size $\triangle ABC \cong \triangle DEF$
$\chi$ Euler characteristic Topological invariant: $V - E + F$ Sphere: $\chi = 2$
$g$ Genus Number of "holes" in a surface Torus: $g = 1$
$d(x,y)$ Metric / Distance Distance between two points $d(x,y) = |x - y|$

Greek Letters Quick Reference

Letter Name Common Uses
$\alpha$ Alpha Learning rate, significance level, excess return, fine-structure constant
$\beta$ Beta Market sensitivity, Type II error, velocity ratio ($v/c$)
$\gamma$ Gamma Discount factor, Lorentz factor, Euler-Mascheroni constant
$\delta$, $\Delta$ Delta Small change, finite change, option sensitivity, Laplacian
$\epsilon$ Epsilon Small number, error term, permittivity, exploration rate
$\zeta$ Zeta Riemann zeta function, damping ratio
$\eta$ Eta Learning rate, viscosity, efficiency
$\theta$ Theta Parameters, angle, time decay, Heaviside function
$\kappa$ Kappa Curvature, condition number, dielectric constant
$\lambda$ Lambda Eigenvalue, wavelength, regularization, decay constant
$\mu$ Mu Mean, micro- prefix ($10^{-6}$), chemical potential, friction
$\nu$ Nu Frequency, degrees of freedom, kinematic viscosity
$\xi$ Xi Random variable, damping ratio, reaction coordinate
$\pi$, $\Pi$ Pi 3.14159, product ($\Pi$), policy (RL), profit
$\rho$ Rho Correlation, density, resistivity, spectral radius
$\sigma$, $\Sigma$ Sigma Std deviation, summation, covariance matrix, stress
$\tau$ Tau Time constant, torque, shear stress, proper time
$\phi$, $\Phi$ Phi Normal PDF/CDF, golden ratio, electric potential, phase
$\chi$ Chi Chi-squared test, Euler characteristic, susceptibility
$\psi$, $\Psi$ Psi Wave function, digamma function, stream function
$\omega$, $\Omega$ Omega Angular frequency, sample space, ohm, solid angle

Key Takeaways

  • Math notation is a compression algorithm. Each symbol packs a concept that would take a full sentence in English.

  • Context determines meaning. The same symbol ($\alpha$) means learning rate in ML, significance level in statistics, excess return in finance, and fine-structure constant in physics. Always check which field you are reading.

  • Greek letters are the most overloaded symbols in all of science. The table above maps each to its common uses across fields.

  • When you encounter an unfamiliar symbol, check three things: (1) is it defined earlier in the document? (2) what field is this from? (3) is it in one of the tables above?

  • Bookmark this page. You will come back to it more than you expect.