1/18
These vocabulary flashcards cover the definitions, notation, and properties of summations, products, and other big operators as discussed in the lecture notes.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
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 i, j, or k) used in a summation to loop through values from the lower bound to the upper bound.
Lower Bound
The starting value of the index in a summation, also known as the lower limit.
Upper Bound
The ending value of the index in a summation, also known as the upper limit.
Empty Sum
A summation where the upper bound b is less than the lower bound a (b<a), which by definition equals 0.
Scope of a Summation
The range of the expression being summed, which extends until the first addition or subtraction symbol not enclosed in parentheses or part of a larger term like a fraction numerator.
Infinite Sum
The limit of the series of partial sums sn as n approaches infinity, which converges to a value x if for any ϵ>0, there exists an N such that for all n>N, ∣sn−x∣<ϵ.
Einstein Summation Convention
A notation used by theoretical physicists where the summation symbol (∑) is omitted entirely in certain special types of sums.
Double Sum
A series of nested summations, similar to nested for-loops, that sum an expression over all pairs of values of two indices.
Arithmetic Series
A series where the difference between adjacent terms is constant; its simplest form is ∑i=1ni=2n(n+1).
Geometric Series
A series where the ratio between adjacent terms is constant; the finite sum is given by ∑i=0nri=1−r1−rn+1.
Harmonic Series
A series denoted by the n-th harmonic number Hn, defined as ∑i=1ni1, which is roughly Θ(log(n)).
Identity Element (Summation)
The value that when added to x does not change x; for summations, this is 0, which is also the value of an empty sum.
Product Notation
A notation using the capital Greek letter pi (∏) to represent multiplying a series of values, such as the factorial function n!=∏i=1ni.
Empty Product
A product over an empty set of indices, which is defined to be 1 because it is the identity element for multiplication.
Big AND (\bigwedge)
A big operator representing the logical AND operation over a set; its value for an empty index set is True.
Big OR (\bigvee)
A big operator representing the logical OR operation over a set; its value for an empty index set is False.
Big Intersection (\bigcap)
A big operator representing the intersection of sets; it is undefined for an empty collection of sets.
Big Union (\bigcup)
A big operator representing the union of sets; its value for an empty index set is the empty set.