Summation Notation, Operations, and Symmetric Equations

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/21

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering summation notation, index properties, identities, asymptotic evaluation techniques, big operators, and symmetric equation systems.

Last updated 11:56 AM on 8/25/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

22 Terms

1
New cards

Summation

The discrete version of an integral where a sequence xa,xa+1,,xbx_a, x_{a+1}, \dots, x_b is added together, denoted by i=abxi\sum_{i=a}^{b} x_i using the capital Greek letter sigma.

2
New cards

Index of Summation

The variable (such as ii, jj, or kk) in a summation that loops through all integer values from the lower bound to the upper bound inclusive.

3
New cards

Lower Limit

The starting value of the index variable in a summation, written as aa below the sigma symbol.

4
New cards

Upper Limit

The ending value of the index variable in a summation, written as bb above the sigma symbol.

5
New cards

Empty Sum

A summation where the upper limit is strictly less than the lower limit (b<ab < a), which is defined to evaluate to 00.

6
New cards

Scope of a Summation

The portion of an algebraic expression included within a summation, extending to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term.

7
New cards

Einstein Summation Convention

A notation convention proposed by theoretical physicist Albert Einstein that omits the explicit summation symbol i\sum_i entirely in certain special types of sums.

8
New cards

Infinite Sum

An expression where the upper limit is infinite (i=0f(i)\sum_{i=0}^{\infty} f(i)), defined as the limit of the series sns_n of partial sums as nn approaches infinity.

9
New cards

Double Sum

A summation whose body is another summation, equivalent to two nested for-loops that sum the innermost expression over all pairs of index values.

10
New cards

Gauss Summation Formula

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

11
New cards

Summation Linearity

The property that allows constant factors to be pulled out of a sum (axi=axi\sum a x_i = a \sum x_i) and sums of terms to be split ((xi+yi)=xi+yi\sum (x_i + y_i) = \sum x_i + \sum y_i).

12
New cards

Guess but Verify Method

A technique for identifying a summation formula by tabulating the sum for the first few values of the upper limit and proving the resulting pattern by induction.

13
New cards

Geometric Series

A series in which the ratio between adjacent terms is constant, satisfying i=0nri=1rn+11r\sum_{i=0}^{n} r^i = \frac{1 - r^{n+1}}{1 - r} for r1r \neq 1 and i=0ri=11r\sum_{i=0}^{\infty} r^i = \frac{1}{1 - r} for r<1|r| < 1.

14
New cards

Arithmetic Series

A series in which the difference between adjacent terms is constant, with the general form i=1n(ai+b)=an(n+1)2+bn\sum_{i=1}^{n} (a i + b) = a \frac{n(n+1)}{2} + b n.

15
New cards

Harmonic Series

The series i=1n1i=Hn\sum_{i=1}^{n} \frac{1}{i} = H_n, which yields the nn-th harmonic number HnH_n and has an asymptotic bound of Θ(nlog(n))\Theta(n \log(n)).

16
New cards

Product Operator

An operator denoted by the capital Greek letter pi \prod used to compute the multiplication of a sequence of terms, as seen in n!=i=1nin! = \prod_{i=1}^{n} i.

17
New cards

Empty Product

A product evaluated over an empty index set, defined to yield the multiplicative identity 11 (which implies 0!=10! = 1).

18
New cards

Big AND Operator

An aggregate logical operator denoted by xSP(x)\bigwedge_{x \in S} P(x) that evaluates to True when applied over an empty index set.

19
New cards

Big OR Operator

An aggregate logical operator denoted by xSP(x)\bigvee_{x \in S} P(x) that evaluates to False when applied over an empty index set.

20
New cards

Big Intersection Operator

An aggregate set operation denoted by i=1nAi\bigcap_{i=1}^{n} A_i that is undefined over an empty collection of sets because there is no general identity element.

21
New cards

Big Union Operator

An aggregate set operation denoted by i=1nAi\bigcup_{i=1}^{n} A_i that yields the empty set when evaluated over an empty collection of sets.

22
New cards

Symmetric Power Sum System

A system of polynomial equations given by a+b+c=4a + b + c = 4, a2+b2+c2=10a^2 + b^2 + c^2 = 10, and a3+b3+c3=22a^3 + b^3 + c^3 = 22 used to evaluate symmetric polynomial expressions.