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

flashcard set

Earn XP

Description and Tags

Vocabulary and key definitions regarding summations, products, specific mathematical series, and notation conventions used in discrete mathematics and algorithm analysis.

Last updated 1:31 PM on 5/26/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

Summations

The discrete versions of integrals, written as i=abxi\sum_{i=a}^b x_i for a sequence xa,xa+1,,xbx_a, x_{a+1}, \dots, x_b.

2
New cards

Index of summation

The variable (traditionally ii, jj, or kk) used to loop through values from the lower limit to the upper limit.

3
New cards

Lower bound (or lower limit)

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

4
New cards

Upper bound (or upper limit)

The ending value bb in the summation i=abxi\sum_{i=a}^b x_i.

5
New cards

Summation of an empty set

A sum where the upper bound bb is less than the lower bound aa (b<ab < a), defined as 00.

6
New cards

Scope of a summation

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

7
New cards

Einstein summation convention

A notation used in theoretical physics where the i\sum_i part is omitted entirely in certain special types of sums.

8
New cards

Infinite sum

The limit of the series ss obtained by taking the sum of the first term, the first two terms, the first three terms, and so on.

9
New cards

Double sums

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

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

11
New cards

Geometric series

A series 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}. When r<1|r| < 1, the infinite sum is 11r\frac{1}{1-r}.

12
New cards

Harmonic series

The sum i=1n1i\sum_{i=1}^n \frac{1}{i}, denoted as HnH_n, which is Θ(nlog(n))\Theta(n \log(n)).

13
New cards

Linearity of summation

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

14
New cards

Identity element for addition

The value 00, which is returned for an empty sum because adding it to a value xx does not change xx.

15
New cards

Identity element for multiplication

The value 11, which is returned for an empty product because multiplying it by a value xx does not change xx.

16
New cards

Product notation

Uses the capital Greek letter pi (\prod) to represent multiplying a series of values together.

17
New cards

Factorial function (n!n!)

Defined for non-negative nn as i=1ni=1×2××n\prod_{i=1}^n i = 1 \times 2 \times \dots \times n, where 0!=10! = 1.

18
New cards

Big AND (\bigwedge)

A logical operator across a set that returns TrueTrue for an empty index set.

19
New cards

Big OR (\bigvee)

A logical operator across a set that returns FalseFalse for an empty index set.

20
New cards

Big Intersection (\bigcap)

An operator for a collection of sets that is undefined for an empty collection because there is no identity element.

21
New cards

Big Union (\bigcup)

An operator for a collection of sets that returns the empty set for an empty index set.