Summations and Related Topics Practice Flashcards

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

flashcard set

Earn XP

Description and Tags

Vocabulary terms based on the notes regarding summations, products, various mathematical series, and aggregate operators.

Last updated 12:26 PM on 6/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

20 Terms

1
New cards

Summations

The discrete versions of integrals, expressed as the sum of a sequence xa,xa+1,...,xbx_a, x_{a+1}, \text{...}, x_b and written as \text{\textsum}_{i=a}^b x_i.

2
New cards

Index of summation

The variable (e.g., ii) that loops through all values from the lower bound to the upper bound within a summation.

3
New cards

Lower bound (lower limit)

The starting value aa for the index variable in a summation.

4
New cards

Upper bound (upper limit)

The ending value bb for the index variable in a summation.

5
New cards

Empty sum rule

The rule stating that if the upper bound is less than the lower bound (b<ab < a), the sum evaluates to 00.

6
New cards

Scope of a summation

The range across which the summation applies, extending to the first addition or subtraction symbol not enclosed in parentheses or part of a larger term.

7
New cards

Bijection

A mapping used to rewrite a sum over a finite set SS as a sum over indices from 00 to S1|S| - 1.

8
New cards

Einstein summation convention

A notation system used by theoretical physicists where the summation symbol \text{\textsum}_i is omitted entirely in specific types of sums.

9
New cards

Infinite sums

The limit of a series of partial sums sns_n as nn approaches infinity, which converges to xx if for any \text{\textepsilon} > 0, there is an NN such that for all n>Nn > N, |s_n - x| < \text{\textepsilon}.

10
New cards

Double sums

Two nested summations that function like nested for-loops, summing an innermost expression over all pairs of index values.

11
New cards

Carl Friedrich Gauss

A legendary 18th-century mathematician alleged to have invented the trick for summing the sequence 1,2,...,n1, 2, \text{...}, n by adding two copies of the sequence in opposite directions.

12
New cards

Linearity

The property of summations where constant factors can be pulled out (\text{\textsum} ax_i = a \text{\textsum} x_i) and sums can be split (\text{\textsum} (x_i + y_i) = \text{\textsum} x_i + \text{\textsum} y_i).

13
New cards

Arithmetic series

A series where the difference between adjacent terms is constant, most commonly represented as \text{\textsum}_{i=1}^n i = \frac{n(n+1)}{2}.

14
New cards

Geometric series

A series where the ratio between adjacent terms is constant, defined by the formula \text{\textsum}_{i=0}^n r^i = \frac{1 - r^{n+1}}{1 - r}.

15
New cards

Harmonic series

The sum of the inverses of integers \text{\textsum}_{i=1}^n \frac{1}{i}, denoted as HnH_n and characterized in the notes as \text{\textTheta}(n \text{ \textlog}(n)).

16
New cards

Big Pi notation (\text{\textprod})

Mathematical notation used to represent the product of a series of values.

17
New cards

Factorial function (n!n!)

The product of the first nn positive integers, defined as n! = \text{\textprod}_{i=1}^n i.

18
New cards

Identity element

The value that when applied to an operation with xx does not change xx; it is 00 for sums and 11 for products.

19
New cards

Empty product

Defined to have the value 11, which is the identity element for multiplication.

20
New cards

Big Intersection (\text{\textbigcap})

An aggregate operator applied to a collection of sets; it is undefined over an empty collection because there is no general identity element.