1/19
Vocabulary flashcards covering the definitions, notation, and standard formulas for summations, products, and related mathematical operators based on 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, the sum is written as ∑i=abxi.
Index of summation
The variable i in a summation formula that loops through all values from the lower bound to the upper bound.
Lower bound (lower limit)
The starting value a for the index of summation i.
Upper bound (upper limit)
The ending value b for the index of summation i, including the endpoint.
Empty Sum
A sum where the upper bound b is less than the lower bound a (b<a); by definition, its value is 0.
Scope of a summation
The extent of the sum, which lasts 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 ∑i part is omitted entirely in certain special types of sums.
Infinite sum convergence
A sum ∑i=0∞ai converges to a value x if for any ϵ>0, there exists an N such that for all n>N, the partial sum sn satisfies ∣sn−x∣<ϵ.
Double sums
Nested summations that act like nested for loops, summing the innermost expression over all pairs of values of the two indices.
Constant series formula
∑i=1n1=n.
Arithmetic series formula (simple)
∑i=1ni=2n(n+1).
Geometric series formula (finite)
∑i=0nri=1−r1−rn+1.
Geometric series formula (infinite)
∑i=0∞ri=1−r1, which holds when ∣r∣<1.
Linearity of summation
The property allowing constant factors to be pulled out (∑axi=a∑xi) and internal sums to be split (∑(xi+yi)=∑xi+∑yi).
Harmonic series
The sum ∑i=1n1/i, denoted as Hn, which is Θ(nlogn) according to the notes.
Factorial function (n!)
Defined for non-negative integers as the product ∏i=1ni=1⋅2⋅...⋅n.
Empty product
A product with no terms, defined to have the value 1 because it is the identity element for multiplication.
Big AND (\bigwedge)
An operator for a series of predicates ⋀x∈SP(x), equivalent to ∀x∈S:P(x); returns True for an empty set.
Big OR (\bigvee)
An operator for a series of predicates ⋁x∈SP(x), equivalent to ∃x∈S:P(x); returns False for an empty set.
Big Intersection (\bigcap)
An aggregate operator for sets ⋂i=1nAi=A1∩A2∩...∩An, which is undefined for an empty collection.