Chapter2 - Sets

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/64

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

65 Terms

1
New cards

Set

An unordered collection of objects called elements or members.

2
New cards

Element

An object contained within a set; denoted by a ∈ A when a is in set A, or a ∉ A when not.

3
New cards

Roster Method

A way to describe a set by listing its members, where order is not important and duplicates do not change the set.

4
New cards

Set-Builder Notation

Describes a set by specifying the property or properties satisfied by its members, often using predicates.

5
New cards

Interval Notation

Represents sets of real numbers within intervals, using [a,b], (a,b), [a,b), or (a,b] to show open or closed endpoints.

6
New cards

Universal Set

The set U containing all objects currently under consideration for the given context.

7
New cards

Empty Set

The set with no elements, denoted by ∅ or {}.

8
New cards

Set Equality

Two sets are equal if and only if they have exactly the same elements.

9
New cards

Subset

A set A is a subset of B if every element of A is also an element of B; denoted A ⊆ B.

10
New cards

Proper Subset

A set A is a proper subset of B, denoted A ⊂ B, if A ⊆ B but A ≠ B.

11
New cards

Set Cardinality

The number of distinct elements in set A; denoted

12
New cards

Power Set

The set P(A) consisting of all subsets of set A; if A has n elements, P(A) has 2ⁿ elements.

13
New cards

Tuple

An ordered collection of elements; an n-tuple (a₁, a₂, …, aₙ) lists elements in a sequence.

14
New cards

Ordered Pair

A 2-tuple (a,b) which is equal to (c,d) only if a=c and b=d.

15
New cards

Cartesian Product

For sets A and B, the set A × B is the set of all ordered pairs (a,b) with a ∈ A and b ∈ B.

16
New cards

Relation

A subset R of A × B that defines a correspondence from elements of A to elements of B.

17
New cards

Union

For sets A and B, the union A ∪ B is the set of elements that are in A or B or both.

18
New cards

Intersection

For sets A and B, the intersection A ∩ B is the set of elements common to both A and B; A and B are disjoint if their intersection is empty.

19
New cards

Complement

For a set A in universal set U, the complement Ā is all elements in U that are not in A.

20
New cards

Difference

For sets A and B, the difference A − B is the set of elements in A that are not in B; also called the complement of B with respect to A.

21
New cards

Symmetric Difference

The set of elements in either A or B but not both.

22
New cards

Inclusion-Exclusion Principle

For sets A and B,

23
New cards

Identity Laws

A ∪ ∅ = A and A ∩ U = A are always true for any set A.

24
New cards

Domination Laws

A ∪ U = U and A ∩ ∅ = ∅ hold true for any set A.

25
New cards

Idempotent Laws

A ∪ A = A and A ∩ A = A for any set A.

26
New cards

Complementation Law

A ∪ Ā = U and A ∩ Ā = ∅ are always true for any set A in U.

27
New cards

Commutative Laws

For sets A and B, A ∪ B = B ∪ A and A ∩ B = B ∩ A always hold true.

28
New cards

Associative Laws

(A ∪ B) ∪ C = A ∪ (B ∪ C) and (A ∩ B) ∩ C = A ∩ (B ∩ C) are always true.

29
New cards

Distributive Laws

A ∪ (B ∩ C) = (A ∪ B) ∩ (A ∪ C) and A ∩ (B ∪ C) = (A ∩ B) ∪ (A ∩ C) hold true.

30
New cards

De Morgan’s Laws

The complement of A ∪ B is the intersection of their complements, and vice versa; both laws state the equivalence in true/false membership.

31
New cards

Absorption Laws

A ∪ (A ∩ B) = A and A ∩ (A ∪ B) = A are always true for any sets.

32
New cards

Generalized Union

The union over indexed sets A₁, A₂, …, Aₙ is the set containing all elements from any set within the collection.

33
New cards

Generalized Intersection

The intersection over indexed sets A₁, A₂, …, Aₙ is the set containing elements common to all sets in the collection.

34
New cards

Function

A mapping f from set A (domain) to set B (codomain) assigning each a ∈ A to exactly one b ∈ B; truth of assignment is shown by f(a) = b.

35
New cards

Mapping

Alternate term for a function, indicating correspondence from domain to codomain.

