SET THEORY

Basic Set Operations

SymbolNameRead AsExampleMeaning
Element of"is an element of"3 ∈ {1,2,3}3 is in the set
Not element of"is not an element of"5 ∉ {1,2,3}5 is not in the set
Subset"is a subset of"{1,2} ⊆ {1,2,3}Every element of first is in second (allows equality)
Proper subset"is a proper subset of"{1,2} ⊊ {1,2,3}Subset but strictly not equal
Superset"is a superset of"{1,2,3} ⊇ {1,2}Contains all elements of second set (allows equality)
Proper superset"is a proper superset of"{1,2,3} ⊋ {1,2}Superset but strictly not equal
Union"union"A ∪ BEverything in A or B or both
Intersection"intersection"A ∩ BOnly what's in both A and B
∖ or -Set difference"minus" or "set difference"A ∖ BElements in A but not in B
∅ or {}Empty set"the empty set"A ∩ B = ∅Set with no elements
𝒫(A) or P(A)Power set"power set of A"𝒫({1,2})Set of all subsets of A
∣ or :Such that"such that"{x ∣ x > 0}Defines set membership condition
∣A∣ or #ACardinality"cardinality of A"∣{1,2,3}∣ = 3Number of elements in set A
×Cartesian product"cross"A × BAll ordered pairs (a,b) where a ∈ A, b ∈ B
Aᶜ or A' or ĀComplement"A complement"AᶜEverything not in A (within universal set)
Disjoint union"disjoint union"A ⊎ BUnion where A and B are assumed disjoint, or tagged to force disjointness
Symmetric difference"symmetric difference"A △ B(A ∖ B) ∪ (B ∖ A)

Note on subset notation: Convention varies by text. In this guide, ⊆ allows equality while ⊊ requires strict inequality. Some texts use ⊂ for subset (possibly equal) and ⊊ for proper subset.

Common Number Sets

SymbolNameRead AsMeaning
Natural numbers"the naturals"{0, 1, 2, 3, ...} or {1, 2, 3, ...} (convention varies)
ℕ₀Naturals with zero"N-zero" or "N-naught"{0, 1, 2, 3, ...} (explicit zero inclusion)
ℕ* or ℕ⁺Positive naturals"N-star" or "N-plus"{1, 2, 3, ...} (explicit zero exclusion)
Integers"the integers"{..., -2, -1, 0, 1, 2, ...}
Rational numbers"the rationals"All fractions p/q where p,q are integers, q ≠ 0
Real numbers"the reals"All numbers on number line
Complex numbers"the complex numbers"Numbers of form a + bi where i² = -1
ℤ⁺Positive integers"positive integers"{1, 2, 3, ...}
ℝ⁺Positive reals"positive reals"All positive real numbers
ℝ⁻Negative reals"negative reals"All negative real numbers
ℚ⁺Positive rationals"positive rationals"Positive fractions
Prime numbers"the primes"{2, 3, 5, 7, 11, ...}

LOGIC AND BOOLEAN ALGEBRA

Logical Operators

SymbolNameRead AsTruth ConditionExample
¬ or ~ or !Negation/NOT"not"Opposite of P¬P is true when P is false
∧ or & or ·Conjunction/AND"and"Both trueP ∧ Q true only when both P and Q are true
∨ or ∣ or +Disjunction/OR"or"At least one trueP ∨ Q true when P or Q or both are true
⊕ or ⊻Exclusive OR/XOR"xor" or "exclusive or"Exactly one trueP ⊕ Q true when exactly one is true
→ or ⇒ or ⊃Implication"implies" or "if...then"False only when P true and Q falseP → Q
↔ or ⇔ or ≡Biconditional/IFF"if and only if" or "iff"Both same valueP ↔ Q true when both match
⊤ or T or 1Tautology/True"true" or "top"Always trueUniversal truth
⊥ or F or 0Contradiction/False"false" or "bottom"Always falseUniversal falsehood (in logic context)
Semantic entailment"models" or "entails"Logical consequenceA ⊨ B means B is true whenever A is
Syntactic entailment"proves" or "derives"Provable fromA ⊢ B means B is provable from A
Does not prove"does not prove"Not provableA ⊬ B means B not provable from A
Does not model"does not model"Not a consequenceA ⊭ B means B not true when A is

Note on ⊥: This symbol is heavily overloaded. See "Context-Dependent Symbols" section below for all meanings.

QUANTIFIERS

