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

flashcard set

Earn XP

Description and Tags

Flashcards covering the definitions, formulas, and rules for summations, products, and other big operators like big AND/OR and set operations.

Last updated 11:10 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

20 Terms

1
New cards

Summations

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

2
New cards

Index of summation

The variable (e.g., ii) used in a summation that loops through all values from the lower bound to the upper bound.

3
New cards

Lower bound

The starting value of the index of summation, also known as the lower limit.

4
New cards

Upper bound

The ending value of the index of summation, also known as the upper limit.

5
New cards

Empty sum

A summation where the upper bound bb is less than the lower bound aa, which is defined to have the value 00. For example, i=052itan(i)i3=0\sum_{i=0}^{-5} \frac{2^i \tan(i)}{i^3} = 0.

6
New cards

Scope of a summation

Extends to the first addition or subtraction symbol that is not enclosed in parentheses or part of a larger term like a fraction numerator.

7
New cards

Einstein summation convention

A technique used by theoretical physicists where the summation symbol i\sum_i is left out entirely in certain types of sums.

8
New cards

Infinite sum

The limit of a series ss obtained by adding terms one by one; 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

A summation where the expression inside is another summation, functioning like two nested for loops.

10
New cards

Standard arithmetic series formula

i=1ni=n(n+1)2\sum_{i=1}^{n} i = \frac{n(n+1)}{2}.

11
New cards

Standard geometric series formula

i=0nri=1rn+11r\sum_{i=0}^{n} r^i = \frac{1-r^{n+1}}{1-r}, valid even when r>1r > 1, but not for r=1r = 1.

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

Linearity of summation

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

14
New cards

Harmonic series

i=1n1/i=Hn=Θ(nlogn)\sum_{i=1}^{n} 1/i = H_n = \Theta(n \log n), according to the provided lecture notes.

15
New cards

Factorial function (product notation)

n!i=1ni=1×2××nn! ≔ \prod_{i=1}^{n} i = 1 \times 2 \times ··· \times n.

16
New cards

Empty product

Defined to have the value 11, which is the identity element for multiplication.

17
New cards

Big AND

xSP(x)xS:P(x)\bigwedge_{x \in S} P(x) \equiv \forall x \in S : P(x). Its identity element for an empty index set is True.

18
New cards

Big OR

xSP(x)xS:P(x)\bigvee_{x \in S} P(x) \equiv \exists x \in S : P(x). Its identity element for an empty index set is False.

19
New cards

Big Intersection

i=1nAi=A1A2An\bigcap_{i=1}^{n} A_i = A_1 \cap A_2 \cap ··· \cap A_n. It is undefined over an empty collection of sets as there is no identity element.

20
New cards

Big Union

i=1nAi=A1A2An\bigcup_{i=1}^{n} A_i = A_1 \cup A_2 \cup ··· \cup A_n. Its identity element is the empty set.