Summations and Related Topics

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

1/19

flashcard set

Earn XP

Description and Tags

Practice vocabulary flashcards covering the notation, formal definitions, standard series formulas, and identities related to summations and products based on notes by James Aspnes.

Last updated 6:24 AM on 6/1/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

20 Terms

1
New cards

Index of Summation

The variable (often denoted as ii, jj, or kk) used in a summation that loops through all values from the lower limit to the upper limit.

2
New cards

Lower Bound (Lower Limit)

The starting value, denoted as aa in the expression i=abxi\sum_{i=a}^{b} x_i, for the index of summation.

3
New cards

Upper Bound (Upper Limit)

The ending value, denoted as bb in the expression i=abxi\sum_{i=a}^{b} x_i, for the index of summation.

4
New cards

Empty Sum Rule

The rule stating that if the upper bound bb is less than the lower bound aa (i.e., (b<a)(b < a)), then the value of the sum is 00.

5
New cards

Formal Definition of Finite Sums

Defined by recurrences such as i=abf(i)=f(b)+i=ab1f(i)\sum_{i=a}^{b} f(i) = f(b) + \sum_{i=a}^{b-1} f(i) if bab \geq a, otherwise 00.

6
New cards

Scope of a Summation

The extent of the summation which continues until the first addition or subtraction symbol not enclosed in parentheses or part of a larger term (like a fraction numerator).

7
New cards

Sum over an Index Set

A summation written with a single subscript giving a predicate that the indices must obey, such as p<1000, p is prime1p\sum_{p < 1000, \text{ p is prime}} \frac{1}{p}.

8
New cards

Einstein Summation Convention

A notation style used by theoretical physicists where the summation symbol ($\sum$) is left out entirely for certain types of sums.

9
New cards

Infinite Sum Convergence

A series converges to a value xx if for any ϵ>0\epsilon > 0, there exists an NN such that for all n>Nn > N, the partial sum sns_n satisfies snx<ϵ|s_n - x| < \epsilon.

10
New cards

Double Sum

Two nested summations where the innermost expression is summed over all pairs of values of the two indices, analogous to nested for loops.

11
New cards

Arithmetic Series

A series where the difference between adjacent terms is constant; the simplest example is i=1ni=n(n+1)2\sum_{i=1}^{n} i = \frac{n(n+1)}{2}.

12
New cards

Geometric Series

A series where the ratio between adjacent terms is constant; the sum for a finite series is i=0nri=1rn+11r\sum_{i=0}^{n} r^i = \frac{1 - r^{n+1}}{1 - r}.

13
New cards

Harmonic Series

Denoted as Hn=i=1n1iH_n = \sum_{i=1}^{n} \frac{1}{i}, which is asymptotically Θ(nlog(n))\Theta(n \log(n)) according to these notes.

14
New cards

Gauss's Trick

The method of proving i=1ni=n(n+1)2\sum_{i=1}^{n} i = \frac{n(n+1)}{2} by adding two copies of the sequence running in opposite directions to get nn terms that each sum to (n+1)(n+1).

15
New cards

Linearity (Summation Identity)

The property allowing constant factors to be pulled out ($\sum axi = a \sum xi$) and sums within sums to be split ($\sum (xi + yi) = \sum xi + \sum yi$).

16
New cards

Product Notation

Represented by the Greek letter capital pi ($\prod$), it denotes multiplying a series of values, such as n!=i=1nin! = \prod_{i=1}^{n} i.

17
New cards

Identity Element (Summation and Product)

The default value for an empty operator: 00 for sums (additive identity) and 11 for products (multiplicative identity).

18
New cards

Big AND ($\bigwedge$)

An aggregate operator representing universal quantification (xS:P(x)\forall x \in S : P(x)) that returns True for an empty index set.

19
New cards

Big OR ($\bigvee$)

An aggregate operator representing existential quantification (xS:P(x)\exists x \in S : P(x)) that returns False for an empty index set.

20
New cards

Big Intersection ($\bigcap$)

An aggregate operator for sets that has no general identity element and is undefined for an empty collection of sets.