Summations and Related Topics

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

1/20

flashcard set

Earn XP

Description and Tags

Flashcards covering definitions, formulas, and properties of summations, products, and other big operators based on lecture notes.

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

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

3
New cards

Lower bound

Also known as the lower limit, it is the starting value for the index of summation in a sum, denoted as aa in i=abxi\sum_{i=a}^{b} x_i.

4
New cards

Upper bound

Also known as the upper limit, it is the ending value for the index of summation in a sum, denoted as bb in i=abxi\sum_{i=a}^{b} x_i.

5
New cards

Empty sum

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

6
New cards

Scope of a summation

The extent of the expression being summed, which continues until 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 notation used by theoretical physicists where the summation symbol i\sum_{i} is left out entirely in certain special types of sums.

8
New cards

Infinite sum

The limit of a series ss obtained by taking the sum of the first term, the first two terms, the first three terms, etc., as the upper limit approaches infinity.

9
New cards

Double sum

A summation where the expression inside is another summation, functioning like two nested for loops that sum over all pairs of index values.

10
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}.

11
New cards

Finite geometric series formula

The formula used to compute a sum where the ratio between adjacent terms is constant: i=0nri=1rn+11r\sum_{i=0}^{n} r^i = \frac{1-r^{n+1}}{1-r}.

12
New cards

Infinite geometric series formula

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

13
New cards

Harmonic series

The sum represented by i=1n1/i=Hn\sum_{i=1}^{n} 1/i = H_n, which the transcript identifies as Θ(nlog(n))\Theta(n \log(n)).

14
New cards

Linearity (Summation)

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

15
New cards

Product notation

Notation using the capital Greek letter pi (\prod) to represent the multiplication of a series of values.

16
New cards

Factorial function

Defined for non-negative nn as n!=i=1ni=1×2××nn! = \prod_{i=1}^{n} i = 1 \times 2 \times \dots \times n, with 0!=10! = 1.

17
New cards

Empty product

A product with no terms, which is defined to have the value 11, the identity element for multiplication.

18
New cards

Big AND

Represented as xSP(x)\bigwedge_{x \in S} P(x), it is equivalent to xS:P(x)\forall x \in S : P(x) and returns TrueTrue for an empty index set.

19
New cards

Big OR

Represented as xSP(x)\bigvee_{x \in S} P(x), it is equivalent to xS:P(x)\exists x \in S : P(x) and returns FalseFalse for an empty index set.

20
New cards

Big Intersection

Represented as i=1nAi\bigcap_{i=1}^{n} A_i, its result over an empty collection of sets is undefined as there is no identity element.

21
New cards

Big Union

Represented as i=1nAi\bigcup_{i=1}^{n} A_i, it returns the empty set when the index set is empty.