Sets Flashcards

1
Q

An unordered collection of elements.

A

Set

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are two ways that a set can be represented?

A
  1. Roster or Tabular Form
  2. Set Builder Notation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

define set builder notation?

How does it look syntatically?

A

Specifying the conditions for elements to be in a set

S = { x | some condition(s) }

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Notation for element x being a member or non member of set S.

A

x ∈ S

x ∉ S

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

standard set N?

A

the set of all natural numbers = {1,2,3,4,…..}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

standard set Z

A

the set of all integers = {…..,−3,−2,−1,0,1,2,3,…..}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Standard set Z+?

A

The set of all positive integers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Standard set Q?

A

The set of all rational numbers;

rational number: a number that can be expressed as a fraction with a non-zero denominator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Standard set R?

A

all real numbers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Standard set W?

A

All whole numbers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Cardinality of a set? denoted?

A

number of elements of the set

|S|

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Finite set?

A

A set which contains a definite number of elements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Infinite Set?

A

A set which contains inifinite numbers or elements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Subset? how is it denoted?

A

A set that lies in another set.

S ⊆ T

“set S is a subset of set T”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

proper subset? denoted?

A

subset of but with a smaller cardinality

A ⊂ B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Universal set? Denoted?

A

A collection of all elements in a particular context or application.

big U. “like an umbrella”

17
Q

Empty set or a null set? Denoted?

A

A set containing no elements?

Ø

18
Q

A singleton set or unit set? Denoted?

A

A set containing only one element.

{ s }, where s is the single element.

19
Q

Equal sets?

A

Two sets that contain the same elements.

20
Q

Equivalent sets?

A

Two sets that have the same cardinality

21
Q

Overlapping sets?

A

Two sets that have atleast one common element.

22
Q

disjoint set?

A

Two sets that do not have atleast one element in common.

23
Q

List the types of set operations.

A
  1. Set Union
  2. Set Intersection
  3. Set Difference
  4. Complement of Set
  5. Cartesian Product
24
Q

Set Union? Denote? Venn-Diagram?

A

combining the elements of two sets

A ∪ B = {x | x∈A or x∈B}

25
Q

Set Intersection? Denoted? Venn-Diagram?

A

The common elements of two sets.

S ∩ T = { x | x∈S and x∈T }

26
Q

Set difference? Denoted? Venn Diagram?

A

denoted by A - B, contains the elements that are in set A but not in set B

27
Q

Complement of a set? Denoted?

A

The elements that are not contained in the set.

A’ = ( U - A ), where U is a universal set which contains all objects

28
Q

What is a cartesian Product / Cross Product? give an example.

A

Product of n number of sets producing all possible ordered pairs

A={a,b} and B={1,2}

A×B = {(a,1),(a,2),(b,1),(b,2)}

B×A = {(1,a),(1,b),(2,a),(2,b)}

29
Q

Power Set?

A

if you have a set S it would be the all the possible subsets of S. so the cardinality of a power set of S is equal to 2 raised to the cardinality S

S = {a,b,c,d}

P(S) =

{{∅},{a},{b},{c},{d},{a,b},{a,c},{a,d},{b,c},{b,d},{c,d},{a,b,c},{a,b,d},{a,c,d},{b,c,d},{a,b,c,d}}

30
Q

What is the power set of an empty set?

A

an empty set

|P({∅})| = 20 = 1

31
Q

Partitioning of a Set?

A

A collection of disjoint subsets of the original set.

must fulfill 3 conditions:

  1. None of the partition sets can be empty sets
  2. The union of the partition sets must equal the entire original set
  3. The partition sets cannot overlap
32
Q

Bell numbers? denoted?

A

give the count of the number of ways to partition a set.

Bn, were n is the cardinality of the set.

Example:

S={1,2,3}, S={1,2,3}, n=|S|=3

  1. ∅,{1,2,3}
  2. {1},{2,3}
  3. {1,2},{3}
  4. {1,3},{2}
  5. {1},{2},{3}

Therefor B3 = 5

33
Q

{ x | x is an integer, 1 <= x <= 2 }, how does this read?

A

the set of all x such that x is an integer between 1 and 2 (inclusive)