1.3 Sequences

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

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:19 PM on 9/15/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

sequence

a list of objects arranged in definite order: such as a first, second, and third element.

2
New cards

recursive formula

defines each term of the sequence based on previous terms (cn-1) and includes at least one starting value.

  • ex: c1 = 5, cn = 2cn-1

  • means each term is twice the previous term, starting with the first term being 5.


3
New cards

explicit formula

provides the n-th term of a sequence directly as a function of its position n.

4
New cards

set corresponding to a sequence

the set containing all distinct elements founds within the sequence, regardless of their order or repetition.

  • ex: sequence a, b, a, b

  • set: {a,b}


5
New cards

array

a sequence of positions or “boxes,” either finite or infinite to which elements from a set may be assigned.

6
New cards

characteristic function

a function that indicates membership of an element in a set, defined as 1 if the element is in the set and 0 otherwise.

  • Fa(x) = 1 if x ∈ A

  • Fa(x) = 0 if x ∉ A


7
New cards

characteristic function of intersection A ∩ B

FA∩B = FABB

  • the function of intersection A∩B is the product of the results of characteristic function A times characteristic function B.

  • if an element is in both sets, the characteristic function will return 1; otherwise, it will return 0.


8
New cards

characteristic function of A ∪ B

FA∪B = FA + FB - FA∩B

  • the function of union A∪B is the sum of the results of the characteristic functions of A and B, minus the product of the intersection A∩B to avoid double counting.

  • if it return 1 the element is in either set, if it returns 0, the element is in neither set.


9
New cards

characteristic function of FA ⊕ FB

FA + FB - 2FA∩B

  • the characteristic function of the symmetric difference A⊕B is the sum of the characteristic functions of A and B, minus double the product of characteristic function intersection A∩B.

  • if it returns 1 the element is in either set A or B, but not both.


10
New cards

countable set

the members of the set can be arranged in a sequence, either finite or infinite, they have a specific natural number position such as 1st, 2nd, 3rd.

11
New cards

cantor’s diagonal argument

the set of real numbers is uncountable.

12
New cards

A* in strings

the set of all finite sequences (strings or words) formed using elements the alphabet A, including the empty string ϵ.

13
New cards

catenation of strings w1 and w2

the operation of joining strings (words) w1 (s1, s2, … sn) and w2 (t1, t2, … tk) to form a single string w1*w2

  • equals (s1…sn)*(t1…tk)


14
New cards

regular expression over A

any string built from the elements of A and the symbols (,) or + or * or ϵ

15
New cards

regular expression RE1

ϵ is a regular expression.

16
New cards

regular expression RE2

if x∈A, then x is a regular expression.

17
New cards

regular expression RE3

if α and β are regular expressions, then the concatenation αβ is also a regular expression.

18
New cards

regular expression RE4

if α and β are regular expressions, then (α + β) is also a regular expression.

19
New cards

regular expression RE5

if α is a regular expression, then (α)* is also a regular expression.

20
New cards

(α)*

denotes zero or more finite repetitions of the string “α”

21
New cards

regular set RE1

regular expression ϵ corresponds to {ϵ}

22
New cards

regular set RE2

regular expression x∈A corresponds to {x}

23
New cards

regular set RE3

regular expression αβ corresponds to M, N, ⊆ A* then αβ corresponds to MN or {st | s ∈ M, t ∈ N}

24
New cards

regular set RE4

if α corresponds to M and β corresponds to N, regular expression (α+β) corresponds to M∪N. or {st | s ∈ M or t ∈ N}.

25
New cards

regular set RE5

if α* corresponds to M, then α* corresponds to M*, where M is a set of strings from A and elements from M* are finite sequences of such strings.