Summations, Big Operators, and Power Sums Review

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

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering summation notation, index bounds, summation identities, asymptotic bounds, product notation, big logical/set operators, and power sum equations.

Last updated 9:42 AM on 9/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

Summations

Discrete versions of integrals written as i=abxi\sum_{i=a}^b x_i to represent the sum of a sequence xa,xa+1,,xbx_a, x_{a+1}, \dots, x_b.

2
New cards

Index of summation

The variable in a summation (such as ii) that loops through all integer values from the lower limit aa to the upper limit bb.

3
New cards

Lower limit

The starting bound (such as aa in i=abxi\sum_{i=a}^b x_i) for the index of summation.

4
New cards

Upper limit

The ending bound (such as bb in i=abxi\sum_{i=a}^b x_i) for the index of summation.

5
New cards

Empty sum

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

6
New cards

Scope of a summation

The portion of an expression covered by a summation symbol, extending to the first addition or subtraction symbol that is not enclosed in parentheses or part of a larger term.

7
New cards

Einstein summation convention

A notation convention in which the summation symbol \sum is omitted entirely in certain special types of sums where the index set is understood.

8
New cards

Double sum

An expression containing two nested summations, such as i=1aj=1b1\sum_{i=1}^a \sum_{j=1}^b 1, which sums the inner expression over all pairs of values of the two indices.

9
New cards

Geometric series formula

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

10
New cards

Arithmetic series formula

The sum identity i=1ni=n(n+1)2\sum_{i=1}^n i = \frac{n(n + 1)}{2}, which equals nn times the average value n+12\frac{n + 1}{2}.

11
New cards

Harmonic series

The sum i=1n1i\sum_{i=1}^n \frac{1}{i}, denoted HnH_n, which has an asymptotic bound of Θ(nlog(n))\Theta(n \log(n)).

12
New cards

Linearity of summation

The algebraic property allowing constant factors to be pulled out of sums (iSaxi=aiSxi\sum_{i \in S} a x_i = a \sum_{i \in S} x_i) and additive terms inside sums to be split (iS(xi+yi)=iSxi+iSyi\sum_{i \in S} (x_i + y_i) = \sum_{i \in S} x_i + \sum_{i \in S} y_i).

13
New cards

Product notation

The operator i=1nxi\prod_{i=1}^n x_i used to multiply a sequence of values together, as in the factorial function n!=i=1nin! = \prod_{i=1}^n i.

14
New cards

Empty product

A product over an empty index set (b<ab < a), which is defined to equal 11 (the identity element for multiplication).

15
New cards

Big AND

The operator xSP(x)\bigwedge_{x \in S} P(x), which evaluates to True when taken over an empty index set.

16
New cards

Big OR

The operator xSP(x)\bigvee_{x \in S} P(x), which evaluates to False when taken over an empty index set.

17
New cards

Big Union

The operator i=1nAi\bigcup_{i=1}^n A_i, which evaluates to the empty set \emptyset when taken over an empty collection of sets.

18
New cards

Big Intersection

The operator i=1nAi\bigcap_{i=1}^n A_i, which is undefined over an empty collection of sets because no general identity element exists.

19
New cards
<p>Power Sums System</p>

Power Sums System

A system of equations involving three variables a,b,ca, b, c 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 to solve for a4+b4+c4a^4 + b^4 + c^4.