Summations, Products, and Big Operators

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/19

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering summations, series identities, estimation rules, big operators, empty evaluations, and systems of power sums.

Last updated 11:13 AM on 8/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

20 Terms

1
New cards

Index of Summation

The variable in a summation (commonly ii, jj, or kk) that iterates through each value from the lower limit to the upper limit.

2
New cards

Lower Limit

The starting boundary (denoted as aa in \begin{equation*}\sum_{i=a}^b x_i\end{equation*}) for the index variable in a summation.

3
New cards

Upper Limit

The ending boundary (denoted as bb in \begin{equation*}\sum_{i=a}^b x_i\end{equation*}) for the index variable in a summation.

4
New cards

Empty Sum

A summation where the upper bound is strictly less than the lower bound (b<ab < a), which is defined to evaluate to 00.

5
New cards

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.

6
New cards

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.

7
New cards

Infinite Sum Convergence

A property where the limit of partial sums sns_n approaches a value xx such that for any ̢ > 0, there exists an NN where |s_n - x| < ̢ for all n>Nn > N.

8
New cards

Double Sum

A summation nested inside another summation, equivalent to nested for-loops, that sums an inner expression over all pairs of index values.

9
New cards

Linearity of Summation

The algebraic property allowing constant factors to be factored out of sums (axi=axi\sum a x_i = a \sum x_i) and additive terms to be split ((xi+yi)=xi+yi\sum (x_i + y_i) = \sum x_i + \sum y_i).

10
New cards

Arithmetic Series

A sum of terms where the difference between consecutive terms is constant, exemplified by the identity i=1ni=n(n+1)2\sum_{i=1}^n i = \frac{n(n + 1)}{2}.

11
New cards

Geometric Series

A sum of terms with a constant ratio between adjacent terms, evaluated as i=0nri=1rn+11r\sum_{i=0}^n r^i = \frac{1 - r^{n+1}}{1 - r} for finite sums, or i=0ri=11r\sum_{i=0}^{\infty} r^i = \frac{1}{1 - r} when r<1|r| < 1.

12
New cards

Harmonic Series

The sum of reciprocals of positive integers, denoted as i=1n1i=Hn\sum_{i=1}^n \frac{1}{i} = H_n, which has an asymptotic order of growth of Θ(nlog(n))\Theta(n \log(n)) when multiplied by nn as i=1nni\sum_{i=1}^n \frac{n}{i}.

13
New cards

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.

14
New cards

Integral Bounding Technique

A method to bound non-decreasing discrete sums using definite integrals, given by a1bf(x)dxi=abf(i)ab+1f(x)dx\int_{a-1}^b f(x)\,dx \le \sum_{i=a}^b f(i) \le \int_a^{b+1} f(x)\,dx.

15
New cards

Empty Product

A product over an empty set of indices, defined to equal 11 because 11 is the identity element for multiplication.

16
New cards

Big AND Operator

An aggregate logical operator xSP(x)\bigwedge_{x \in S} P(x) computing conjunction across a set, which returns True\text{True} when evaluated over an empty index set.

17
New cards

Big OR Operator

An aggregate logical operator xSP(x)\bigvee_{x \in S} P(x) computing disjunction across a set, which returns False\text{False} when evaluated over an empty index set.

18
New cards

Big Intersection Operator

An aggregate set operator i=1nAi\bigcap_{i=1}^n A_i computing the common elements of sets, which is undefined when evaluated over an empty collection of sets.

19
New cards

Big Union Operator

An aggregate set operator i=1nAi\bigcup_{i=1}^n A_i combining elements across sets, which returns the empty set \emptyset when evaluated over an empty collection.

20
New cards

System of Power Sums

A set of symmetric polynomial equations involving sums of powers of variables, such as a+b+c=4a + b + c = 4, a2+b2+c2=10a^2 + b^2 + c^2 = 10, and a3+b3+c3=22a^3 + b^3 + c^3 = 22.