Summations and Related Topics Practice Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/19

flashcard set

Earn XP

Description and Tags

This set of vocabulary flashcards covers the fundamental concepts, notation, definitions, and standard series related to summations and products as described in the lecture notes.

Last updated 11:15 AM on 6/1/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

20 Terms

1
New cards

Summation

The discrete version of an integral, written as i=abxi\sum_{i=a}^{b} x_i, where values of a sequence are added from a lower limit to an upper limit.

2
New cards

Index of summation

The variable, such as ii, jj, or kk, that loops through all values from the lower bound to the upper bound in a sum.

3
New cards

Lower limit

The starting value for the index of summation, denoted by the variable aa in i=abxi\sum_{i=a}^{b} x_i.

4
New cards

Upper limit

The ending value for the index of summation, denoted by the variable bb in i=abxi\sum_{i=a}^{b} x_i, including both endpoints.

5
New cards

Empty sum

A sum where the upper bound bb is less than the lower bound aa (b<ab < a), resulting in a value of 00.

6
New cards

Scope of a summation

The extent of the sum which reaches the first addition or subtraction symbol not enclosed in parentheses or part of a larger term like a fraction numerator.

7
New cards

Einstein summation convention

A notation style used in theoretical physics where the summation symbol \sum is omitted entirely.

8
New cards

Infinite sum

The limit of the series of partial sums sns_n as the number of terms approaches infinity.

9
New cards

Double sum

A summation where the internal expression is itself another summation, analogous to two nested for loops.

10
New cards

Arithmetic series

A sum where the difference between adjacent terms is constant, commonly expressed as i=1ni=n(n+1)2\sum_{i=1}^{n} i = \frac{n(n+1)}{2}.

11
New cards

Geometric series

A sum where the ratio between adjacent terms is constant, calculated as i=0nri=1rn+11r\sum_{i=0}^{n} r^i = \frac{1-r^{n+1}}{1-r}, provided r1r \neq 1.

12
New cards

Linearity of summation

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

13
New cards

Guess but verify method

A technique for solving sums by identifying a pattern from the first few values and proving the guessed formula via induction.

14
New cards

Harmonic series

The sum of the reciprocals of integers, denoted as Hn=i=1n1iH_n = \sum_{i=1}^{n} \frac{1}{i}, which is asymptotically equal to Θ(ln(n))\Theta(\ln(n)).

15
New cards

Product notation

The multiplication of a series of values, written using the capital Greek letter pi (\prod).

16
New cards

Empty product

A product over an empty index set, which by definition equals the multiplicative identity 11, leading to the convention that 0!=10! = 1.

17
New cards

Big AND

The aggregate operator \bigwedge representing universal quantification ($\forall$) over a set, with the identity element True.

18
New cards

Big OR

The aggregate operator \bigvee representing existential quantification ($\exists$) over a set, with the identity element False.

19
New cards

Big Intersection

The aggregate operator i=1nAi\bigcap_{i=1}^{n} A_i used to find the common elements across a collection of sets.

20
New cards

Big Union

The aggregate operator i=1nAi\bigcup_{i=1}^{n} A_i used to combine all elements from a collection of sets, with the identity element being the empty set.