Summations and Related Topics Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/22

flashcard set

Earn XP

Description and Tags

This set of vocabulary flashcards covers fundamental concepts of summations, standard summation formulas, strategies for computing or bounding sums, and other large operators like products and logical quantifiers.

Last updated 2:03 PM 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

23 Terms

1
New cards

Summation

The discrete version of an integral, written as i=abxi\sum_{i=a}^b x_i, representing the sum of a sequence xa,xa+1,...,xbx_a, x_{a+1}, \text{...}, x_b.

2
New cards

Index of summation

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

3
New cards

Lower bound (Lower limit)

The starting value specified at the bottom of the summation symbol (denoted as aa in i=abxi\sum_{i=a}^b x_i).

4
New cards

Upper bound (Upper limit)

The ending value specified at the top of the summation symbol (denoted as bb in i=abxi\sum_{i=a}^b x_i).

5
New cards

Empty sum

A summation where the upper bound bb is less than the lower bound aa (b<ab < a), which is defined to have a value of 00.

6
New cards

Scope of a summation

The reach of the summation operator, which extends to 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 proposed by Albert Einstein where the summation symbol (Σ\Sigma) is left out entirely in certain special types of sums.

8
New cards

Infinite sum

The limit of the sequence of partial sums sns_n; 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.

9
New cards

Double sum

A summation where the expression inside is another summation, functioning like two nested for loops that sum over all pairs of indices.

10
New cards

Linearity (Summation operator)

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

11
New cards

Standard arithmetic series formula

i=1ni=n(n+1)2\sum_{i=1}^n i = \frac{n(n + 1)}{2}, which can be derived by adding two copies of the sequence in opposite directions.

12
New cards

Standard geometric series formula

i=0nri=1rn+11r\sum_{i=0}^n r^i = \frac{1 - r^{n+1}}{1 - r}, applicable when r1r \neq 1.

13
New cards

Sum of a constant series

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

14
New cards

Harmonic series (HnH_n)

The sum i=1n1i\sum_{i=1}^n \frac{1}{i}, which has an asymptotic growth rate of Θ(log(n))\Theta(\text{log}(n)).

15
New cards

Guess but verify method

A technique for identifying a closed-form expression for a sum by writing out the first few values and using induction to prove the observed pattern.

16
New cards

Integral trick for bounding sums

A strategy for non-decreasing functions where a1bf(x)dxi=abf(i)ab+1f(x)dx\int_{a-1}^b f(x)dx \leq \sum_{i=a}^b f(i) \leq \int_a^{b+1} f(x)dx to obtain big-Theta bounds.

17
New cards

Product notation

Notation using the capital Greek letter pi (Π\Pi) to represent multiplying a series of values.

18
New cards

Factorial function (n!n!)

Defined for non-negative integers as the product i=1ni=1×2×...×n\prod_{i=1}^n i = 1 \times 2 \times \text{...} \times n, where 0!=10! = 1.

19
New cards

Empty product

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

20
New cards

Big AND (\bigwedge)

A logical operator computing a conjunction over a series, equivalent to the universal quantifier (xS:P(x)\forall x \in S : P(x)).

21
New cards

Big OR (\bigvee)

A logical operator computing a disjunction over a series, equivalent to the existential quantifier (xS:P(x)\exists x \in S : P(x)).

22
New cards

Identity element for Big AND

True (the value returned when the index set is empty).

23
New cards

Identity element for Big OR

False (the value returned when the index set is empty).