Mathematical Operators — Concise Reference

This page is a compact cheat sheet of common mathematical operators, grouped by category. Each entry lists symbols, meaning, a quick example, and (when relevant) programming equivalents.


1) Arithmetic

OperatorSymbolsMeaningExampleProgramming equivalents / notes
Addition+Add two numbers4 + 5 = 9+
SubtractionSubtract second from first9 − 5 = 4- (ASCII minus)
Multiplication×, ·, *Multiply3 × 5 = 15*
Division÷, /Divide12 ÷ 3 = 4/ (integer vs. floating matters)
Exponentiation^, superscriptPowerb^n** (Python), Math.pow(b,n)
Roots, ⁿ√Square/nth root√9 = 3, ³√8 = 2sqrt(x)
Factorial!Product 1 to n5! = 120factorial(n)
Percentage%Parts per hundred50% = 50/100Beware % = modulo in code
Modulomod, %Remainder7 mod 3 = 1% (C/Java/JS/Python)

2) Equality & Inequality

OperatorSymbolsMeaningExampleNotes
Equality=Same value2 + 2 = 4In code: == (equality), === (strict)
Not equalDifferent valuesπ ≠ 3!=, <> (SQL)
Less / Greater<, >Comparison2 < 3, 5 > 4
Less-or-equalx ≤ 10<=
Greater-or-equaly ≥ 0>=

3) Unary & Absolute / Rounding

OperatorSymbolsMeaningExampleNotes
Unary plus+xLeave unchanged+7 = 7
Unary minus−xNegation−(−3) = 3
Absolute value|x|Magnitude|−5| = 5abs(x)
Floor⌊x⌋Round down⌊2.9⌋ = 2floor(x)
Ceiling⌈x⌉Round up⌈2.1⌉ = 3ceil(x)
Signsgn(x)−1, 0, 1sgn(−2)=−1sign(x)

4) Summation, Product, Calculus

OperatorSymbolsMeaningExampleNotes
SummationSum over index∑_{i=1}^n iSigma notation
ProductProduct over index∏_{k=1}^n k = n!Pi notation
Derivatived/dx, 'Rate of changed/dx(x^2)=2xHigher order: d²/dx²
IntegralAccumulated area∫_0^1 x dx = 1/2Definite/indefinite
LimitlimApproach a valuelim_{x→0} sin x / x = 1
DifferenceΔDiscrete changeΔy = y_{n+1}-y_n
NablaGrad/Div/Curl∇f, ∇·F, ∇×FVector calculus

5) Linear Algebra & Vector Ops

OperatorSymbolsMeaningExampleNotes
Dot product·Scalar from vectorsa·b = |a||b|cosθdot(a,b)
Cross product×Vector orthogonala×b3-D only
TransposeTFlip rows/colsA^T
Determinantdet(A)Volume scaledet([[a,b],[c,d]])=ad−bc
Matrix multiplyABLinear comp.A(BC)=(AB)C@ (Python), * (NumPy)

6) Logic

OperatorSymbolsMeaningExampleProgramming equivalents
NOT¬, !Negation¬P!P, not P
ANDConjunctionP ∧ Q&&, and
ORDisjunctionP ∨ Q||, or
ImplicationIf…thenP → Q(!P) or Q (material)
EquivalenceIffP ↔ Q(P→Q)∧(Q→P)

7) Sets

OperatorSymbolsMeaningExampleNotes
Element of, Membership2 ∈ ℕ, −1 ∉ ℕ
Subset / Superset, Inclusion{1,2} ⊆ ℕProper: ,
UnionCombine{1}∪{2}={1,2}
IntersectionCommon{1,2}∩{2,3}={2}
Set differenceA without B{1,2,3}∖{2}={1,3}
ComplementAᶜOutside AU∖ANeeds universe U

8) Functions & Specials

OperatorSymbolsMeaningExampleNotes
Reciprocal1/xMultiplicative inverse1/4 = 0.25
Meanμ, \bar{x}Averageμ = (1/n)∑x_i
Medianmed(x)Middle value
Varianceσ², VarSpread of dataσ² = E[(X−μ)²]
Square / Cube, Power 2 / 33²=9, 2³=8
Exponentialexp(x)e^xexp(0)=1
Logarithmlog, ln, log₁₀, log₂Inverse of expln(e)=1Base matters
Clamp / Clipmin/maxLimit rangemin(max(x,a),b)

Quick Notes & Conventions

  • Symbols vs. ASCIIMany symbols (e.g., , ×, ÷, ) have ASCII fallbacks (-, *, /, <=). Be consistent within a document or codebase.
  • Operator precedence (informal)factorial/parentheses, exponents, unary ±, multiply/divide/mod, add/subtract, comparisons, logic.
  • Programming modulo% is remainder; some languages differ on negative operands.
  • Logarithmsdefault base may vary (ln for natural; log10 or log in calculators). Always specify base in technical writing.

Key terms in plain language

Open a term for a concise explanation of language used on this page.

Broadband

A general term for always-on, high-speed Internet access. Broadband can be delivered over fiber, cable, DSL, fixed wireless, cellular, or satellite networks.

Cloud Computing

Computing resources—such as applications, servers, storage, or databases—delivered from remote infrastructure and scaled as requirements change.

Cybersecurity

The practices and controls used to protect identities, devices, networks, applications, and data from unauthorized access, disruption, or manipulation.

Identity and Access Management (IAM)

The systems and policies that determine who a user is, what resources they may access, and how that access is authenticated and reviewed.

API

An application programming interface is a defined way for software systems to exchange data or request functions from one another.

Artificial Intelligence (AI)

Software designed to perform tasks involving prediction, classification, generation, reasoning, or decision support. Business use still requires clear data, governance, security, and human accountability.