1/18
Vocabulary and concepts related to summations, series, products, and big operators as used in algorithm analysis and discrete mathematics.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Summation
The discrete version of an integral; given a sequence xa,xa+1,...,xb, its sum is written as ∑i=abxi.
Index of summation
The variable (e.g., i) used in a summation that loops through all values from the lower bound to the upper bound.
Lower bound
Also called the lower limit, it is the starting value for the index of summation (denoted as a in ∑i=abxi).
Upper bound
Also called the upper limit, it is the ending value for the index of summation (denoted as b in ∑i=abxi).
Empty sum
A sum where the upper bound b is less than the lower bound a; it is defined to be zero.
Scope
The extent of a summation, which reaches to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term (like a fraction's numerator).
Einstein summation convention
A practice in theoretical physics where the summation symbol ∑i is left out entirely in certain types of sums.
Infinite sum
The limit of the partial series sn as n approaches infinity. It converges to x if for any ϵ>0, there exists an N such that for all n>N, |s_n - x| < \text{\epsilon}.
Double sum
Two nested summations that sum the innermost expression over all pairs of values of the two indices.
Arithmetic series
A sum where the difference between adjacent terms is constant; the simplest example is ∑i=1ni=2n(n+1).
Geometric series
A sum where the ratio between adjacent terms is constant; the finite formula is ∑i=0nri=1−r1−rn+1.
Harmonic series
The sum ∑i=1n1/i, denoted as Hn, which is categorized as Θ(n log n).
Linearity
A property of summations where constant factors can be pulled out (∑axi=a∑xi) and sums inside sums can be split.
Product notation (Pi)
A notation using the uppercase Greek letter pi (\Pi) to represent multiplying a series of values, such as the factorial n!=∏i=1ni.
Empty product
A product with an empty index set, which is defined to have the value 1, the identity element for multiplication.
Big AND (\bigwedge)
The logical operator ⋀x∈SP(x), which computes the conjunction of predicates across a set; its identity element is True.
Big OR (\bigvee)
The logical operator ⋁x∈SP(x), which computes the disjunction of predicates across a set; its identity element is False.
Big Intersection (\bigcap)
The operator ⋂i=1nAi, which performs the intersection of a collection of sets; it is undefined for an empty collection.
Big Union (\bigcup)
The operator ⋃i=1nAi, which performs the union of a collection of sets; its identity element is the empty set.