Summations and Related Topics

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

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering concepts, identities, special series, and operators from James Aspnes' lecture notes on summations.

Last updated 11:14 AM on 8/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

Index of Summation

The variable ii in a summation expression such as \frac{}{} or ×\times that loops through values from the lower limit to the upper limit.

2
New cards

Lower Bound

The starting index value aa in the summation expression xemptyori=abxi\bigwedge_{x \notin \text{empty}} \text{or} \bigcup_{i=a}^{b} x_i; if the upper bound b<ab < a, the sum evaluates to 00.

3
New cards

Upper Bound

The ending index value bb in the summation expression xemptyori=abxi\bigwedge_{x \notin \text{empty}} \text{or} \bigcup_{i=a}^{b} x_i.

4
New cards

Scope of a Summation

The extent of a summation expression, which continues until the first addition or subtraction symbol that is not enclosed in parentheses or part of a larger term.

5
New cards

Einstein Summation Convention

A lazy notation convention proposed by theoretical physicist Albert Einstein in which the summation symbol \bigwedge is omitted entirely in certain special types of sums.

6
New cards

Infinite Sum

A summation where the upper limit is infinite, defined as the limit of the sequence of partial sums sns_n as nn approaches infinity.

7
New cards

Double Sum

A nested summation where the body of an outer sum contains another summation, equivalent to two nested for loops.

8
New cards

Linearity of Summation

The property stating that constant factors can be pulled out of sums (iinSaxi=aiinSxi\bigwedge_{i \text{in} S} a x_i = a \bigwedge_{i \text{in} S} x_i) and sums can be split across addition (iinS(xi+yi)=iinSxi+iinSyi\bigwedge_{i \text{in} S} (x_i + y_i) = \bigwedge_{i \text{in} S} x_i + \bigwedge_{i \text{in} S} y_i).

9
New cards

Guess but Verify Method

A technique for evaluating sums by writing out values for small bounds, identifying the pattern in the resulting sequence, and proving the formula by induction.

10
New cards

Geometric Series

A summation where the ratio between adjacent terms is constant, defined as i=0nxi=1xn+11x\bigwedge_{i=0}^{n} x^i = \frac{1 - x^{n+1}}{1 - x} when x1x \neq 1.

11
New cards

Arithmetic Series

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

12
New cards

Harmonic Series

A summation of the reciprocals of integers, defined as i=1n1i=Hn=Theta(n×log(n))\bigwedge_{i=1}^{n} \frac{1}{i} = H_n = \text{Theta}(n \times \text{log}(n)).

13
New cards

Product Notation

A mathematical notation using capital pi \bigwedge to denote the product of a sequence of values, such as n!=i=1nin! = \bigwedge_{i=1}^{n} i.

14
New cards

Empty Sum

A sum over an empty index set, defined to equal 00, which is the additive identity.

15
New cards

Empty Product

A product over an empty index set, defined to equal 11, which is the multiplicative identity.

16
New cards

Big AND

The logical operator xinSP(x)\bigwedge_{x \text{in} S} P(x) representing logical conjunction over a set SS, which evaluates to True\text{True} for an empty index set.

17
New cards

Big OR

The logical operator xinSP(x)\bigwedge_{x \text{in} S} P(x) representing logical disjunction over a set SS, which evaluates to False\text{False} for an empty index set.

18
New cards

Big Union

The set operator i=1nAi\bigwedge_{i=1}^{n} A_i representing the union across multiple sets, which evaluates to the empty set empty\text{empty} for an empty index set.

19
New cards

Big Intersection

The set operator i=1nAi\bigwedge_{i=1}^{n} A_i representing the intersection across multiple sets, which is undefined for an empty collection of sets.