1/19
A set of vocabulary flashcards covering the notation, terminology, identities, and common formulas for summations and products as presented in the 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
Summations
The discrete versions of integrals; given a sequence xa,xa+1,…,xb, its sum is written as ∑i=abxi.
Index of Summation
The variable i in the notation ∑i=abxi that loops through all values from the lower limit to the upper limit.
Lower Bound (Lower Limit)
The value a in the summation ∑i=abxi representing the start of the index range.
Upper Bound (Upper Limit)
The value b in the summation ∑i=abxi representing the end of the index range.
Empty Sum
A sum where the upper bound b is less than the lower bound a (b<a); it is defined to have the value 0.
Scope of a Summation
The extent of the expression being summed, 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 or a predicate used to define the indices to be summed, written replacing the limits with a single subscript (e.g., ∑i∈{3,5,7}i2).
Einstein Summation Convention
A notation style used by theoretical physicists where the summation symbol ∑i is omitted entirely for special types of sums.
Infinite Sum
The limit of the series of partial sums sn as the upper limit approaches infinity; it converges if for any ϵ>0, there exists an N such that ∣sn−x∣<ϵ for all n>N.
Double Sum
A summation where the expression inside is another summation, effectively acting like two nested for loops, such as ∑i=1a∑j=1b1 to define a×b.
Arithmetic Series (Simple)
A sum where the difference between adjacent terms is constant, represented by the formula ∑i=1ni=2n(n+1).
Geometric Series
A sum where the ratio between adjacent terms is constant, defined as ∑i=0nri=1−r1−rn+1.
Harmonic Series
The sum of the reciprocals of the first n integers, written as Hn=∑i=1ni1, which is approximated as Θ(ln(n)).
Linearity of Summation
A property allowing constant factors to be pulled out (∑axi=a∑xi) and internal sums to be split (∑(xi+yi)=∑xi+∑yi).
Guess but Verify Method
A technique for solving sums where one writes out initial values, guesses a closed-form formula, and proves it using induction.
Product Notation
The use of the capital Greek letter pi ∏ to represent multiplying a series of values, such as n!=∏i=1ni.
Empty Product
A product with no terms, defined to have the value 1 because it is the identity element for multiplication.
Big AND (⋀)
A logical operator over a set S defined as ∀x∈S:P(x); its identity element for an empty set is True.
Big OR (⋁)
A logical operator over a set S defined as ∃x∈S:P(x); its identity element for an empty set is False.
Big Intersection (⋂)
An aggregate operator for sets that is undefined over an empty collection because there is no general identity element.