Summations and Related Topics Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/22

flashcard set

Earn XP

Description and Tags

Vocabulary terms and definitions covering summations, series, product notation, and big operators as defined in the December 13, 2010 lecture by James Aspnes.

Last updated 10:42 AM on 5/27/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

23 Terms

1
New cards

Summations

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

2
New cards

Index of summation

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

3
New cards

Empty sum

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

4
New cards

Summation recurrence (definition 1)

i=abf(i)=0\sum_{i=a}^b f(i) = 0 if b<ab < a, and f(a)+i=a+1bf(i)f(a) + \sum_{i=a+1}^b f(i) otherwise.

5
New cards

Scope of a summation

The range of terms included in the sum, extending to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term (like a fraction numerator).

6
New cards

Sum over an index set

A sum written by replacing bounds with a subscript predicate that indices must obey, such as i{3, 5, 7}i2\sum_{i \text{\{3, 5, 7\}}} i^2, which equals 32+52+72=833^2 + 5^2 + 7^2 = 83.

7
New cards

Einstein summation convention

A notation where the summation symbol i\sum_i is omitted entirely in certain special types of sums, proposed by physicist Albert Einstein.

8
New cards

Infinite sum limit

The limit of the series ss; 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.

9
New cards

Double sum

Two nested for loops in summation notation, such as i=1aj=1b1\sum_{i=1}^a \sum_{j=1}^b 1, which sums the innermost expression over all pairs of values of the two indices.

10
New cards

Simple arithmetic series formula

The formula i=1ni=n(n+1)2\sum_{i=1}^n i = \frac{n(n + 1)}{2}, which is nn times the average value n+12\frac{n+1}{2}.

11
New cards

Finite geometric series formula

i=0nri=1rn+11r\sum_{i=0}^n r^i = \frac{1 - r^{n+1}}{1 - r}.

12
New cards

Infinite geometric series formula

i=0ri=11r\sum_{i=0}^{\infty} r^i = \frac{1}{1 - r}, which holds when r<1|r| < 1.

13
New cards

Carl Friedrich Gauss

The 18th-century mathematician alleged to have invented the trick of adding two copies of a sequence in opposite directions to derive the sum of an arithmetic series.

14
New cards

Linearity (summation identity)

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

15
New cards

Harmonic series

The sum i=1n1/i\sum_{i=1}^n 1/i, denoted as HnH_n, which is given in the notes as being Θ(nlogn)\Theta(n \log n). (Note: Standard mathematics defines HnH_n as Θ(lnn)\Theta(\ln n)).

16
New cards

Guess but verify method

A technique where values for the first few upper limits are tabulated to recognize a sequence, which is then proven correct by induction.

17
New cards

Integral technique for sums

A method to find big-Theta bounds for non-decreasing functions f(n)f(n) using a1bf(x)dxi=abf(i)ab+1f(x)dx\int_{a-1}^b f(x)\,dx \le \sum_{i=a}^b f(i) \le \int_{a}^{b+1} f(x)\,dx.

18
New cards

Products notation (\prod)

Notation using the capital Greek letter pi to represent the multiplication of a series of values.

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

20
New cards

Empty product

A product with an empty index set, defined to have the value 11 (the identity element for multiplication).

21
New cards

Big AND (identity)

An aggregate operator returning True for an empty index set.

22
New cards

Big OR (identity)

An aggregate operator returning False for an empty index set.

23
New cards

Big Intersection over empty set

An operation that is undefined because there is no identity element in general for the intersection of a collection of sets.