Summations and Related Topics Lecture 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

Practice flashcards covering definitions, formulas, and properties of summations, products, and other big operators as described in the lecture notes.

Last updated 8:56 AM on 7/17/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

Summation

The discrete version of an integral, written as i=abxi\sum_{i=a}^b x_i, which represents the sum of a sequence of values xa,xa+1,,xbx_a, x_{a+1}, \dots, x_b.

2
New cards

Index of summation

The variable (usually ii, jj, or kk) used to loop through values in a sum from the lower bound to the upper bound.

3
New cards

Lower bound (or lower limit)

The starting value of the index in a summation, denoted by the variable aa in i=abxi\sum_{i=a}^b x_i.

4
New cards

Upper bound (or upper limit)

The ending value of the index in a summation, denoted by the variable bb in 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 portion of an expression affected by the summation operator; it extends to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term.

7
New cards

Index set

A set of values over which an expression is summed, often used when indices are not consecutive integers, written as iSxi\sum_{i \in S} x_i.

8
New cards

Infinite sum

The limit of a series of partial sums sns_n as the number of terms approaches infinity, defined as i=0xi\sum_{i=0}^{\infty} x_i.

9
New cards

Einstein summation convention

A notation proposed by Albert Einstein where the summation symbol \sum is omitted entirely for certain special types of sums.

10
New cards

Double sum

A summation where the expression inside is itself another summation, behaving like nested for loops and summing over all pairs of values of the two indices.

11
New cards

Summation linearity

A property of the summation operator allowing constant factors to be pulled out (axi=axi\sum a x_i = a \sum x_i) and sums within sums to be split ((xi+yi)=xi+yi\sum (x_i + y_i) = \sum x_i + \sum y_i).

12
New cards

Arithmetic series

A series where the difference between adjacent terms is constant, with the simplest form being i=1ni=n(n+1)2\sum_{i=1}^n i = \frac{n(n + 1)}{2}.

13
New cards

Geometric series

A series where the ratio between adjacent terms is constant, characterized by the formula i=0nri=1rn+11r\sum_{i=0}^n r^i = \frac{1 - r^{n+1}}{1 - r}.

14
New cards

Harmonic series (HnH_n)

The sum of the inverses of the first nn integers, denoted as i=1n1i\sum_{i=1}^n \frac{1}{i}, which is approximated as Θ(nlogn)\Theta(n \log n) in these notes.

15
New cards

Product notation (Big Pi)

An operator, denoted by \prod, used to multiply a series of values, such as in the definition of factorial: n!=i=1nin! = \prod_{i=1}^n i.

16
New cards

Empty product

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

17
New cards

Big AND (\bigwedge)

An operator that computes the logical AND over a set of predicates, equivalent to the universal quantifier xS:P(x)\forall x \in S : P(x), with an identity value of True.

18
New cards

Big OR (\bigvee)

An operator that computes the logical OR over a set of predicates, equivalent to the existential quantifier xS:P(x)\exists x \in S : P(x), with an identity value of False.

19
New cards

Big Intersection (\bigcap)

An operator representing the intersection of multiple sets; it is undefined for an empty collection of sets because there is no identity element.

20
New cards

Big Union (\bigcup)

An operator representing the union of multiple sets, which returns the empty set for an empty collection of sets.