1/17
Flashcards covering the definitions, notation, identities, and calculation strategies for summations and products based on lecture notes.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Summations
The discrete versions of integrals; given a sequence xa,xa+1,...,xb, the sum is written as ∑i=abxi.
Index of summation
The variable i used in a summation; a is the lower bound or lower limit, and b is the upper bound or upper limit.
Empty sum rule
If the upper bound is less than the lower bound (b<a), the sum is defined to be 0.
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.
Finite sum formal definition
Defined by the recurrence ∑i=abf(i)=f(b)+∑i=ab−1f(i) if b≥a, and 0 if b<a.
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).
Einstein summation convention
A practice used by theoretical physicists where the summation symbol (∑i) is omitted entirely in certain special types of sums.
Infinite sum
Defined as the limit of the series s obtained by summing terms sequentially; it converges to x if for any ϵ>0, there exists an N such that ∣sn−x∣<ϵ for all n>N.
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.
Standard sum of a constant
The identity ∑i=1n1=n.
Arithmetic series (simplest form)
The sum ∑i=1ni=2n(n+1), derived by adding two copies of the sequence in opposite directions.
Geometric series
A sum where the ratio between adjacent terms is constant; the finite form is ∑i=0nri=1−r1−rn+1, and the infinite form for ∣r∣<1 is 1−r1.
Summation linearity
The principle that constant factors can be pulled out (∑axi=a∑xi) and internal sums can be split (∑(xi+yi)=∑xi+∑yi).
Harmonic series
The series ∑i=1ni1=Hn, which is characterized as Θ(nlogn) in the provided text.
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.
Factorial function
A product of a series of values for non-negative n, defined as n!=∏i=1ni=1×2×⋯×n.
Empty product rule
Defined to have the value 1, representing the identity element for multiplication.
Big OR summation
An aggregate operator spanning a series represented as ⋁x∈SP(x), which returns False (the identity element) for an empty index set.