1/20
Vocabulary and key definitions regarding summations, products, specific mathematical series, and notation conventions used in discrete mathematics and algorithm analysis.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Summations
The discrete versions of integrals, written as ∑i=abxi for a sequence xa,xa+1,…,xb.
Index of summation
The variable (traditionally i, j, or k) used to loop through values from the lower limit to the upper limit.
Lower bound (or lower limit)
The starting value a in the summation ∑i=abxi.
Upper bound (or upper limit)
The ending value b in the summation ∑i=abxi.
Summation of an empty set
A sum where the upper bound b is less than the lower bound a (b<a), defined as 0.
Scope of a summation
Extends to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term like a fraction numerator.
Einstein summation convention
A notation used in theoretical physics where the ∑i part is omitted entirely in certain special types of sums.
Infinite sum
The limit of the series s obtained by taking the sum of the first term, the first two terms, the first three terms, and so on.
Double sums
Two nested summations that sum an innermost expression over all pairs of values of the two indices.
Arithmetic series
A series where the difference between adjacent terms is constant; the simplest form is ∑i=1ni=2n(n+1).
Geometric series
A series where the ratio between adjacent terms is constant, defined as ∑i=0nri=1−r1−rn+1. When ∣r∣<1, the infinite sum is 1−r1.
Harmonic series
The sum ∑i=1ni1, denoted as Hn, which is Θ(nlog(n)).
Linearity of summation
The property that allows constant factors to be pulled out (∑axi=a∑xi) and internal sums to be split (∑(xi+yi)=∑xi+∑yi).
Identity element for addition
The value 0, which is returned for an empty sum because adding it to a value x does not change x.
Identity element for multiplication
The value 1, which is returned for an empty product because multiplying it by a value x does not change x.
Product notation
Uses the capital Greek letter pi (∏) to represent multiplying a series of values together.
Factorial function (n!)
Defined for non-negative n as ∏i=1ni=1×2×⋯×n, where 0!=1.
Big AND (⋀)
A logical operator across a set that returns True for an empty index set.
Big OR (⋁)
A logical operator across a set that returns False for an empty index set.
Big Intersection (⋂)
An operator for a collection of sets that is undefined for an empty collection because there is no identity element.
Big Union (⋃)
An operator for a collection of sets that returns the empty set for an empty index set.