Notes on Summations

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

Vocabulary and formulas concerning summations, series, products, and big operators from James Aspnes' lecture notes.

Last updated 11:48 AM on 6/2/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

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

2
New cards

Index of summation

The variable (such as ii, jj, or kk) used to loop through all values from the lower limit to the upper limit in a sum.

3
New cards

Empty sum rule

If the upper bound bb is less than the lower bound aa (b<ab < a), the value of the sum is defined to be 00.

4
New cards

Index shifting

The process of renaming or changing the range of an index variable by adjusting the lower and upper bounds to match, such as substituting j=i1j = i - 1.

5
New cards

Scope of a summation

The portion of an expression governed 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 numerator.

6
New cards

Einstein summation convention

A notation style often used by theoretical physicists that leaves out the i\sum_i part entirely in certain special types of sums.

7
New cards

Infinite sum limit

The value xx a series converges to if for any ϵ>0\epsilon > 0, there exists an NN such that for all n>Nn > N, the partial sum sns_n satisfies snx<ϵ|s_n - x| < \epsilon.

8
New cards

Double sum

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

9
New cards

Standard Sum: i=1n1\sum_{i=1}^n 1

The result is exactly nn.

10
New cards

Simple Arithmetic Series: i=1ni\sum_{i=1}^n i

The formula is n(n+1)2\frac{n(n+1)}{2}, which equals nn times the average value n+12\frac{n+1}{2}.

11
New cards

Finite Geometric Series: i=0nri\sum_{i=0}^n r^i

The sum is equal to 1rn+11r\frac{1 - r^{n+1}}{1 - r}, provided r1r \neq 1.

12
New cards

Infinite Geometric Series: i=0ri\sum_{i=0}^{\infty} r^i

This sum equals 11r\frac{1}{1 - r} provided that r<1|r| < 1.

13
New cards

Harmonic Series (HnH_n)

Defined as i=1n1i\sum_{i=1}^n \frac{1}{i}, which is asymptotically bounded as Θ(nlogn)\Theta(n \log n) according to the notes.

14
New cards

Linearity of Summation

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

15
New cards

Guess but verify method

A technique involving writing out the values of a sum for specific cases to recognize a pattern and then proving the formula by induction.

16
New cards

Big-Theta of Geometric Series

When xx is a constant not equal to 11, the sum of a geometric series is always big-Theta of its largest term.

17
New cards

Integral trick (non-decreasing)

A strategy for bounding sums where a1bf(x)dxi=abf(i)ab+1f(x)dx\int_{a-1}^b f(x)\,dx \leq \sum_{i=a}^b f(i) \leq \int_a^{b+1} f(x)\,dx.

18
New cards

Product notation

A series of multiplied values written with the capital Greek letter pi (\prod).

19
New cards

Factorial function (n!n!)

The product of integers from 11 to nn, defined as n!=i=1nin! = \prod_{i=1}^n i.

20
New cards

Empty product rule

An empty product is defined to have the value 11, which is the identity element for multiplication.

21
New cards

Identity element (Big AND)

For the Big AND operator (\bigwedge), the value for an empty index set is True.

22
New cards

Identity element (Big OR)

For the Big OR operator (\bigvee), the value for an empty index set is False.

23
New cards

Identity element (Big Intersection)

There is no identity element in general for the Big Intersection (\bigcap) operator, and its value over an empty set is undefined.