Summations and Big Operators Notes

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

Flashcards covering the definitions, notation, and standard formulas for summations, products, and other big operators as discussed in James Aspnes' lecture notes.

Last updated 9:52 AM on 6/1/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

Summations

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

2
New cards

Index of summation

The variable ii in the notation i=abxi\sum_{i=a}^b x_i used to loop through values from the lower limit to the upper limit.

3
New cards

Lower bound (lower limit)

The value aa in the notation i=abxi\sum_{i=a}^b x_i representing 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 representing the ending point of the summation.

5
New cards

Empty sum

A summation where the upper bound is less than the lower bound (b<ab < a), resulting in a value of 00.

6
New cards

Scope of a summation

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

7
New cards

Infinite sum

The limit of the series of partial sums sns_n; it converges to xx if for any ϵ>0\epsilon > 0, there exists an NN such that for all n>Nn > N, snx<ϵ|s_n - x| < \epsilon.

8
New cards

Einstein summation convention

A notation used by theoretical physicists where the sigma (\sum) is omitted entirely in certain special types of sums.

9
New cards

Double sum

Two nested summations, similar to nested for loops, where the innermost expression is summed over all pairs of values of the two indices.

10
New cards

Arithmetic series (simplest form)

The sum i=1ni=n(n+1)2\sum_{i=1}^n i = \frac{n(n+1)}{2}, which can be remembered as nn times the average value n+12\frac{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}. If r<1|r| < 1, the infinite sum is 11r\frac{1}{1-r}.

12
New cards

Linearity of summation

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

13
New cards

Guess but verify method

A technique for computing sums by writing out the first few values to identify a pattern and proving the resulting formula by induction.

14
New cards

Harmonic series

The sum i=1n1i=Hn=Θ(nlog(n))\sum_{i=1}^n \frac{1}{i} = H_n = \Theta(n \log(n)) (as specialized in this transcript's specific asymptotic notation).

15
New cards

Big Pi notation (\prod)

Notation used to represent the product of a series of values, defined similarly to summation but with multiplication.

16
New cards

Factorial function

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

17
New cards

Empty product

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

18
New cards

Big AND (\bigwedge)

A big operator that computes the logical conjunction of a series of predicates; its identity element/empty set value is True.

19
New cards

Big OR (\bigvee)

A big operator that computes the logical disjunction of a series of predicates; its identity element/empty set value is False.

20
New cards

Big Union (\bigcup)

An operator that computes the union of a collection of sets; its identity element/empty set value is the empty set.