1/18
Vocabulary flashcards covering summation notation, index bounds, summation identities, asymptotic bounds, product notation, big logical/set operators, and power sum equations.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Summations
Discrete versions of integrals written as ∑i=abxi to represent the sum of a sequence xa,xa+1,…,xb.
Index of summation
The variable in a summation (such as i) that loops through all integer values from the lower limit a to the upper limit b.
Lower limit
The starting bound (such as a in ∑i=abxi) for the index of summation.
Upper limit
The ending bound (such as b in ∑i=abxi) for the index of summation.
Empty sum
A summation where the upper bound b is strictly less than the lower bound a (b<a), which is defined to equal 0.
Scope of a summation
The portion of an expression covered by a summation symbol, extending to the first addition or subtraction symbol that is not enclosed in parentheses or part of a larger term.
Einstein summation convention
A notation convention in which the summation symbol ∑ is omitted entirely in certain special types of sums where the index set is understood.
Double sum
An expression containing two nested summations, such as ∑i=1a∑j=1b1, which sums the inner expression over all pairs of values of the two indices.
Geometric series formula
The identity ∑i=0nri=1−r1−rn+1, which holds when r=1.
Arithmetic series formula
The sum identity ∑i=1ni=2n(n+1), which equals n times the average value 2n+1.
Harmonic series
The sum ∑i=1ni1, denoted Hn, which has an asymptotic bound of Θ(nlog(n)).
Linearity of summation
The algebraic property allowing constant factors to be pulled out of sums (∑i∈Saxi=a∑i∈Sxi) and additive terms inside sums to be split (∑i∈S(xi+yi)=∑i∈Sxi+∑i∈Syi).
Product notation
The operator ∏i=1nxi used to multiply a sequence of values together, as in the factorial function n!=∏i=1ni.
Empty product
A product over an empty index set (b<a), which is defined to equal 1 (the identity element for multiplication).
Big AND
The operator ⋀x∈SP(x), which evaluates to True when taken over an empty index set.
Big OR
The operator ⋁x∈SP(x), which evaluates to False when taken over an empty index set.
Big Union
The operator ⋃i=1nAi, which evaluates to the empty set ∅ when taken over an empty collection of sets.
Big Intersection
The operator ⋂i=1nAi, which is undefined over an empty collection of sets because no general identity element exists.

Power Sums System
A system of equations involving three variables a,b,c given by a+b+c=4, a2+b2+c2=10, and a3+b3+c3=22 to solve for a4+b4+c4.