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/18

flashcard set

Earn XP

Description and Tags

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

Last updated 10:24 AM on 5/27/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

Summation

The discrete version of an integral; 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 (e.g., ii) used in a summation that loops through all values from the lower bound to the upper bound.

3
New cards

Lower bound

Also called the lower limit, it is the starting value for the index of summation (denoted as aa in i=abxi\sum_{i=a}^{b} x_i).

4
New cards

Upper bound

Also called the upper limit, it is the ending value for the index of summation (denoted as bb in i=abxi\sum_{i=a}^{b} x_i).

5
New cards

Empty sum

A sum where the upper bound bb is less than the lower bound aa; it is defined to be zero.

6
New cards

Scope

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's numerator).

7
New cards

Einstein summation convention

A practice in theoretical physics where the summation symbol i\sum_{i} is left out entirely in certain types of sums.

8
New cards

Infinite sum

The limit of the partial series sns_n as nn approaches infinity. It converges to xx if for any ϵ>0\epsilon > 0, there exists an NN such that for all n>Nn > N, |s_n - x| < \text{\epsilon}.

9
New cards

Double sum

Two nested summations that sum the innermost expression over all pairs of values of the two indices.

10
New cards

Arithmetic series

A sum 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}.

11
New cards

Geometric series

A sum where the ratio between adjacent terms is constant; the finite formula 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=1n1/i\sum_{i=1}^{n} 1/i, denoted as HnH_n, which is categorized as Θ(n log n)\Theta(n \text{ log } n).

13
New cards

Linearity

A property of summations where constant factors can be pulled out (axi=axi\sum a x_i = a \sum x_i) and sums inside sums can be split.

14
New cards

Product notation (Pi)

A notation using the uppercase Greek letter pi (\Pi) to represent multiplying a series of values, such as the factorial n!=i=1nin! = \prod_{i=1}^{n} i.

15
New cards

Empty product

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

16
New cards

Big AND (\bigwedge)

The logical operator xSP(x)\bigwedge_{x \in S} P(x), which computes the conjunction of predicates across a set; its identity element is True.

17
New cards

Big OR (\bigvee)

The logical operator xSP(x)\bigvee_{x \in S} P(x), which computes the disjunction of predicates across a set; its identity element is False.

18
New cards

Big Intersection (\bigcap)

The operator i=1nAi\bigcap_{i=1}^{n} A_i, which performs the intersection of a collection of sets; it is undefined for an empty collection.

19
New cards

Big Union (\bigcup)

The operator i=1nAi\bigcup_{i=1}^{n} A_i, which performs the union of a collection of sets; its identity element is the empty set.