SymbolNameRead AsExampleMeaning
Universal quantifier"for all" or "for every"∀x ∈ S, P(x)Statement is true for every x in S
Existential quantifier"there exists"∃x ∈ S, P(x)Statement is true for at least one x in S
∃!Unique existence"there exists a unique"∃!x, P(x)Exactly one x makes P(x) true
Does not exist"there does not exist"∄x ∈ S, P(x)No x in S makes P(x) true

RELATIONS AND FUNCTIONS

Relations

SymbolNameRead AsExampleMeaning
R ⊆ A×BRelation"R is a relation from A to B"R ⊆ ℕ×ℕR is a set of ordered pairs
aRbInfix notation"a is related to b by R"3R5(a,b) ∈ R
R⁻¹Inverse relation"R inverse"If aRb then bR⁻¹aReverse all pairs
R ∘ SComposition"R composed with S"(a,c) ∈ R∘SApply S first, then R: (a,c) ∈ R∘S iff ∃b: (a,b) ∈ S and (b,c) ∈ R
dom(R)Domain"domain of R"dom(R)Set of all first elements
ran(R) or img(R)Range/Image"range of R"ran(R)Set of all second elements
cod(R)Codomain"codomain of R"cod(R)Target set of relation

Functions

SymbolNameRead AsExampleMeaning
f: A → BFunction"f from A to B"f: ℕ → ℝFunction mapping A to B
f(x)Function application"f of x"f(3) = 9Value of f at x
f ∘ gFunction composition"f composed with g"(f∘g)(x) = f(g(x))Apply g first, then f
f⁻¹Inverse function"f inverse"f⁻¹(y) = xReverses the function (requires f bijective)
f⁻¹(B)Preimage"f inverse of B"f⁻¹(B)Set of inputs mapping to B (defined for any function)
Maps to"maps to"x ↦ x²Shows mapping
Injection/Embedding"injects into" or "embeds in"f: A ↪ BOne-to-one function (injective)
λLambda"lambda"λx.x+1Anonymous function definition
idₐ or idIdentity function"identity on A"id(x) = xMaps each element to itself
Undefined/Bottom"undefined" or "bottom"f(x) = ⊥Function undefined at x (partial function context)
argmaxArgument maximum"argmax"argmax f(x)Value of x that maximizes f
argminArgument minimum"argmin"argmin f(x)Value of x that minimizes f

COMPARISON AND ORDERING

SymbolNameRead AsMeaning
=Equals"equals"Exactly the same value
≠ or ≢Not equal"not equal to"Different values
<Less than"less than"Strictly smaller
>Greater than"greater than"Strictly larger
≤ or ⩽Less than or equal"less than or equal to"Smaller or same
≥ or ⩾Greater than or equal"greater than or equal to"Larger or same
Much less than"much less than"Significantly smaller
Much greater than"much greater than"Significantly larger
Approximately equal"approximately equal to"Close to
Equivalent to"equivalent to" or "identical to"Context-dependent: logical equivalence, congruence (mod n), or identity
Not equivalent"not equivalent to"Not the same structure
Proportional to"proportional to"Constant multiple relationship
:= or ≔Definition"is defined as"Defining a new term
Equal by definition"equal by definition"Defined to be equal
Defined as"defined as"Definition symbol
Precedes"precedes"Comes before in ordering
Succeeds"succeeds"Comes after in ordering
Precedes or equals"precedes or equals"Comes before or equal
Succeeds or equals"succeeds or equals"Comes after or equal

ARITHMETIC AND ALGEBRA

Basic Operations

SymbolNameRead AsExample
+Plus/Addition"plus"2 + 3 = 5
-Minus/Subtraction"minus"5 - 2 = 3
× or · or *Times/Multiplication"times"2 × 3 = 6
÷ or /Division"divided by"6 ÷ 2 = 3
±Plus-minus"plus or minus"x = ±3
Minus-plus"minus or plus"Opposite of ±

Exponents and Roots

SymbolNameRead AsExample
xⁿExponentiation"x to the n" or "x to the power of n"2³ = 8
√x or x^(1/2)Square root"square root of x"√9 = 3
∛x or x^(1/3)Cube root"cube root of x"∛8 = 2
ⁿ√x or x^(1/n)nth root"nth root of x"⁴√16 = 2
∣x∣Absolute value"absolute value of x"∣-5∣ = 5 (for scalars)
⌊x⌋Floor"floor of x"⌊3.7⌋ = 3
⌈x⌉Ceiling"ceiling of x"⌈3.2⌉ = 4
n!Factorial"n factorial"5! = 120
n!!Double factorial"n double factorial"8!! = 8·6·4·2 = 384

