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 the fundamentals of summation notation, formulas, infinite and double sums, and related mathematical operators like products and big logical operators.

Last updated 8:09 AM on 6/1/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; 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 and represents the sum of the body for each ii from aa to bb.

2
New cards

Sigma

The large jagged symbol (\sum) used in summation notation, which is a stretched-out version of a capital Greek letter.

3
New cards

Index of Summation

The variable in a summation (commonly ii, jj, or kk) that loops through all values from the lower bound to the upper bound.

4
New cards

Lower Bound / Lower Limit

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

5
New cards

Upper Bound / Upper Limit

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

6
New cards

Empty Sum

A summation where the upper bound is less than the lower bound (b<ab < a); it evaluates to 00.

7
New cards

Scope of a Summation

The range of terms included in a sum, which extends to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term like a fraction numerator.

8
New cards

Einstein Summation Convention

A notation style used by theoretical physicists where the \sum symbol is omitted entirely in specific types of sums.

9
New cards

Infinite Sum

The limit of a series ss obtained by adding the first term, then the first two terms, the first three, etc.; 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.

10
New cards

Double Sum

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

11
New cards

Simple Arithmetic Series Formula

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

12
New cards

Geometric Series Formula

i=0nri=1rn+11r\sum_{i=0}^{n} r^i = \frac{1-r^{n+1}}{1-r}; this formula works as long as r1r \neq 1.

13
New cards

Harmonic Series

A series of the form i=1n1i=Hn\sum_{i=1}^{n} \frac{1}{i} = H_n; the transcript identifies this as Θ(nlogn)\Theta(n \log n).

14
New cards

Lineality of Summation

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

15
New cards

Guess but Verify Method

A variant of the method for identifying sequences where one writes out the first few values of a sum to recognize a pattern and then proves the formula by induction.

16
New cards

Product Notation

Notation using the capital Greek letter Pi (\prod) to multiply a series of values rather than adding them.

17
New cards

Empty Product

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

18
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, where 0!=10! = 1.

19
New cards

Big Intersection

The aggregate operator i=1nAi\bigcap_{i=1}^{n} A_i; it is undefined over an empty collection of sets because there is no identity element.

20
New cards

Big Union Identity

The identity element for the Big Union (\bigcup) operator is the empty set.

21
New cards

Big AND Identity

The identity element returned for a Big AND (\bigwedge) operation over an empty index set is True.