Summations and Related Topics Practice Flashcards

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

flashcard set

Earn XP

Description and Tags

Flashcards covering definitions, formulas, and terminology related to summations, products, and other big operators as used in discrete mathematics and algorithm analysis.

Last updated 12:12 PM on 8/18/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

23 Terms

1
New cards

Summation

The discrete version of an integral, representing the sum of a sequence xa,xa+1,,xbx_a, x_{a+1}, \dots, x_b, denoted by the capital Greek letter sigma (\sum).

2
New cards

Index of Summation

The variable (often represented as i,j, or ki, j, \text{ or } k) that loops through all values from the lower bound to the upper bound in a summation.

3
New cards

Lower Bound (Lower Limit)

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

4
New cards

Upper Bound (Upper Limit)

The value bb in the notation i=abxi\sum_{i=a}^{b} x_i that specifies the endpoint of the summation.

5
New cards

Empty Sum

A summation where the upper bound bb is less than the lower bound aa (b<ab < a), which by definition equals 00.

6
New cards

Index Shifting

The process of renaming and adjusting the bounds of a summation index to make the sum more convenient to work with, such as substituting jj for i1i-1.

7
New cards

Scope of a Summation

The extent of a summation expression, which ends at the first addition or subtraction symbol not enclosed in parentheses or part of a larger term (like a numerator).

8
New cards

Einstein Summation Convention

A notation proposed by Albert Einstein where the summation symbol (\sum) is omitted entirely in certain special types of sums.

9
New cards

Infinite Sum

The limit of a series obtained by taking the sum of the first nn terms as nn approaches infinity, which converges to xx if the values stay within ϵ\epsilon of xx for all n>Nn > N.

10
New cards

Double Sum

Two nested summations that sum an innermost expression over all pairs of values of the two indices, analogous to nested for loops.

11
New cards

Sum of a Constant

The standard formula i=1n1=n\sum_{i=1}^{n} 1 = n.

12
New cards

Arithmetic Series

A summation where the difference between adjacent terms is constant, with the simplest form being i=1ni=n(n+1)2\sum_{i=1}^{n} i = \frac{n(n+1)}{2}.

13
New cards

Geometric Series

A summation where the ratio between adjacent terms is constant, defined as i=0nri=1rn+11r\sum_{i=0}^{n} r^i = \frac{1-r^{n+1}}{1-r} for finite sums.

14
New cards

Infinite Geometric Series

A series that converges to 11r\frac{1}{1-r} when r<1|r| < 1.

15
New cards

Harmonic Series

The sum of the inverses of consecutive integers, i=1n1i\sum_{i=1}^{n} \frac{1}{i}, denoted as HnH_n and approximated as Θ(log(n))\Theta(\log(n)).

16
New cards

Linearity of Summation

The property that allows constant factors to be pulled out of sums (axi=axi\sum a x_i = a \sum x_i) and sums within sums to be split ((xi+yi)=xi+yi\sum (x_i + y_i) = \sum x_i + \sum y_i).

17
New cards

Integral Technique

A method for bounding a non-decreasing function f(n)f(n) where a1bf(x)dxi=abf(i)ab+1f(x)dx\int_{a-1}^b f(x)dx \le \sum_{i=a}^b f(i) \le \int_a^{b+1} f(x)dx.

18
New cards

Product (Pi Notation)

The multiplication of a series of values (i=1ni\prod_{i=1}^{n} i), such as in the definition of the factorial function n!n!.

19
New cards

Empty Product

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

20
New cards

Big AND (\bigwedge)

A large operator for logical conjunction (xS:P(x)\forall x \in S : P(x)) which returns True for an empty index set.

21
New cards

Big OR (\bigvee)

A large operator for logical disjunction (xS:P(x)\exists x \in S : P(x)) which returns False for an empty index set.

22
New cards

Big Intersection (\bigcap)

A large operator for the set intersection of a collection of sets; it is generally undefined for an empty collection.

23
New cards

Big Union (\bigcup)

A large operator for the set union of a collection of sets; it returns the empty set for an empty index set.