1/22
Vocabulary and formulas concerning summations, series, products, and big operators from James Aspnes' 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
A discrete version of an integral; given a sequence xa,xa+1,...,xb, its sum is written as ∑i=abxi.
Index of summation
The variable (such as i, j, or k) used to loop through all values from the lower limit to the upper limit in a sum.
Empty sum rule
If the upper bound b is less than the lower bound a (b<a), the value of the sum is defined to be 0.
Index shifting
The process of renaming or changing the range of an index variable by adjusting the lower and upper bounds to match, such as substituting j=i−1.
Scope of a summation
The portion of an expression governed 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 numerator.
Einstein summation convention
A notation style often used by theoretical physicists that leaves out the ∑i part entirely in certain special types of sums.
Infinite sum limit
The value x a series converges to if for any ϵ>0, there exists an N such that for all n>N, the partial sum sn satisfies ∣sn−x∣<ϵ.
Double sum
Two nested summations where the innermost expression is summed over all pairs of values of the two indices, analogous to nested for loops.
Standard Sum: ∑i=1n1
The result is exactly n.
Simple Arithmetic Series: ∑i=1ni
The formula is 2n(n+1), which equals n times the average value 2n+1.
Finite Geometric Series: ∑i=0nri
The sum is equal to 1−r1−rn+1, provided r=1.
Infinite Geometric Series: ∑i=0∞ri
This sum equals 1−r1 provided that ∣r∣<1.
Harmonic Series (Hn)
Defined as ∑i=1ni1, which is asymptotically bounded as Θ(nlogn) according to the notes.
Linearity of Summation
The property that constant factors can be pulled out of sums (∑axi=a∑xi) and internal sums can be split (∑(xi+yi)=∑xi+∑yi).
Guess but verify method
A technique involving writing out the values of a sum for specific cases to recognize a pattern and then proving the formula by induction.
Big-Theta of Geometric Series
When x is a constant not equal to 1, the sum of a geometric series is always big-Theta of its largest term.
Integral trick (non-decreasing)
A strategy for bounding sums where ∫a−1bf(x)dx≤∑i=abf(i)≤∫ab+1f(x)dx.
Product notation
A series of multiplied values written with the capital Greek letter pi (∏).
Factorial function (n!)
The product of integers from 1 to n, defined as n!=∏i=1ni.
Empty product rule
An empty product is defined to have the value 1, which is the identity element for multiplication.
Identity element (Big AND)
For the Big AND operator (⋀), the value for an empty index set is True.
Identity element (Big OR)
For the Big OR operator (⋁), the value for an empty index set is False.
Identity element (Big Intersection)
There is no identity element in general for the Big Intersection (⋂) operator, and its value over an empty set is undefined.