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

flashcard set

Earn XP

Description and Tags

These flashcards cover the terminology, notation, and standard formulas for summations, products, and other large mathematical operators as detailed in James Aspnes' lecture notes.

Last updated 9:38 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

21 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, typically denoted as ii, jj, or kk, that loops through all values from the lower bound to the upper bound in a summation.

3
New cards

Lower bound

Also called the lower limit, it is the starting value aa in the summation notation i=abxi\sum_{i=a}^{b} x_i.

4
New cards

Upper bound

Also called the upper limit, it is the ending value bb in the summation notation i=abxi\sum_{i=a}^{b} x_i.

5
New cards

Empty sum

A sum where the upper bound bb is less than the lower bound aa, which is defined to have a value of 00.

6
New cards

Scope of a summation

The reach of the summation operator which extends to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term like a fraction numerator.

7
New cards

Einstein summation convention

A lazy approach used by theoretical physicists where the summation symbol (\sum) is left out entirely in certain special types of sums.

8
New cards

Infinite sum

The limit of the series ss obtained by summing terms indefinitely; 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 summations that function like nested for loops, summing an expression over all pairs of values of the two indices.

10
New cards

Carl Friedrich Gauss

The 18th-century mathematician who allegedly invented the trick of summing the sequence 11 to nn by adding two copies of the sequence running in opposite directions.

11
New cards

Standard Arithmetic Series sum

The formula for the sum of the first nn integers: 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}.

12
New cards

Geometric series

A sum 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} or i=0ri=11r\sum_{i=0}^{\infty} r^i = \frac{1}{1-r} for r<1|r| < 1.

13
New cards

Summation linearity

The property stating that constant factors can be pulled out (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).

14
New cards

Harmonic series

Represented by i=1n1i=Hn\sum_{i=1}^{n} \frac{1}{i} = H_n, which the transcript identifies with an asymptotic estimate of Θ(nlogn)\Theta(n \log n). (Note: Θ(logn)\Theta(\log n) is the standard bound, but the text specifies Θ(nlogn)\Theta(n \log n) in several sections).

15
New cards

Product notation

The multiplication of a series of values, denoted by the capital Greek letter pi (\prod).

16
New cards

Factorial function

Defined for non-negative integers 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

Empty product

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

18
New cards

Big AND

The operator xSP(x)\bigwedge_{x \in S} P(x), equivalent to xS:P(x)\forall x \in S : P(x), which returns the identity element True for an empty set.

19
New cards

Big OR

The operator xSP(x)\bigvee_{x \in S} P(x), equivalent to xS:P(x)\exists x \in S : P(x), which returns the identity element False for an empty set.

20
New cards

Big Intersection

The notation i=1nAi\bigcap_{i=1}^{n} A_i representing the intersection of multiple sets; it is undefined for an empty collection of sets.

21
New cards

Big Union

The notation i=1nAi\bigcup_{i=1}^{n} A_i representing the union of multiple sets; its identity element is the empty set.