Notes on 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/17

flashcard set

Earn XP

Description and Tags

Flashcards covering the definitions, notation, identities, and calculation strategies for summations and products based on lecture notes.

Last updated 5:49 PM on 6/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

18 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 used in a summation; aa is the lower bound or lower limit, and bb is the upper bound or upper limit.

3
New cards

Empty sum rule

If the upper bound is less than the lower bound (b<ab < a), the sum is defined to be 00.

4
New cards

Summation scope

Extends to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term, such as a fraction numerator.

5
New cards

Finite sum formal definition

Defined by the recurrence i=abf(i)=f(b)+i=ab1f(i)\sum_{i=a}^b f(i) = f(b) + \sum_{i=a}^{b-1} f(i) if bab \ge a, and 00 if b<ab < a.

6
New cards

Sums over index sets

A summation where indices are members of a given set or satisfy a specific predicate, written by replacing limits with a single subscript (e.g., i{3,5,7}i2\sum_{i \in \{3,5,7\}} i^2).

7
New cards

Einstein summation convention

A practice used by theoretical physicists where the summation symbol (i\sum_i) is omitted entirely in certain special types of sums.

8
New cards

Infinite sum

Defined as the limit of the series ss obtained by summing terms sequentially; it converges to xx if for any ϵ>0\epsilon > 0, there exists an NN such that snx<ϵ|s_n - x| < \epsilon for all n>Nn > N.

9
New cards

Double sums

Two nested summations, similar to nested for loops, where the innermost expression is summed over all pairs of values of the two indices.

10
New cards

Standard sum of a constant

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

11
New cards

Arithmetic series (simplest form)

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

12
New cards

Geometric series

A sum where the ratio between adjacent terms is constant; the finite form is i=0nri=1rn+11r\sum_{i=0}^n r^i = \frac{1 - r^{n+1}}{1 - r}, and the infinite form for r<1|r| < 1 is 11r\frac{1}{1 - r}.

13
New cards

Summation linearity

The principle that constant factors can be pulled out (axi=axi\sum a x_i = a \sum x_i) and internal sums can be split ((xi+yi)=xi+yi\sum (x_i + y_i) = \sum x_i + \sum y_i).

14
New cards

Harmonic series

The series i=1n1i=Hn\sum_{i=1}^n \frac{1}{i} = H_n, which is characterized as Θ(nlogn)\Theta(n \log n) in the provided text.

15
New cards

Guess but verify method

A technique for computing sums by writing out values for the first few upper limits, identifying a pattern (sequence), and proving it via induction.

16
New cards

Factorial function

A product of a series of values for non-negative nn, defined as n!=i=1ni=1×2××nn! = \prod_{i=1}^n i = 1 \times 2 \times \dots \times n.

17
New cards

Empty product rule

Defined to have the value 11, representing the identity element for multiplication.

18
New cards

Big OR summation

An aggregate operator spanning a series represented as xSP(x)\bigvee_{x \in S} P(x), which returns False (the identity element) for an empty index set.