1/19
Flashcards covering the definitions, formulas, and rules for summations, products, and other big operators like big AND/OR and set operations.
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; for a sequence xa,xa+1,...,xb, it is written as ∑i=abxi.
Index of summation
The variable (e.g., i) used in a summation that loops through all values from the lower bound to the upper bound.
Lower bound
The starting value of the index of summation, also known as the lower limit.
Upper bound
The ending value of the index of summation, also known as the upper limit.
Empty sum
A summation where the upper bound b is less than the lower bound a, which is defined to have the value 0. For example, ∑i=0−5i32itan(i)=0.
Scope of a summation
Extends to the first addition or subtraction symbol that is not enclosed in parentheses or part of a larger term like a fraction numerator.
Einstein summation convention
A technique used by theoretical physicists where the summation symbol ∑i is left out entirely in certain types of sums.
Infinite sum
The limit of a series s obtained by adding terms one by one; it converges to x if for any ϵ>0, there exists an N such that for all n>N, ∣sn−x∣<ϵ.
Double sum
A summation where the expression inside is another summation, functioning like two nested for loops.
Standard arithmetic series formula
∑i=1ni=2n(n+1).
Standard geometric series formula
∑i=0nri=1−r1−rn+1, valid even when r>1, but not for r=1.
Infinite geometric series formula
∑i=0∞ri=1−r1, which holds when ∣r∣<1.
Linearity of summation
The property that constant factors can be pulled out (∑axi=a∑xi) and sums inside sums can be split (∑(xi+yi)=∑xi+∑yi).
Harmonic series
∑i=1n1/i=Hn=Θ(nlogn), according to the provided lecture notes.
Factorial function (product notation)
n!:=∏i=1ni=1×2×⋅⋅⋅×n.
Empty product
Defined to have the value 1, which is the identity element for multiplication.
Big AND
⋀x∈SP(x)≡∀x∈S:P(x). Its identity element for an empty index set is True.
Big OR
⋁x∈SP(x)≡∃x∈S:P(x). Its identity element for an empty index set is False.
Big Intersection
⋂i=1nAi=A1∩A2∩⋅⋅⋅∩An. It is undefined over an empty collection of sets as there is no identity element.
Big Union
⋃i=1nAi=A1∪A2∪⋅⋅⋅∪An. Its identity element is the empty set.