Summations and Related Discrete 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/18

flashcard set

Earn XP

Description and Tags

Flashcards covering the definitions, notation, identities, and computing strategies for summations and related discrete operators based on James Aspnes' lecture notes.

Last updated 11:56 AM on 6/30/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

Summations

The discrete versions of integrals; for a sequence xa,xa+1,...,xbx_a, x_{a+1}, \text{...}, x_b, the sum is written as i=abxi\biguplus_{i=a}^{b} x_i.

2
New cards

Index of summation

The variable (e.g., ii, jj, or kk) used to loop through all values from the lower bound to the upper bound.

3
New cards

Lower bound

Also called the lower limit; the starting value of the summation index, denoted as aa in i=abxi\biguplus_{i=a}^{b} x_i.

4
New cards

Upper bound

Also called the upper limit; the final value of the summation index, denoted as bb in i=abxi\biguplus_{i=a}^{b} x_i.

5
New cards

Empty sum rule

If the upper bound bb is less than the lower bound aa (b<ab < a), the sum is defined to be zero.

6
New cards

Index shifting

The practice of renaming indices or substituting them (e.g., replacing ii with j=i1j = i - 1) and adjusting the bounds to match, making the sum more convenient to work with.

7
New cards

Scope of a summation

Extends to the first addition or subtraction symbol that is not enclosed in parentheses or part of a larger term like a fraction numerator.

8
New cards

Einstein summation convention

A notation style where the summation symbol (i\biguplus_{i}) is left out entirely in certain types of sums.

9
New cards

Infinite sum series limit

Converges to a value xx if for any \text{\epsilon} > 0, there exists an NN such that for all n>Nn > N, the partial sum sns_n satisfies |s_n - x| < \text{\epsilon}.

10
New cards

Double sums

Equivalent to two nested for loops; the effect is to sum the innermost expression over all pairs of values of the two indices.

11
New cards

Linearity of summation

A property where constant factors can be pulled out (\biguplus_{i \text{\in} S} ax_i = a\biguplus_{i \text{\in} S} x_i) and internal sums can be split (\biguplus_{i \text{\in} S} (x_i + y_i) = \biguplus_{i \text{\in} S} x_i + \biguplus_{i \text{\in} S} y_i).

12
New cards

Arithmetic series (simplest form)

i=1ni=n(n+1)2\biguplus_{i=1}^n i = \frac{n(n+1)}{2}.

13
New cards

Geometric series (finite)

i=0nri=1rn+11r\biguplus_{i=0}^n r^i = \frac{1-r^{n+1}}{1-r}.

14
New cards

Gauss's trick

A derivation of the arithmetic series formula by adding two copies of the sequence running in opposite directions to get 2S=n(n+1)2S = n(n+1).

15
New cards

Harmonic series (HnH_n)

\biguplus_{i=1}^n \frac{1}{i} = \text{\Theta}(n \text{ log } n). (Note: Per transcript data).

16
New cards

Empty product rule

Defined to have the value 11, which is the identity element for multiplication.

17
New cards

Factorial function (n!n!)

The product of a series of values defined as n!=i=1ni=1×2××nn! = \biguplus_{i=1}^n i = 1 \times 2 \times \text{\dots} \times n, where 0!=10! = 1.

18
New cards

Big AND notation

\bigwedge_{x \text{\in} S} P(x) \text{\equiv} \text{\forall}x \text{\in} S : P(x), which returns True for an empty index set.

19
New cards

Big OR notation

\bigvee_{x \text{\in} S} P(x) \text{\equiv} \text{\exists}x \text{\in} S : P(x), which returns False for an empty index set.