Summations and Related Topics 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/19

flashcard set

Earn XP

Description and Tags

VOCABULARY style flashcards covering the definitions, notation, and properties of summations, products, and big operators based on lecture notes by James Aspnes.

Last updated 11:56 AM on 7/10/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

20 Terms

1
New cards

Summation

The discrete version of an integral; written as i=abxi\sum_{i=a}^{b} x_i, representing the sum of a sequence xa,xa+1,,xbx_a, x_{a+1}, \dots, x_b.

2
New cards

Index of summation

The variable (such as ii, jj, or kk) that loops through all values from the lower bound to the upper bound.

3
New cards

Lower bound (or lower limit)

The starting value of the index in a summation, denoted by the value aa.

4
New cards

Upper bound (or upper limit)

The ending value of the index in a summation, denoted by the value bb.

5
New cards

Empty sum

A sum 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 range of an expression affected by the sigma; it extends to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term like a fraction.

7
New cards

Einstein summation convention

A practice in theoretical physics attributed to Albert Einstein where the summation symbol i\sum_{i} is omitted entirely for certain types of sums.

8
New cards

Infinite sum

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

9
New cards

Double sum

A summation where the expression inside is another summation, functioning like nested for loops to sum values over all pairs of indices.

10
New cards

Arithmetic series

A series where the difference between adjacent terms is constant, notably the simplest form 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} for r1r \neq 1.

12
New cards

Linearity of summation

A property allowing constant factors to be pulled out (axi=axi\sum ax_i = a \sum x_i) and allowing sums inside the summation to be split ((xi+yi)=xi+yi\sum (x_i + y_i) = \sum x_i + \sum y_i).

13
New cards

Harmonic series

The sequence of sums denoted by i=1n1i=Hn=Θ(nlog(n))\sum_{i=1}^{n} \frac{1}{i} = H_n = \Theta(n \log(n)).

14
New cards

Product notation

A notation used to multiply a series of values, indicated by the capital Greek letter pi (\prod).

15
New cards

Empty product

A product where the index set is empty, defined to have the value 11 because it is the identity element for multiplication.

16
New cards

Factorial function

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

17
New cards

Big AND

An operator (\bigwedge) used to compute a logical AND over a series, equivalent to the universal quantifier xS:P(x)\forall x \in S : P(x). Its identity element for an empty set is True.

18
New cards

Big OR

An operator (\bigvee) used to compute a logical OR over a series, equivalent to the existential quantifier xS:P(x)\exists x \in S : P(x). Its identity element for an empty set is False.

19
New cards

Big Intersection

The operator i=1nAi\bigcap_{i=1}^{n} A_i representing the intersection of a series of sets; it is undefined over an empty collection because there is no identity element.

20
New cards

Big Union

The operator i=1nAi\bigcup_{i=1}^{n} A_i representing the union of a series of sets, with the empty set as its identity element.