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

flashcard set

Earn XP

Description and Tags

These vocabulary flashcards cover the definitions, notation, and properties of summations, products, and other big operators as discussed in the lecture notes.

Last updated 12:35 PM on 6/2/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

19 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 to loop through values from the lower bound to the upper bound.

3
New cards

Lower Bound

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

4
New cards

Upper Bound

The ending value of the index in a 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 (b<ab < a), which by definition equals 00.

6
New cards

Scope of a Summation

The range of the expression being summed, which extends until the first addition or subtraction symbol not enclosed in parentheses or part of a larger term like a fraction numerator.

7
New cards

Infinite Sum

The limit of the series of partial sums sns_n as nn approaches infinity, which converges to a value xx if for any ϵ>0\epsilon > 0, there exists an NN such that for all n>Nn > N, snx<ϵ|s_n - x| < \epsilon.

8
New cards

Einstein Summation Convention

A notation used by theoretical physicists where the summation symbol (\sum) is omitted entirely in certain special types of sums.

9
New cards

Double Sum

A series of nested summations, similar to nested for-loops, that sum an expression over all pairs of values of two indices.

10
New cards

Arithmetic Series

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

11
New cards

Geometric Series

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

12
New cards

Harmonic Series

A series denoted by the nn-th harmonic number HnH_n, defined as i=1n1i\sum_{i=1}^{n} \frac{1}{i}, which is roughly Θ(log(n))\Theta(\log(n)).

13
New cards

Identity Element (Summation)

The value that when added to xx does not change xx; for summations, this is 00, which is also the value of an empty sum.

14
New cards

Product Notation

A notation using the capital Greek letter pi (\prod) to represent multiplying a series of values, such as the factorial function n!=i=1nin! = \prod_{i=1}^{n} i.

15
New cards

Empty Product

A product over an empty set of indices, which is defined to be 11 because it is the identity element for multiplication.

16
New cards

Big AND (\bigwedge)

A big operator representing the logical AND operation over a set; its value for an empty index set is True.

17
New cards

Big OR (\bigvee)

A big operator representing the logical OR operation over a set; its value for an empty index set is False.

18
New cards

Big Intersection (\bigcap)

A big operator representing the intersection of sets; it is undefined for an empty collection of sets.

19
New cards

Big Union (\bigcup)

A big operator representing the union of sets; its value for an empty index set is the empty set.