1/21
Vocabulary flashcards covering summation notation, index properties, identities, asymptotic evaluation techniques, big operators, and symmetric equation systems.
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 where a sequence xa,xa+1,…,xb is added together, denoted by ∑i=abxi using the capital Greek letter sigma.
Index of Summation
The variable (such as i, j, or k) in a summation that loops through all integer values from the lower bound to the upper bound inclusive.
Lower Limit
The starting value of the index variable in a summation, written as a below the sigma symbol.
Upper Limit
The ending value of the index variable in a summation, written as b above the sigma symbol.
Empty Sum
A summation where the upper limit is strictly less than the lower limit (b<a), which is defined to evaluate to 0.
Scope of a Summation
The portion of an algebraic expression included within a summation, extending to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term.
Einstein Summation Convention
A notation convention proposed by theoretical physicist Albert Einstein that omits the explicit summation symbol ∑i entirely in certain special types of sums.
Infinite Sum
An expression where the upper limit is infinite (∑i=0∞f(i)), defined as the limit of the series sn of partial sums as n approaches infinity.
Double Sum
A summation whose body is another summation, equivalent to two nested for-loops that sum the innermost expression over all pairs of index values.
Gauss Summation Formula
The identity ∑i=1ni=2n(n+1), derived by adding two copies of the sequence running in opposite directions term by term.
Summation Linearity
The property that allows constant factors to be pulled out of a sum (∑axi=a∑xi) and sums of terms to be split (∑(xi+yi)=∑xi+∑yi).
Guess but Verify Method
A technique for identifying a summation formula by tabulating the sum for the first few values of the upper limit and proving the resulting pattern by induction.
Geometric Series
A series in which the ratio between adjacent terms is constant, satisfying ∑i=0nri=1−r1−rn+1 for r=1 and ∑i=0∞ri=1−r1 for ∣r∣<1.
Arithmetic Series
A series in which the difference between adjacent terms is constant, with the general form ∑i=1n(ai+b)=a2n(n+1)+bn.
Harmonic Series
The series ∑i=1ni1=Hn, which yields the n-th harmonic number Hn and has an asymptotic bound of Θ(nlog(n)).
Product Operator
An operator denoted by the capital Greek letter pi ∏ used to compute the multiplication of a sequence of terms, as seen in n!=∏i=1ni.
Empty Product
A product evaluated over an empty index set, defined to yield the multiplicative identity 1 (which implies 0!=1).
Big AND Operator
An aggregate logical operator denoted by ⋀x∈SP(x) that evaluates to True when applied over an empty index set.
Big OR Operator
An aggregate logical operator denoted by ⋁x∈SP(x) that evaluates to False when applied over an empty index set.
Big Intersection Operator
An aggregate set operation denoted by ⋂i=1nAi that is undefined over an empty collection of sets because there is no general identity element.
Big Union Operator
An aggregate set operation denoted by ⋃i=1nAi that yields the empty set when evaluated over an empty collection of sets.
Symmetric Power Sum System
A system of polynomial equations given by a+b+c=4, a2+b2+c2=10, and a3+b3+c3=22 used to evaluate symmetric polynomial expressions.