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

flashcard set

Earn XP

Description and Tags

Vocabulary and definitions related to summations, index notation, infinite series, and aggregate mathematical operators.

Last updated 8:44 AM on 5/29/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

18 Terms

1
New cards

Summations

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

2
New cards

Index of summation

The variable ii used in the summation notation i=abxi\sum_{i=a}^b x_i.

3
New cards

Lower bound (lower limit)

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

4
New cards

Upper bound (upper limit)

The variable bb in the summation notation i=abxi\sum_{i=a}^b x_i, representing the ending value of the index.

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 extent of the summation which continues until the first addition or subtraction symbol that is not enclosed in parentheses or part of a larger term.

7
New cards

Bijection

A one-to-one correspondence used to rewrite a sum over a finite set SS as a sum over indices in S|S|; if S=n|S| = n, then iSxi=i=0n1xf(i)\sum_{i \in S} x_i = \sum_{i=0}^{n-1} x_{f(i)}.

8
New cards

Einstein summation convention

A notation proposed by Albert Einstein where the i\sum_i part is left out entirely in certain special types of sums.

9
New cards

Infinite sum

The limit of the series ss obtained by taking the sum of the first term, then the first two terms, etc., converging 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.

10
New cards

Double sums

Nested summations, such as i=1aj=1b1\sum_{i=1}^a \sum_{j=1}^b 1, which can be thought of as two nested for loops summing an expression over all pairs of index values.

11
New cards

Linearity

A property of the summation operator where constant factors can be pulled out (iSaxi=aiSxi\sum_{i \in S} ax_i = a \sum_{i \in S} x_i) and sums can be split (iS(xi+yi)=iSxi+iSyi\sum_{i \in S} (x_i + y_i) = \sum_{i \in S} x_i + \sum_{i \in S} y_i).

12
New cards

Arithmetic series

A series where the difference between adjacent terms is constant; the simplest form is 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; defined by i=0nri=1rn+11r\sum_{i=0}^n r^i = \frac{1-r^{n+1}}{1-r}.

14
New cards

Harmonic series

The sum i=1n1/i=Hn=Θ(nlogn)\sum_{i=1}^n 1/i = H_n = \Theta(n \log n), which can be rederived using the integral technique or by grouping terms.

15
New cards

Identity element

The value that, when applied in an operation, does not change the other value; for sums it is 00 and for products it is 11.

16
New cards

Factorial function

Defined for non-negative nn as n!=defi=1ni=12nn! \stackrel{\text{def}}{=} \prod_{i=1}^n i = 1 \cdot 2 \cdot \dots \cdot n, where 0!=10! = 1.

17
New cards

Big AND (\bigwedge)

The aggregate operator xSP(x)xS:P(x)\bigwedge_{x \in S} P(x) \equiv \forall x \in S : P(x), which returns True if the index set is empty.

18
New cards

Big OR (\bigvee)

The aggregate operator xSP(x)xS:P(x)\bigvee_{x \in S} P(x) \equiv \exists x \in S : P(x), which returns False if the index set is empty.