1/18
Vocabulary flashcards covering concepts, identities, special series, and operators from James Aspnes' lecture notes on summations.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Index of Summation
The variable i in a summation expression such as or × that loops through values from the lower limit to the upper limit.
Lower Bound
The starting index value a in the summation expression ⋀x∈/emptyor⋃i=abxi; if the upper bound b<a, the sum evaluates to 0.
Upper Bound
The ending index value b in the summation expression ⋀x∈/emptyor⋃i=abxi.
Scope of a Summation
The extent of a summation expression, which continues until the first addition or subtraction symbol that is not enclosed in parentheses or part of a larger term.
Einstein Summation Convention
A lazy notation convention proposed by theoretical physicist Albert Einstein in which the summation symbol ⋀ is omitted entirely in certain special types of sums.
Infinite Sum
A summation where the upper limit is infinite, defined as the limit of the sequence of partial sums sn as n approaches infinity.
Double Sum
A nested summation where the body of an outer sum contains another summation, equivalent to two nested for loops.
Linearity of Summation
The property stating that constant factors can be pulled out of sums (⋀iinSaxi=a⋀iinSxi) and sums can be split across addition (⋀iinS(xi+yi)=⋀iinSxi+⋀iinSyi).
Guess but Verify Method
A technique for evaluating sums by writing out values for small bounds, identifying the pattern in the resulting sequence, and proving the formula by induction.
Geometric Series
A summation where the ratio between adjacent terms is constant, defined as ⋀i=0nxi=1−x1−xn+1 when x=1.
Arithmetic Series
A summation where the difference between adjacent terms is constant, with the simplest form being ⋀i=1ni=2n(n+1).
Harmonic Series
A summation of the reciprocals of integers, defined as ⋀i=1ni1=Hn=Theta(n×log(n)).
Product Notation
A mathematical notation using capital pi ⋀ to denote the product of a sequence of values, such as n!=⋀i=1ni.
Empty Sum
A sum over an empty index set, defined to equal 0, which is the additive identity.
Empty Product
A product over an empty index set, defined to equal 1, which is the multiplicative identity.
Big AND
The logical operator ⋀xinSP(x) representing logical conjunction over a set S, which evaluates to True for an empty index set.
Big OR
The logical operator ⋀xinSP(x) representing logical disjunction over a set S, which evaluates to False for an empty index set.
Big Union
The set operator ⋀i=1nAi representing the union across multiple sets, which evaluates to the empty set empty for an empty index set.
Big Intersection
The set operator ⋀i=1nAi representing the intersection across multiple sets, which is undefined for an empty collection of sets.