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

flashcard set

Earn XP

Description and Tags

Vocabulary terms and definitions related to summations, products, and other big operators based on lecture notes.

Last updated 2:18 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

22 Terms

1
New cards

Summation

A discrete version of an integral; for a sequence xa,xa+1,...,xbx_a, x_{a+1}, \text{...}, x_b, it is written as i=abxi\sum_{i=a}^{b} x_i.

2
New cards

Index of summation

The variable (typically ii) used in summation notation that loops through all values from the lower bound to the upper bound.

3
New cards

Lower bound

The starting value (or lower limit) in a summation, denoted by aa in the expression i=abf(i)\sum_{i=a}^{b} f(i).

4
New cards

Upper bound

The ending value (or upper limit) in a summation, denoted by bb in the expression i=abf(i)\sum_{i=a}^{b} f(i).

5
New cards

Empty sum

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

6
New cards

Scope (of a summation)

The extent of a summation expression, which continues until the first addition or subtraction symbol not enclosed in parentheses or part of a larger term.

7
New cards

Index set

A set of values over which an expression is summed, often used when indices are not consecutive integers, written using a predicate such as i{3,5,7}i2\sum_{i \in \{3,5,7\}} i^2.

8
New cards

Infinite sum

An expression where the upper limit is infinite, defined as the limit of the series of partial sums.

9
New cards

Convergence

The property where a limit of partial sums reaches a particular value xx such that for any ϵ>0\epsilon > 0, there exists an NN where all sns_n for n>Nn > N satisfy snx<ϵ|s_n - x| < \epsilon.

10
New cards

Einstein summation convention

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

11
New cards

Double sum

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

12
New cards

Geometric series

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

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

14
New cards

Harmonic series

The sum i=1n1i\sum_{i=1}^{n} \frac{1}{i}, denoted as HnH_n, which is characterized by the asymptotic bound Θ(nlog(n))\Theta(n \log(n)) in the text.

15
New cards

Summation linearity

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

16
New cards

Product notation

A notation using the capital Greek letter pi (\prod) to represent the multiplication of a series of values, similar to summation notation.

17
New cards

Empty product

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

18
New cards

Factorial

A function for non-negative integers defined as n!=i=1nin! = \prod_{i=1}^{n} i, where 0!=10! = 1.

19
New cards

Big AND

The operator (\bigwedge) that performs a logical AND over a set of predicates, returning True if the index set is empty.

20
New cards

Big OR

The operator (\bigvee) that performs a logical OR over a set of predicates, returning False if the index set is empty.

21
New cards

Big Intersection

The operator (\bigcap) for the intersection of a series of sets, which is undefined for an empty collection of sets.

22
New cards

Big Union

The operator (\bigcup) for the union of a series of sets, which returns the empty set if the index set is empty.