1/18
Vocabulary and concepts related to discrete summations, series, products, and big operators as used in algorithm analysis and discrete mathematics.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Summation
The discrete version of integrals; given a sequence xa,xa+1,...,xb, its sum is written as ∑i=abxi.
Index of summation
The variable i in the summation notation ∑i=abxi, which loops through all values from the lower bound to the upper bound.
Lower bound (lower limit)
The starting value a in the summation notation ∑i=abxi.
Upper bound (upper limit)
The ending value b in the summation notation ∑i=abxi, which is the final value included in the loop.
Empty sum
A summation where the upper bound is less than the lower bound (b<a); it is defined to have a value of 0.
Scope (of a summation)
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 numerator.
Infinite sum
The limit of the series sn obtained by taking the sum of the first n terms as n approaches infinity, formally converging if ∣sn−x∣<ϵ for all n>N.
Einstein summation convention
A notation style where the summation symbol is left out entirely in certain types of sums, proposed by Albert Einstein.
Double sum
A summation where the expression inside is another summation, functioning like two nested for loops.
Arithmetic series
A series where the difference between adjacent terms is constant; the simplest form is ∑i=1ni=2n(n+1), which is n times the average value.
Geometric series
A series where the ratio between adjacent terms is constant; the finite form is ∑i=0nri=1−r1−rn+1.
Harmonic series
The sum ∑i=1ni1, denoted as Hn (the n-th harmonic number), and characterized in the text as Θ(nlogn).
Linearity (of summation)
The property allowing constant factors to be pulled out as in ∑axi=a∑xi, and allowing sums to be split as in ∑(xi+yi)=∑xi+∑yi.
Product notation
A notation used to multiply a series of values, denoted by the Greek letter pi (∏), such as in the definition of factorials: n!=∏i=1ni.
Empty product
A product with no factors that is defined to have the value 1, which is the identity element for multiplication.
Big AND (\bigwedge)
An operator representing universal quantification (∀) over a set of predicates; returns True for an empty index set.
Big OR (\bigvee)
An operator representing existential quantification (∃) over a set of predicates; returns False for an empty index set.
Big Intersection
The intersection of a collection of sets; it is undefined if the collection of sets is empty because there is no identity element.
Big Union
The union of a collection of sets; returns the empty set if the index set is empty.