1/17
Vocabulary and definitions related to summations, index notation, infinite series, and aggregate mathematical operators.
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; given a sequence xa,xa+1,…,xb, its sum xa+xa+1+⋯+xb is written as ∑i=abxi.
Index of summation
The variable i used in the summation notation ∑i=abxi.
Lower bound (lower limit)
The variable a in the summation notation ∑i=abxi, representing the starting value of the index.
Upper bound (upper limit)
The variable b in the summation notation ∑i=abxi, representing the ending value of the index.
Empty sum
A sum where the upper bound b is less than the lower bound a, which is defined to have a value of 0.
Scope of a summation
The extent of the summation which continues until the first addition or subtraction symbol that is not enclosed in parentheses or part of a larger term.
Bijection
A one-to-one correspondence used to rewrite a sum over a finite set S as a sum over indices in ∣S∣; if ∣S∣=n, then ∑i∈Sxi=∑i=0n−1xf(i).
Einstein summation convention
A notation proposed by Albert Einstein where the ∑i part is left out entirely in certain special types of sums.
Infinite sum
The limit of the series s obtained by taking the sum of the first term, then the first two terms, etc., converging to a value x if for any ϵ>0, there exists an N such that for all n>N, ∣sn−x∣<ϵ.
Double sums
Nested summations, such as ∑i=1a∑j=1b1, which can be thought of as two nested for loops summing an expression over all pairs of index values.
Linearity
A property of the summation operator where constant factors can be pulled out (∑i∈Saxi=a∑i∈Sxi) and sums can be split (∑i∈S(xi+yi)=∑i∈Sxi+∑i∈Syi).
Arithmetic series
A series where the difference between adjacent terms is constant; the simplest form is ∑i=1ni=2n(n+1).
Geometric series
A series where the ratio between adjacent terms is constant; defined by ∑i=0nri=1−r1−rn+1.
Harmonic series
The sum ∑i=1n1/i=Hn=Θ(nlogn), which can be rederived using the integral technique or by grouping terms.
Identity element
The value that, when applied in an operation, does not change the other value; for sums it is 0 and for products it is 1.
Factorial function
Defined for non-negative n as n!=def∏i=1ni=1⋅2⋅⋯⋅n, where 0!=1.
Big AND (\bigwedge)
The aggregate operator ⋀x∈SP(x)≡∀x∈S:P(x), which returns True if the index set is empty.
Big OR (\bigvee)
The aggregate operator ⋁x∈SP(x)≡∃x∈S:P(x), which returns False if the index set is empty.