Notes on Summations and Related Topics

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

Vocabulary and concepts related to discrete summations, series, products, and big operators as used in algorithm analysis and discrete mathematics.

Last updated 1:18 PM on 6/24/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

Summation

The discrete version of integrals; given a sequence xa,xa+1,...,xbx_a, x_{a+1}, \text{...}, x_b, its sum is written as i=abxi\sum_{i=a}^{b} x_i.

2
New cards

Index of summation

The variable ii in the summation notation i=abxi\sum_{i=a}^{b} x_i, which loops through all values from the lower bound to the upper bound.

3
New cards

Lower bound (lower limit)

The starting value aa in the summation notation i=abxi\sum_{i=a}^{b} x_i.

4
New cards

Upper bound (upper limit)

The ending value bb in the summation notation i=abxi\sum_{i=a}^{b} x_i, which is the final value included in the loop.

5
New cards

Empty sum

A summation where the upper bound is less than the lower bound (b<ab < a); it is defined to have a value of 00.

6
New cards

Scope (of a summation)

The extent of a summation, which reaches to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term like a fraction numerator.

7
New cards

Infinite sum

The limit of the series sns_n obtained by taking the sum of the first nn terms as nn approaches infinity, formally converging if snx<ϵ|s_n - x| < \epsilon for all n>Nn > N.

8
New cards

Einstein summation convention

A notation style where the summation symbol is left out entirely in certain types of sums, proposed by Albert Einstein.

9
New cards

Double sum

A summation where the expression inside is another summation, functioning like two nested for loops.

10
New cards

Arithmetic series

A series where the difference between adjacent terms is constant; the simplest form is i=1ni=n(n+1)2\sum_{i=1}^{n} i = \frac{n(n+1)}{2}, which is nn times the average value.

11
New cards

Geometric series

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

12
New cards

Harmonic series

The sum i=1n1i\sum_{i=1}^{n} \frac{1}{i}, denoted as HnH_n (the nn-th harmonic number), and characterized in the text as Θ(nlogn)\Theta(n \log n).

13
New cards

Linearity (of summation)

The property allowing constant factors to be pulled out as in axi=axi\sum ax_i = a \sum x_i, and allowing sums to be split as in (xi+yi)=xi+yi\sum (x_i + y_i) = \sum x_i + \sum y_i.

14
New cards

Product notation

A notation used to multiply a series of values, denoted by the Greek letter pi (\prod), such as in the definition of factorials: n!=i=1nin! = \prod_{i=1}^{n} i.

15
New cards

Empty product

A product with no factors that is defined to have the value 11, which is the identity element for multiplication.

16
New cards

Big AND (\bigwedge)

An operator representing universal quantification (\forall) over a set of predicates; returns TrueTrue for an empty index set.

17
New cards

Big OR (\bigvee)

An operator representing existential quantification (\exists) over a set of predicates; returns FalseFalse for an empty index set.

18
New cards

Big Intersection

The intersection of a collection of sets; it is undefined if the collection of sets is empty because there is no identity element.

19
New cards

Big Union

The union of a collection of sets; returns the empty set if the index set is empty.