1/20
These flashcards cover the terminology, notation, and standard formulas for summations, products, and other large mathematical operators as detailed in 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
The discrete version of an integral, written as ∑i=abxi, representing the sum of a sequence xa,xa+1,…,xb.
Index of summation
The variable, typically denoted as i, j, or k, that loops through all values from the lower bound to the upper bound in a summation.
Lower bound
Also called the lower limit, it is the starting value a in the summation notation ∑i=abxi.
Upper bound
Also called the upper limit, it is the ending value b in the summation notation ∑i=abxi.
Empty sum
A sum where the upper bound b is less than the lower bound a, which is defined to have a value of 0.
Scope of a summation
The reach of the summation operator which 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 lazy approach used by theoretical physicists where the summation symbol (∑) is left out entirely in certain special types of sums.
Infinite sum
The limit of the series s obtained by summing terms indefinitely; it converges to x if for any ϵ>0, there exists an N such that for all n>N, ∣sn−x∣<ϵ.
Double sum
Two nested summations that function like nested for loops, summing an expression over all pairs of values of the two indices.
Carl Friedrich Gauss
The 18th-century mathematician who allegedly invented the trick of summing the sequence 1 to n by adding two copies of the sequence running in opposite directions.
Standard Arithmetic Series sum
The formula for the sum of the first n integers: ∑i=1ni=2n(n+1), which is n times the average value 2n+1.
Geometric series
A sum where the ratio between adjacent terms is constant, defined as ∑i=0nri=1−r1−rn+1 or ∑i=0∞ri=1−r1 for ∣r∣<1.
Summation linearity
The property stating that constant factors can be pulled out (∑axi=a∑xi) and sums inside sums can be split (∑(xi+yi)=∑xi+∑yi).
Harmonic series
Represented by ∑i=1ni1=Hn, which the transcript identifies with an asymptotic estimate of Θ(nlogn). (Note: Θ(logn) is the standard bound, but the text specifies Θ(nlogn) in several sections).
Product notation
The multiplication of a series of values, denoted by the capital Greek letter pi (∏).
Factorial function
Defined for non-negative integers as n!=∏i=1ni=1×2×⋯×n, where 0!=1.
Empty product
A product over an empty set of indices, which is defined to have the value 1 (the identity element for multiplication).
Big AND
The operator ⋀x∈SP(x), equivalent to ∀x∈S:P(x), which returns the identity element True for an empty set.
Big OR
The operator ⋁x∈SP(x), equivalent to ∃x∈S:P(x), which returns the identity element False for an empty set.
Big Intersection
The notation ⋂i=1nAi representing the intersection of multiple sets; it is undefined for an empty collection of sets.
Big Union
The notation ⋃i=1nAi representing the union of multiple sets; its identity element is the empty set.