36
New cards

Image

In function f, the image of a is b if f(a) = b; b is true for a under f.

37
New cards

Preimage

Given function f, the preimage of b is a if f(a) = b; a is true for b under f.

38
New cards

Range

Set of all images of elements in domain A under function f, denoted f(A); shows all truth assignments for function outputs.

39
New cards

Injection

A function is injective or one-to-one if, for all a, b ∈ A, f(a) = f(b) implies a = b; every output is assigned by at most one input, and truth is unique.

40
New cards

Surjection

A function from A to B is surjective or onto if every element of codomain B is the image of at least one input in A; truth of coverage over B.

41
New cards

Bijection

A function is bijective or a one-to-one correspondence if it is both injective and surjective; every input and output pair is true exactly once.

42
New cards

Inverse Function

For bijection f, its inverse f⁻¹ assigns each b in codomain B back to a in A, reversing the original mapping; exists only if true bijection.

43
New cards

Composition of Functions

Given f: B→C and g: A→B, the composition f∘g maps each a in A to f(g(a)) in C; truth of mapping passes through both functions.

44
New cards

Floor Function

The function ⌊x⌋ returns the largest integer less than or equal to x; always true for real input x.

45
New cards

Ceiling Function

The function ⌈x⌉ returns the smallest integer greater than or equal to x; always true for real input x.

46
New cards

Factorial Function

Denoted n!, equals the product of all positive integers up to n; for n ≥ 0, 0! = 1 and truth of result is integer.

47
New cards

Sequence

A function from subset of integers (usually {0,1,…} or {1,2,…}) to another set S; notation aₙ shows the term's true value.

48
New cards

Geometric Progression

A sequence with initial term a and common ratio r, where each term is truthfully determined by multiplying previous term with r.

49
New cards

Arithmetic Progression

A sequence with initial term a and common difference d, where each term is truthfully determined by adding d to previous term.

50
New cards

String

A finite sequence of characters from a specified alphabet; truth of sequence length and content determined by elements.

51
New cards

Recurrence Relation

An equation expressing term aₙ of sequence in terms of previous terms; solution is a sequence whose terms are all true for the relation.

52
New cards

Initial Conditions

Specified terms of a sequence that precede application of recurrence relation; ensure the truth of sequence generation.

53
New cards

Fibonacci Sequence

Defined by f₀ = 0, f₁ = 1 and recurrence relation fₙ = fₙ₋₁ + fₙ₋₂; all terms generated are true for the relation.

54
New cards

Summation

Notation Σ expresses sum of sequence terms; the truth value of sum is determined by accumulated terms from lower to upper index.

55
New cards

Matrix

A rectangular array of numbers with m rows and n columns; entries are truthfully indexed by position.

56
New cards

Matrix Addition

For matrices A and B of same size, sum A+B is a matrix whose entries are the sum of corresponding entries; operation is true only for same-size matrices.

57
New cards

Matrix Multiplication

Given appropriate matrices A and B, product AB has entries that are sum of products of entries in rows and columns; not commutative, truth depends on order and dimension.

58
New cards

Identity Matrix

Matrix of order n with entries 1 on diagonal and 0 elsewhere; multiplication by identity matrix leaves matrix unchanged, always true.

59
New cards

Transpose

Matrix operation switching rows and columns; Aᵗ is true for square matrices that are symmetric.

60
New cards

Symmetric Matrix

A square matrix where aᵢⱼ = aⱼᵢ for all i, j; truth of entry equivalence holds under transposition.

61
New cards

Cardinality

Number of elements in a set; for countable or finite sets, truth is integer, for infinite sets, shows relative size.

62
New cards

Countable Set

A set that is finite or has the same cardinality as positive integers; elements can be listed and matched one-to-one, and truth is countability.

63
New cards

Uncountable Set

A set that cannot be matched one-to-one with positive integers; truth of existence proven by contradiction, e.g. Cantor diagonalization.

64
New cards

Hilbert’s Hotel

A thought experiment illustrating properties of countable infinity; truth of accommodation relies on bijective mappings.

65
New cards

Cantor Diagonalization

A proof technique for showing that certain sets are uncountable by constructing elements not in assumed lists; establishes truth of uncountability.