Summations and Related Topics Practice Flashcards

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

1/20

flashcard set

Earn XP

Description and Tags

Flashcards covering vocabulary and core concepts of summations, standard series formulas, and other big operators like products and logical quantifiers based on James Aspnes' lecture notes.

Last updated 1:22 PM on 6/2/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

21 Terms

1
New cards

Summation

The discrete version of an integral; for a sequence xa,xa+1,...,xbx_a, x_{a+1}, \text{...}, x_b, the sum xa+xa+1+...+xbx_a + x_{a+1} + \text{...} + x_b is written as \text{\textsum}_{i=a}^b x_i.

2
New cards

Index of summation

The variable ii in the expression \text{\textsum}_{i=a}^b x_i used to loop through values from the lower bound to the upper bound.

3
New cards

Lower bound (lower limit)

The value aa in the expression \text{\textsum}_{i=a}^b x_i representing the start of the summation loop.

4
New cards

Upper bound (upper limit)

The value bb in the expression \text{\textsum}_{i=a}^b x_i representing the end of the summation loop.

5
New cards

Empty sum

A sum where the upper bound bb is less than the lower bound aa, which is defined to have a value of 00.

6
New cards

Scope of a summation

The range of terms included in a sum, extending to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term such as a fraction numerator.

7
New cards

Index set

A set of values (not necessarily consecutive integers) over which an expression is summed, written using a single subscript under the sigma as in \text{\textsum}_{i \text{\textin} S} x_i.

8
New cards

Einstein summation convention

A notation proposed by Albert Einstein where the summation symbol \text{\textsum} is omitted entirely in certain special types of sums.

9
New cards

Infinite sum

The limit of a series ss obtained by summing the first term, then the first two terms, then the first three, and so on; it converges to xx if for any \text{\textepsilon} > 0, there exists an NN such that for all n>Nn > N, |s_n - x| < \text{\textepsilon}.

10
New cards

Double sum

An expression where one summation is inside another, acting like two nested for loops and summing the innermost expression over all pairs of index values.

11
New cards

Arithmetic series (simplest)

The sum of the first nn positive integers, \text{\textsum}_{i=1}^n i = \frac{n(n+1)}{2}.

12
New cards

Finite geometric series

A sum where the ratio between adjacent terms is constant, expressed by the formula \text{\textsum}_{i=0}^n r^i = \frac{1 - r^{n+1}}{1 - r}.

13
New cards

Infinite geometric series

A series that converges when r<1|r| < 1 to the value \text{\textsum}_{i=0}^{\text{\textinfty}} r^i = \frac{1}{1 - r}.

14
New cards

Harmonic series

The sum \text{\textsum}_{i=1}^n \frac{1}{i}, denoted as HnH_n, which the text identifies as \text{\textTheta}(n \text{\textlog}(n)).

15
New cards

Linearity of summations

A property allowing constant factors to be pulled out (\text{\textsum}_{i \text{\textin} S} a x_i = a \text{\textsum}_{i \text{\textin} S} x_i) and sums inside summations to be split (\text{\textsum}_{i \text{\textin} S} (x_i + y_i) = \text{\textsum}_{i \text{\textin} S} x_i + \text{\textsum}_{i \text{\textin} S} y_i).

16
New cards

Factorial function (n!n!)

A product of a series of values defined for non-negative integers as \text{\textprod}_{i=1}^n i = 1 \text{\texttimes} 2 \text{\texttimes} \text{...} \text{\texttimes} n.

17
New cards

Empty product

A product taken over an empty set, which is defined to have the value 11, the identity element for multiplication.

18
New cards

Big AND (\text{\textbigwedge})

A logical operator that computes the conjunction over a series, equivalent to the universal quantifier \text{\textforall} x \text{\textin} S : P(x), returning True for an empty index set.

19
New cards

Big OR (\text{\textbigvee})

A logical operator that computes the disjunction over a series, equivalent to the existential quantifier \text{\textexists} x \text{\textin} S : P(x), returning False for an empty index set.

20
New cards

Big Intersection (\text{\textbigcap})

An operator that computes the intersection of a collection of sets A_1 \text{\textcap} A_2 \text{\textcap} \text{...} \text{\textcap} A_n; it is undefined for an empty collection of sets.

21
New cards

Big Union (\text{\textbigcup})

An operator that computes the union of a collection of sets A_1 \text{\textcup} A_2 \text{\textcup} \text{...} \text{\textcup} A_n, returning the empty set for an empty collection.