1/21
Vocabulary terms and definitions related to summations, products, and other big operators based on 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; for a sequence xa,xa+1,...,xb, it is written as ∑i=abxi.
Index of summation
The variable (typically i) used in summation notation that loops through all values from the lower bound to the upper bound.
Lower bound
The starting value (or lower limit) in a summation, denoted by a in the expression ∑i=abf(i).
Upper bound
The ending value (or upper limit) in a summation, denoted by b in the expression ∑i=abf(i).
Empty sum
A summation where the upper bound is less than the lower bound (b<a), which is defined to have the value 0.
Scope (of a summation)
The extent of a summation expression, which continues until the first addition or subtraction symbol not enclosed in parentheses or part of a larger term.
Index set
A set of values over which an expression is summed, often used when indices are not consecutive integers, written using a predicate such as ∑i∈{3,5,7}i2.
Infinite sum
An expression where the upper limit is infinite, defined as the limit of the series of partial sums.
Convergence
The property where a limit of partial sums reaches a particular value x such that for any ϵ>0, there exists an N where all sn for n>N satisfy ∣sn−x∣<ϵ.
Einstein summation convention
A notation style where the summation symbol (∑) is omitted entirely in certain special types of sums.
Double sum
Two nested summations that sum an innermost expression over all pairs of values of two indices, analogous to two nested for loops.
Geometric series
A series where the ratio between adjacent terms is constant, defined by the formula ∑i=0nri=1−r1−rn+1.
Arithmetic series
A series where the difference between adjacent terms is constant; the simplest form is ∑i=1ni=2n(n+1).
Harmonic series
The sum ∑i=1ni1, denoted as Hn, which is characterized by the asymptotic bound Θ(nlog(n)) in the text.
Summation linearity
The property that allows constant factors to be pulled out of sums (∑axi=a∑xi) and allows sums within sums to be split (∑(xi+yi)=∑xi+∑yi).
Product notation
A notation using the capital Greek letter pi (∏) to represent the multiplication of a series of values, similar to summation notation.
Empty product
A product over an empty index set, which is defined to have the value 1, the identity element for multiplication.
Factorial
A function for non-negative integers defined as n!=∏i=1ni, where 0!=1.
Big AND
The operator (⋀) that performs a logical AND over a set of predicates, returning True if the index set is empty.
Big OR
The operator (⋁) that performs a logical OR over a set of predicates, returning False if the index set is empty.
Big Intersection
The operator (⋂) for the intersection of a series of sets, which is undefined for an empty collection of sets.
Big Union
The operator (⋃) for the union of a series of sets, which returns the empty set if the index set is empty.