Summations and Related Topics Flashcards

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

flashcard set

Earn XP

Description and Tags

A set of vocabulary flashcards covering the notation, terminology, identities, and common formulas for summations and products as presented in the lecture notes.

Last updated 7:40 PM on 7/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

20 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 is written as i=abxi\sum_{i=a}^{b} x_i.

2
New cards

Index of Summation

The variable ii in the notation i=abxi\sum_{i=a}^{b} x_i that loops through all values from the lower limit to the upper limit.

3
New cards

Lower Bound (Lower Limit)

The value aa in the summation i=abxi\sum_{i=a}^{b} x_i representing the start of the index range.

4
New cards

Upper Bound (Upper Limit)

The value bb in the summation i=abxi\sum_{i=a}^{b} x_i representing the end of the index range.

5
New cards

Empty Sum

A sum where the upper bound bb is less than the lower bound aa (b<ab < a); it is defined to have the value 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.

7
New cards

Index Set

A set of values or a predicate used to define the indices to be summed, written replacing the limits with a single subscript (e.g., i{3,5,7}i2\sum_{i \in \{3, 5, 7\}} i^2).

8
New cards

Einstein Summation Convention

A notation style used by theoretical physicists where the summation symbol i\sum_{i} is omitted entirely for special types of sums.

9
New cards

Infinite Sum

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

10
New cards

Double Sum

A summation where the expression inside is another summation, effectively acting like two nested for loops, such as i=1aj=1b1\sum_{i=1}^{a} \sum_{j=1}^{b} 1 to define a×ba \times b.

11
New cards

Arithmetic Series (Simple)

A sum where the difference between adjacent terms is constant, represented by the formula i=1ni=n(n+1)2\sum_{i=1}^{n} i = \frac{n(n+1)}{2}.

12
New cards

Geometric Series

A sum where the ratio between adjacent terms is constant, defined as i=0nri=1rn+11r\sum_{i=0}^{n} r^i = \frac{1 - r^{n+1}}{1 - r}.

13
New cards

Harmonic Series

The sum of the reciprocals of the first nn integers, written as Hn=i=1n1iH_n = \sum_{i=1}^{n} \frac{1}{i}, which is approximated as Θ(ln(n))\Theta(\ln(n)).

14
New cards

Linearity of Summation

A property allowing constant factors to be pulled out (axi=axi\sum a x_i = a \sum x_i) and internal 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 technique for solving sums where one writes out initial values, guesses a closed-form formula, and proves it using induction.

16
New cards

Product Notation

The use of the capital Greek letter pi \prod to represent multiplying a series of values, such as n!=i=1nin! = \prod_{i=1}^{n} i.

17
New cards

Empty Product

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

18
New cards

Big AND (\bigwedge)

A logical operator over a set SS defined as xS:P(x)\forall x \in S : P(x); its identity element for an empty set is True\text{True}.

19
New cards

Big OR (\bigvee)

A logical operator over a set SS defined as xS:P(x)\exists x \in S : P(x); its identity element for an empty set is False\text{False}.

20
New cards

Big Intersection (\bigcap)

An aggregate operator for sets that is undefined over an empty collection because there is no general identity element.