Summations and Related Topics Practice 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

Vocabulary flashcards covering the definitions, notation, and standard formulas for summations, products, and related mathematical operators based on the lecture notes.

Last updated 9:37 AM on 7/10/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}, \text{...}, x_b, the sum is written as i=abxi\sum_{i=a}^{b} x_i.

2
New cards

Index of summation

The variable ii in a summation formula that loops through all values from the lower bound to the upper bound.

3
New cards

Lower bound (lower limit)

The starting value aa for the index of summation ii.

4
New cards

Upper bound (upper limit)

The ending value bb for the index of summation ii, including the endpoint.

5
New cards

Empty Sum

A sum where the upper bound bb is less than the lower bound aa (b<ab < a); by definition, its value is 00.

6
New cards

Scope of a summation

The extent of the sum, which lasts until the first addition or subtraction symbol not enclosed in parentheses or part of a larger term (like a fraction numerator).

7
New cards

Einstein summation convention

A notation used by theoretical physicists where the i\sum_i part is omitted entirely in certain special types of sums.

8
New cards

Infinite sum convergence

A sum i=0ai\sum_{i=0}^{\infty} a_i converges to a value xx if for any ϵ>0\epsilon > 0, there exists an NN such that for all n>Nn > N, the partial sum sns_n satisfies snx<ϵ|s_n - x| < \epsilon.

9
New cards

Double sums

Nested summations that act like nested for loops, summing the innermost expression over all pairs of values of the two indices.

10
New cards

Constant series formula

i=1n1=n\sum_{i=1}^{n} 1 = n.

11
New cards

Arithmetic series formula (simple)

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

12
New cards

Geometric series formula (finite)

i=0nri=1rn+11r\sum_{i=0}^{n} r^i = \frac{1 - r^{n+1}}{1 - r}.

13
New cards

Geometric series formula (infinite)

i=0ri=11r\sum_{i=0}^{\infty} r^i = \frac{1}{1 - r}, which holds when r<1|r| < 1.

14
New cards

Linearity of summation

The 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

Harmonic series

The sum i=1n1/i\sum_{i=1}^{n} 1/i, denoted as HnH_n, which is Θ(nlogn)\Theta(n \log n) according to the notes.

16
New cards

Factorial function (n!n!)

Defined for non-negative integers as the product i=1ni=12...n\prod_{i=1}^{n} i = 1 \cdot 2 \cdot \text{...} \cdot n.

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)

An operator for a series of predicates xSP(x)\bigwedge_{x \in S} P(x), equivalent to xS:P(x)\forall x \in S : P(x); returns TrueTrue for an empty set.

19
New cards

Big OR (\bigvee)

An operator for a series of predicates xSP(x)\bigvee_{x \in S} P(x), equivalent to xS:P(x)\exists x \in S : P(x); returns FalseFalse for an empty set.

20
New cards

Big Intersection (\bigcap)

An aggregate operator for sets i=1nAi=A1A2...An\bigcap_{i=1}^{n} A_i = A_1 \cap A_2 \cap \text{...} \cap A_n, which is undefined for an empty collection.