1/19
Practice flashcards covering definitions, formulas, and properties of summations, products, and other big operators as described in the lecture notes.
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 an integral, written as ∑i=abxi, which represents the sum of a sequence of values xa,xa+1,…,xb.
Index of summation
The variable (usually i, j, or k) used to loop through values in a sum from the lower bound to the upper bound.
Lower bound (or lower limit)
The starting value of the index in a summation, denoted by the variable a in ∑i=abxi.
Upper bound (or upper limit)
The ending value of the index in a summation, denoted by the variable b in ∑i=abxi.
Empty sum
A sum where the upper bound b is less than the lower bound a, which is defined to have a value of 0.
Scope of a summation
The portion of an expression affected by the summation operator; it extends to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term.
Index set
A set of values over which an expression is summed, often used when indices are not consecutive integers, written as ∑i∈Sxi.
Infinite sum
The limit of a series of partial sums sn as the number of terms approaches infinity, defined as ∑i=0∞xi.
Einstein summation convention
A notation proposed by Albert Einstein where the summation symbol ∑ is omitted entirely for certain special types of sums.
Double sum
A summation where the expression inside is itself another summation, behaving like nested for loops and summing over all pairs of values of the two indices.
Summation linearity
A property of the summation operator allowing constant factors to be pulled out (∑axi=a∑xi) and sums within sums to be split (∑(xi+yi)=∑xi+∑yi).
Arithmetic series
A series where the difference between adjacent terms is constant, with the simplest form being ∑i=1ni=2n(n+1).
Geometric series
A series where the ratio between adjacent terms is constant, characterized by the formula ∑i=0nri=1−r1−rn+1.
Harmonic series (Hn)
The sum of the inverses of the first n integers, denoted as ∑i=1ni1, which is approximated as Θ(nlogn) in these notes.
Product notation (Big Pi)
An operator, denoted by ∏, used to multiply a series of values, such as in the definition of factorial: n!=∏i=1ni.
Empty product
A product over an empty index set, which is defined to have the value 1 (the identity element for multiplication).
Big AND (⋀)
An operator that computes the logical AND over a set of predicates, equivalent to the universal quantifier ∀x∈S:P(x), with an identity value of True.
Big OR (⋁)
An operator that computes the logical OR over a set of predicates, equivalent to the existential quantifier ∃x∈S:P(x), with an identity value of False.
Big Intersection (⋂)
An operator representing the intersection of multiple sets; it is undefined for an empty collection of sets because there is no identity element.
Big Union (⋃)
An operator representing the union of multiple sets, which returns the empty set for an empty collection of sets.