Modular Arithmetic

SymbolNameRead AsExampleMeaning
modModulo"mod"7 mod 3 = 1Remainder after division
≡ (mod n)Congruent modulo"congruent to ... modulo n"7 ≡ 1 (mod 3)Same remainder when divided by n
a ∣ bDivides"a divides b"3 ∣ 12a divides b evenly (b is a multiple of a)
a ∤ bDoes not divide"a does not divide b"3 ∤ 10a doesn't divide b evenly
gcd(a,b)Greatest common divisor"gcd of a and b"gcd(12,8) = 4Largest number dividing both
lcm(a,b)Least common multiple"lcm of a and b"lcm(12,8) = 24Smallest number both divide

SUMMATION AND PRODUCTS

SymbolNameRead AsExampleMeaning
Summation"sum from ... to ..."∑(i=1 to n) iAdd up all terms
Product"product from ... to ..."∏(i=1 to n) iMultiply all terms (equals n!)
Integral"integral of"∫f(x)dxArea under curve (calculus)
Partial derivative"partial"∂f/∂xDerivative with respect to one variable
Nabla/Gradient"del" or "gradient"∇fVector of partial derivatives
ΔDelta/Change"delta" or "change in"ΔxChange in x
d/dxDerivative"d by dx"d/dx f(x)Rate of change
Contour integral"contour integral"∮ f(z)dzIntegral along closed path

PROBABILITY AND STATISTICS

SymbolNameRead AsExampleMeaning
P(A) or Pr[A]Probability"probability of A"P(heads) = 0.5Likelihood of event A
P(A∣B)Conditional probability"probability of A given B"P(A∣B)Probability of A when B occurred
E[X] or μExpected value/Mean"expected value of X" or "mu"E[X] = 5Average value
Var(X) or σ²Variance"variance of X" or "sigma squared"Var(X)Spread of data
σStandard deviation"sigma"σ = 2Square root of variance
~Distributed as"is distributed as"X ~ N(0,1)X follows specified distribution
Intersection (in probability)"intersection"P(A ∩ B)Event intersection: both events occur
Union (in probability)"union"P(A ∪ B)Event union: at least one event occurs
A ⊥ B or A ⊥⊥ BIndependent"A independent of B"A ⊥⊥ BEvents don't affect each other
Cov(X,Y)Covariance"covariance of X and Y"Cov(X,Y)Joint variability
ρCorrelation coefficient"rho"ρ(X,Y)Normalized covariance (-1 to 1)
𝟙ₐ or IₐIndicator function"indicator of A"𝟙ₐ(x) = 1 if x ∈ A1 if condition met, 0 otherwise

Note on independence: A ⊥⊥ B is standard statistical notation; A ⊥ B is common in probability texts. Plain ⊥ alone typically means "false" or "bottom" in other contexts.

COMBINATORICS

