1/20
Flashcards covering the fundamentals of summation notation, formulas, infinite and double sums, and related mathematical operators like products and big logical operators.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Summation
The discrete version of an integral; for a sequence xa,xa+1,...,xb, it is written as ∑i=abxi and represents the sum of the body for each i from a to b.
Sigma
The large jagged symbol (∑) used in summation notation, which is a stretched-out version of a capital Greek letter.
Index of Summation
The variable in a summation (commonly i, j, or k) that loops through all values from the lower bound to the upper bound.
Lower Bound / Lower Limit
The starting value for the index of summation, denoted as a in the notation ∑i=abxi.
Upper Bound / Upper Limit
The ending value for the index of summation, denoted as b in the notation ∑i=abxi.
Empty Sum
A summation where the upper bound is less than the lower bound (b<a); it evaluates to 0.
Scope of a Summation
The range of terms included in a sum, which extends to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term like a fraction numerator.
Einstein Summation Convention
A notation style used by theoretical physicists where the ∑ symbol is omitted entirely in specific types of sums.
Infinite Sum
The limit of a series s obtained by adding the first term, then the first two terms, the first three, etc.; it converges to x if for any ϵ>0, there exists an N such that for all n>N, ∣sn−x∣<ϵ.
Double Sum
A summation where the expression inside is another summation, effectively functioning like two nested for-loops.
Simple Arithmetic Series Formula
∑i=1ni=2n(n+1).
Geometric Series Formula
∑i=0nri=1−r1−rn+1; this formula works as long as r=1.
Harmonic Series
A series of the form ∑i=1ni1=Hn; the transcript identifies this as Θ(nlogn).
Lineality of Summation
The property allowing constant factors to be pulled out (∑axi=a∑xi) and sums inside sums to be split (∑(xi+yi)=∑xi+∑yi).
Guess but Verify Method
A variant of the method for identifying sequences where one writes out the first few values of a sum to recognize a pattern and then proves the formula by induction.
Product Notation
Notation using the capital Greek letter Pi (∏) to multiply a series of values rather than adding them.
Empty Product
A product with an empty index set, which is defined to have the value 1 (the identity element for multiplication).
Factorial Function
Defined for non-negative n as n!=∏i=1ni=1×2×⋯×n, where 0!=1.
Big Intersection
The aggregate operator ⋂i=1nAi; it is undefined over an empty collection of sets because there is no identity element.
Big Union Identity
The identity element for the Big Union (⋃) operator is the empty set.
Big AND Identity
The identity element returned for a Big AND (⋀) operation over an empty index set is True.