1/19
Vocabulary flashcards covering summations, series identities, estimation rules, big operators, empty evaluations, and systems of power sums.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Index of Summation
The variable in a summation (commonly i, j, or k) that iterates through each value from the lower limit to the upper limit.
Lower Limit
The starting boundary (denoted as a in \begin{equation*}\sum_{i=a}^b x_i\end{equation*}) for the index variable in a summation.
Upper Limit
The ending boundary (denoted as b in \begin{equation*}\sum_{i=a}^b x_i\end{equation*}) for the index variable in a summation.
Empty Sum
A summation where the upper bound is strictly less than the lower bound (b<a), which is defined to evaluate to 0.
Scope of a Summation
The portion of a mathematical expression affected by the summation operator, which extends up to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term.
Einstein Summation Convention
A notation convention used in theoretical physics where the explicit summation symbol \begin{equation*}\sum_i\end{equation*} is omitted in certain repeated-index sums.
Infinite Sum Convergence
A property where the limit of partial sums sn approaches a value x such that for any ̢ > 0, there exists an N where |s_n - x| < ̢ for all n>N.
Double Sum
A summation nested inside another summation, equivalent to nested for-loops, that sums an inner expression over all pairs of index values.
Linearity of Summation
The algebraic property allowing constant factors to be factored out of sums (∑axi=a∑xi) and additive terms to be split (∑(xi+yi)=∑xi+∑yi).
Arithmetic Series
A sum of terms where the difference between consecutive terms is constant, exemplified by the identity ∑i=1ni=2n(n+1).
Geometric Series
A sum of terms with a constant ratio between adjacent terms, evaluated as ∑i=0nri=1−r1−rn+1 for finite sums, or ∑i=0∞ri=1−r1 when ∣r∣<1.
Harmonic Series
The sum of reciprocals of positive integers, denoted as ∑i=1ni1=Hn, which has an asymptotic order of growth of Θ(nlog(n)) when multiplied by n as ∑i=1nin.
Guess but Verify Method
A strategy for evaluating summations by calculating initial values to identify a pattern, forming a candidate closed-form solution, and verifying it by mathematical induction.
Integral Bounding Technique
A method to bound non-decreasing discrete sums using definite integrals, given by ∫a−1bf(x)dx≤∑i=abf(i)≤∫ab+1f(x)dx.
Empty Product
A product over an empty set of indices, defined to equal 1 because 1 is the identity element for multiplication.
Big AND Operator
An aggregate logical operator ⋀x∈SP(x) computing conjunction across a set, which returns True when evaluated over an empty index set.
Big OR Operator
An aggregate logical operator ⋁x∈SP(x) computing disjunction across a set, which returns False when evaluated over an empty index set.
Big Intersection Operator
An aggregate set operator ⋂i=1nAi computing the common elements of sets, which is undefined when evaluated over an empty collection of sets.
Big Union Operator
An aggregate set operator ⋃i=1nAi combining elements across sets, which returns the empty set ∅ when evaluated over an empty collection.
System of Power Sums
A set of symmetric polynomial equations involving sums of powers of variables, such as a+b+c=4, a2+b2+c2=10, and a3+b3+c3=22.