SymbolNameRead AsFormulaMeaning
C(n,k) or ⁿCₖ or (n choose k)Combinations"n choose k"n!/(k!(n-k)!)Ways to choose k from n (order doesn't matter)
P(n,k) or ⁿPₖPermutations"n permute k"n!/(n-k)!Ways to arrange k from n (order matters)
n!Factorial"n factorial"n×(n-1)×...×1Product of all positive integers up to n
n!!Double factorial"n double factorial"n(n-2)(n-4)...Product of every other integer down to 1 or 2

SEQUENCES AND SERIES

SymbolNameRead AsExampleMeaning
aₙSequence term"a sub n"a₃ = 7The nth term of sequence
{aₙ}Sequence"sequence a sub n"{1,2,3,4,...}Ordered list
limLimit"limit as ... approaches ..."lim(n→∞) aₙValue sequence approaches
Approaches/Converges to"approaches" or "goes to"n → ∞Gets arbitrarily close to
Infinity"infinity"lim(n→∞)Unbounded growth
... or ⋯Ellipsis"and so on"1,2,3,...Pattern continues
∑ₙ₌₁^∞Infinite sum"sum from n equals one to infinity"∑ₙ₌₁^∞ 1/n²Converges or diverges

COMPLEXITY AND BIG-O NOTATION

SymbolNameRead AsMeaning
O(f(n))Big-O"Big-O of f of n"Upper bound on growth rate
Ω(f(n))Big-Omega"Big-Omega of f of n"Lower bound on growth rate
Θ(f(n))Big-Theta"Big-Theta of f of n"Tight bound (both upper and lower)
o(f(n))Little-o"Little-o of f of n"g(n) ∈ o(f(n)) if lim(n→∞) g(n)/f(n) = 0
ω(f(n))Little-omega"Little-omega of f of n"g(n) ∈ ω(f(n)) if lim(n→∞) g(n)/f(n) = ∞
f(n) ~ g(n)Asymptotically equal"f asymptotically equals g"lim(n→∞) f(n)/g(n) = 1 (stricter than Θ)

Note: f(n) ~ g(n) means the ratio approaches 1, which is a stronger condition than f(n) ∈ Θ(g(n)).

GRAPH THEORY

SymbolNameRead AsMeaning
G = (V,E)Graph"graph G equals the pair V comma E"V is vertices, E is edges
v ∈ VVertex"v is a vertex in V"v is a node
e ∈ EEdge"e is an edge in E"e is a connection
(u,v)Directed edge"edge from u to v"Edge with direction (arc)
{u,v}Undirected edge"edge between u and v"Edge without direction
deg(v)Degree"degree of v"Number of edges connected to v
deg⁺(v)Out-degree"out-degree of v"Outgoing edges from v (directed graphs)
deg⁻(v)In-degree"in-degree of v"Incoming edges to v (directed graphs)
∣V∣Order"order of the graph"Number of vertices
∣E∣Size"size of the graph"Number of edges
u ~ vAdjacent"u is adjacent to v"u and v are connected
KₙComplete graph"K sub n"Graph where all vertices connected
CₙCycle graph"C sub n"Circular graph with n vertices
PₙPath graph"P sub n"Linear graph with n vertices
Kₘ,ₙComplete bipartite"K sub m comma n"Two groups, all cross-edges
d(u,v)Distance"distance from u to v"Shortest path length between u and v (∞ if no path exists)
δ(G)Minimum degree"delta of G"Smallest vertex degree in G
Δ(G)Maximum degree"Delta of G"Largest vertex degree in G
χ(G)Chromatic number"chi of G"Minimum colors needed for proper coloring
ω(G)Clique number"omega of G"Size of largest complete subgraph

Note: ω is also used for little-omega complexity. Context distinguishes graph theory usage.

MATRICES AND LINEAR ALGEBRA

SymbolNameRead AsMeaning
A or AMatrix"matrix A"Rectangular array of numbers
aᵢⱼMatrix element"a sub i j"Element in row i, column j
Aᵀ or A'Transpose"A transpose"Flip rows and columns
A⁻¹Inverse"A inverse"Matrix that undoes A (AA⁻¹ = I)
det(A) or ∣A∣Determinant"determinant of A"Scalar value from square matrix (single bars for determinant)
tr(A)Trace"trace of A"Sum of diagonal elements
v or v⃗Vector"vector v"Ordered list of numbers
0Zero vector"zero vector"All components are 0
u · vDot product"u dot v"Sum of component products
u × vCross product"u cross v"Vector perpendicular to both (3D only)
vNorm/Magnitude"norm of v"Length of vector
Tensor product"tensor product"Generalized outer product
rank(A)Rank"rank of A"Dimension of column/row space
span(v₁,...,vₙ)Span"span of v1 through vn"All linear combinations of vectors
dim(V)Dimension"dimension of V"Size of basis for vector space V
ker(A) or null(A)Kernel/Null space"kernel of A"Solutions to Ax = 0
im(A) or col(A)Image/Column space"image of A"All possible Ax values
λEigenvalue"lambda"Scaling factor for eigenvector (Av = λv)
I or IₙIdentity matrix"identity" or "I sub n"Diagonal matrix of ones

Note on ∣A∣: Can mean determinant (matrix), cardinality (set), or absolute value (scalar). Context determines meaning.

AUTOMATA AND FORMAL LANGUAGES

SymbolNameRead AsMeaning
ΣAlphabet"sigma"Finite set of symbols
Σ*Kleene star"sigma star"All possible strings over Σ (Kleene closure, includes empty string)
ε or λEmpty string"epsilon" or "lambda"String with no characters
w ∈ Σ*String"w is a string over sigma"Sequence of symbols from Σ
∣w∣String length"length of w"Number of characters in w
LLanguage"language L"Set of strings (subset of Σ*)
L₁ ∪ L₂Language union"L1 union L2"Strings in either language
L₁ · L₂ or L₁L₂Concatenation"L1 concatenated with L2"Strings from L₁ followed by L₂
L*Kleene closure"L star"Zero or more concatenations of strings from L
L⁺Positive closure"L plus"One or more concatenations of strings from L
Derives"derives"One step in grammar derivation
⊢*Derives in zero or more steps"derives star"Derivation sequence (reflexive transitive closure)
Production / Derivation"derives"Grammar production step (notation varies by text)
δTransition function"delta"State transition in automaton
q₀Initial state"q naught" or "q zero"Starting state in automaton
FFinal states"F"Set of accepting states
⟨q, w⟩Configuration"configuration q comma w"Current state and remaining input

CALCULUS

SymbolNameRead AsMeaning
lim(x→a)Limit"limit as x approaches a"Value function approaches as x nears a
f'(x) or df/dxDerivative"f prime of x" or "df dx"Rate of change of f with respect to x
f''(x) or d²f/dx²Second derivative"f double prime" or "d squared f dx squared"Rate of change of rate of change
Integral"integral"Area under curve / antiderivative
∫ₐᵇDefinite integral"integral from a to b"Area between a and b
Infinity"infinity"Unbounded
dxDifferential"dx" or "dee x"Infinitesimal change in x
∂f/∂xPartial derivative"partial f partial x"Derivative with respect to x, holding other variables constant
Gradient"del" or "nabla"Vector of partial derivatives
∇² or ΔLaplacian"del squared" or "laplacian"Sum of second partial derivatives (∂²/∂x² + ∂²/∂y² + ...)
∇·Divergence"del dot" or "divergence"Scalar field from vector field
∇×Curl"del cross" or "curl"Vector field rotation (3D only)

Note: ∂ also used as boundary operator in topology (different context).

NUMBER THEORY

SymbolNameRead AsMeaning
p ∣ np divides n"p divides n"n is a multiple of p (n = kp for some integer k)
p ∤ np does not divide n"p does not divide n"n is not a multiple of p
gcd(a,b)Greatest common divisor"gcd of a and b"Largest positive integer dividing both a and b
lcm(a,b)Least common multiple"lcm of a and b"Smallest positive integer divisible by both a and b
a ≡ b (mod n)Congruent modulo n"a congruent to b mod n"a and b have same remainder when divided by n
ϕ(n)Euler's totient"phi of n"Count of positive integers ≤ n coprime to n
π(x)Prime counting function"pi of x"Number of primes ≤ x

MISCELLANEOUS SYMBOLS

SymbolNameRead AsMeaning
Therefore"therefore"Logical conclusion follows
Because"because"Logical reason precedes
□ or ∎QED"Q-E-D" or "end of proof"Proof complete
End of example"end of example"Example complete
Direct sum / XOR"direct sum" or "XOR"Context-dependent: algebra or logic
Tensor product"tensor product"Generalized product operation
Composition"compose" or "circle"Function composition
⋆ or *Convolution / Star"convolution" or "star"Context-dependent: signal processing or Kleene star
Isomorphic to"is isomorphic to"Structure-preserving equivalence
Homotopy equivalent / Isomorphic"homotopy equivalent" or "isomorphic to"Topology (homotopy equivalence) and abstract algebra (structural equivalence)

SPECIAL BRACKETS AND GROUPING

SymbolNameRead AsUsage
( )Parentheses"open paren ... close paren"Grouping, function arguments
[ ]Square brackets"open bracket ... close bracket"Indexing, optional parameters, closed intervals
{ }Curly braces"open brace ... close brace"Sets, code blocks
⟨ ⟩ or 〈 〉Angle brackets"angle bracket"Vectors, inner products, ordered pairs
⌊ ⌋Floor brackets"floor of"Round down to nearest integer
⌈ ⌉Ceiling brackets"ceiling of"Round up to nearest integer
∣ ∣Absolute value/Norm"absolute value" or "norm"Distance from zero (single bars: scalars; some texts use for vectors)
‖ ‖Double bars"norm"Vector/matrix magnitude (preferred notation for norms)
⟦ ⟧Semantic brackets"semantic brackets"Denotational semantics interpretation

CONTEXT-DEPENDENT SYMBOLS

Many symbols have multiple meanings depending on mathematical context:

⊥ (Bottom/False/Undefined/Independence)

ContextMeaningExample
LogicFalse / ContradictionP ∧ ¬P = ⊥
Type theoryBottom type (uninhabited)The type with no values
Domain theoryLeast element / Undefinedf(x) = ⊥ means f is undefined at x
Partial ordersMinimal elementSmallest element in partial order
ProbabilityIndependence (as A ⊥ B)Events are independent

∣ (Vertical bar)

ContextMeaningExample
Set builder notation"Such that"{x ∣ x > 0}
Number theory"Divides"3 ∣ 12
Probability"Given"P(A ∣ B)
Absolute valueDelimiter∣x∣ = 3
DeterminantDelimiter∣A∣ = det(A)

* (Star/Asterisk)

ContextMeaningExample
ArithmeticMultiplication3 * 4 = 12
Formal languagesKleene starΣ*
Signal processingConvolutionf * g
Set notationExclusion of elementℕ* = ℕ ∖ {0}

· (Dot/Middle dot)

ContextMeaningExample
ArithmeticMultiplication3 · 4 = 12
Linear algebraDot productu · v
Function compositionComposition(f · g)(x)

⊕ (Circled plus)

ContextMeaningExample
LogicXORP ⊕ Q
Abstract algebraDirect sumV ⊕ W
Modular arithmeticAddition mod 21 ⊕ 1 = 0

~ (Tilde)

ContextMeaningExample
LogicNegation~P
Statistics"Distributed as"X ~ N(0,1)
AsymptoticsAsymptotic equivalence (f(n)/g(n) → 1)f(n) ~ g(n)

Note: ~ is standard for asymptotic equivalence; ≃ is used in topology/algebra, not typically for growth rates.

∂ (Partial/Del)

ContextMeaningExample
CalculusPartial derivative∂f/∂x
TopologyBoundary operator∂M

∇ (Nabla/Del)

ContextMeaningExample
Vector calculusGradient∇f
Vector calculusDel operator∇· (divergence), ∇× (curl)

→ (Arrow)

ContextMeaningExample
LogicImplicationP → Q
FunctionsFunction typef: A → B
LimitsApproachesx → ∞
AutomataTransitionq₁ → q₂

∣A∣ (Bars around symbol)

ContextMeaningExample
SetsCardinality∣{1,2,3}∣ = 3
MatricesDeterminant∣A∣ = det(A)
ScalarsAbsolute value∣-5∣ = 5
VectorsNormv

ω (Lowercase omega)

ContextMeaningExample
Complexity theoryLittle-omegaω(n)
Graph theoryClique numberω(G)
PhysicsAngular frequencyω = 2πf

Δ (Delta)

ContextMeaningExample
ArithmeticChange / DifferenceΔx = x₂ - x₁
CalculusLaplacian operatorΔf = ∇²f
Graph theoryMaximum degreeΔ(G)

≡ (Triple bar)

ContextMeaningExample
LogicLogical equivalenceP ≡ Q
Number theoryCongruence modulo na ≡ b (mod n)
ProgrammingIdentity / Definitional equalityx ≡ y

NOTES ON CONVENTIONS

  1. Subset notation: This guide uses ⊆ for subset (allowing equality) and ⊊ for proper subset. Some texts use ⊂ to mean ⊆. Always check your textbook's conventions.
  1. Natural numbers: Convention varies. ℕ may include 0 or start at 1. Use ℕ₀ for {0,1,2,...} and ℕ* or ℕ⁺ for {1,2,3,...} when clarity is needed.
  1. Disjoint union: ⊎ typically assumes sets are disjoint or uses tagging to force disjointness.
  1. Independence in probability: Write A ⊥ B or A ⊥⊥ B for independent events, not plain ⊥.
  1. Asymptotic equivalence: f(n) ~ g(n) means lim(n→∞) f(n)/g(n) = 1, which is stronger than f(n) ∈ Θ(g(n)).
  1. Parallel notation: ∥ means parallel in geometry. In concurrency theory, parallel composition is written P | Q, P || Q, or occasionally P ∥ Q depending on the formalism.
  1. Multiple meanings: Always check context. Symbols like |, *, ·, ~, ∂, ∇, →, ⊕, ⊥, ω, Δ, and ≡ have different meanings in different mathematical areas.
  1. Inverse function vs preimage: The notation f⁻¹(B) for preimage is defined for any function. The inverse function f⁻¹(x) requires f to be bijective. Context determines which is meant.