1/19
VOCABULARY style flashcards covering the definitions, notation, and properties of summations, products, and big operators based on lecture notes by James Aspnes.
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, representing the sum of a sequence xa,xa+1,…,xb.
Index of summation
The variable (such as i, j, or k) that loops through all values 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 value a.
Upper bound (or upper limit)
The ending value of the index in a summation, denoted by the value b.
Empty sum
A sum where the upper bound is less than the lower bound (b<a), which is defined to have the value 0.
Scope of a summation
The range of an expression affected by the sigma; it extends to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term like a fraction.
Einstein summation convention
A practice in theoretical physics attributed to Albert Einstein where the summation symbol ∑i is omitted entirely for certain types of sums.
Infinite sum
An expression where the upper limit is infinite, defined as the limit of the series of partial sums sn as n approaches infinity.
Double sum
A summation where the expression inside is another summation, functioning like nested for loops to sum values over all pairs of indices.
Arithmetic series
A series where the difference between adjacent terms is constant, notably the simplest form ∑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 for r=1.
Linearity of summation
A property allowing constant factors to be pulled out (∑axi=a∑xi) and allowing sums inside the summation to be split (∑(xi+yi)=∑xi+∑yi).
Harmonic series
The sequence of sums denoted by ∑i=1ni1=Hn=Θ(nlog(n)).
Product notation
A notation used to multiply a series of values, indicated by the capital Greek letter pi (∏).
Empty product
A product where the index set is empty, defined to have the value 1 because it is the identity element for multiplication.
Factorial function
A specific product for non-negative integers defined as n!=∏i=1ni=1×2×⋯×n, where 0!=1.
Big AND
An operator (⋀) used to compute a logical AND over a series, equivalent to the universal quantifier ∀x∈S:P(x). Its identity element for an empty set is True.
Big OR
An operator (⋁) used to compute a logical OR over a series, equivalent to the existential quantifier ∃x∈S:P(x). Its identity element for an empty set is False.
Big Intersection
The operator ⋂i=1nAi representing the intersection of a series of sets; it is undefined over an empty collection because there is no identity element.
Big Union
The operator ⋃i=1nAi representing the union of a series of sets, with the empty set as its identity element.