1/20
Flashcards covering definitions, formulas, and properties of summations, products, and other big operators based on 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 that loops through all values from the lower bound to the upper bound.
Lower bound
Also known as the lower limit, it is the starting value for the index of summation in a sum, denoted as a in ∑i=abxi.
Upper bound
Also known as the upper limit, it is the ending value for the index of summation in a sum, denoted as b in ∑i=abxi.
Empty sum
A sum where the upper bound is less than the lower bound (b<a), which is defined to have a value of 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 like a fraction numerator.
Einstein summation convention
A notation used by theoretical physicists where the summation symbol ∑i is left out entirely in certain special types of sums.
Infinite sum
The limit of a series s obtained by taking the sum of the first term, the first two terms, the first three terms, etc., as the upper limit approaches infinity.
Double sum
A summation where the expression inside is another summation, functioning like two nested for loops that sum over all pairs of index values.
Standard arithmetic series sum
The formula for the sum of the first n integers: ∑i=1ni=2n(n+1).
Finite geometric series formula
The formula used to compute a sum where the ratio between adjacent terms is constant: ∑i=0nri=1−r1−rn+1.
Infinite geometric series formula
The sum ∑i=0∞ri=1−r1, which holds true when ∣r∣<1.
Harmonic series
The sum represented by ∑i=1n1/i=Hn, which the transcript identifies as Θ(nlog(n)).
Linearity (Summation)
A property where constant factors can be pulled out (∑axi=a∑xi) and sums inside can be split (∑(xi+yi)=∑xi+∑yi).
Product notation
Notation using the capital Greek letter pi (∏) to represent the multiplication of a series of values.
Factorial function
Defined for non-negative n as n!=∏i=1ni=1×2×⋯×n, with 0!=1.
Empty product
A product with no terms, which is defined to have the value 1, the identity element for multiplication.
Big AND
Represented as ⋀x∈SP(x), it is equivalent to ∀x∈S:P(x) and returns True for an empty index set.
Big OR
Represented as ⋁x∈SP(x), it is equivalent to ∃x∈S:P(x) and returns False for an empty index set.
Big Intersection
Represented as ⋂i=1nAi, its result over an empty collection of sets is undefined as there is no identity element.
Big Union
Represented as ⋃i=1nAi, it returns the empty set when the index set is empty.