1/22
Vocabulary terms and definitions covering summations, series, product notation, and big operators as defined in the December 13, 2010 lecture by James Aspnes.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Summations
The discrete versions of integrals; given a sequence xa,xa+1,...,xb, its sum xa+xa+1+...+xb is written as ∑i=abxi.
Index of summation
The variable i in the notation ∑i=abxi which loops through all values from the lower limit to the upper limit.
Empty sum
A summation where the upper bound b is less than the lower bound a (b<a), which is defined to have a value of 0.
Summation recurrence (definition 1)
∑i=abf(i)=0 if b<a, and f(a)+∑i=a+1bf(i) otherwise.
Scope of a summation
The range of terms included in the sum, extending to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term (like a fraction numerator).
Sum over an index set
A sum written by replacing bounds with a subscript predicate that indices must obey, such as ∑i{3, 5, 7}i2, which equals 32+52+72=83.
Einstein summation convention
A notation where the summation symbol ∑i is omitted entirely in certain special types of sums, proposed by physicist Albert Einstein.
Infinite sum limit
The limit of the series s; it converges to x if for any ϵ>0, there exists an N such that for all n>N, ∣sn−x∣<ϵ.
Double sum
Two nested for loops in summation notation, such as ∑i=1a∑j=1b1, which sums the innermost expression over all pairs of values of the two indices.
Simple arithmetic series formula
The formula ∑i=1ni=2n(n+1), which is n times the average value 2n+1.
Finite geometric series formula
∑i=0nri=1−r1−rn+1.
Infinite geometric series formula
∑i=0∞ri=1−r1, which holds when ∣r∣<1.
Carl Friedrich Gauss
The 18th-century mathematician alleged to have invented the trick of adding two copies of a sequence in opposite directions to derive the sum of an arithmetic series.
Linearity (summation identity)
The property that constant factors can be pulled out of sums (∑axi=a∑xi) and sums inside sums can be split (∑(xi+yi)=∑xi+∑yi).
Harmonic series
The sum ∑i=1n1/i, denoted as Hn, which is given in the notes as being Θ(nlogn). (Note: Standard mathematics defines Hn as Θ(lnn)).
Guess but verify method
A technique where values for the first few upper limits are tabulated to recognize a sequence, which is then proven correct by induction.
Integral technique for sums
A method to find big-Theta bounds for non-decreasing functions f(n) using ∫a−1bf(x)dx≤∑i=abf(i)≤∫ab+1f(x)dx.
Products notation (∏)
Notation using the capital Greek letter pi to represent the multiplication of a series of values.
Factorial function (n!)
Defined for non-negative n as ∏i=1ni=1×2×⋯×n, where 0!=1.
Empty product
A product with an empty index set, defined to have the value 1 (the identity element for multiplication).
Big AND (identity)
An aggregate operator returning True for an empty index set.
Big OR (identity)
An aggregate operator returning False for an empty index set.
Big Intersection over empty set
An operation that is undefined because there is no identity element in general for the intersection of a collection of sets.