Discrete Math Exam 3

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

1/114

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No study sessions yet.

115 Terms

1
New cards

What is an inverse relation?

R is a relation from A to B. Inverse relation R-1= {(y, x)∈B x A| (x,y)∈R}

For all x∈A and y∈B, (y,x) ∈ R-1 if and only if (x,y)∈R

Switch x and y in the ordered pairs of R.

2
New cards

Why is the “divides” relation from A to B for every ordered pair (x, y) ∈ A x B?

x R y if and only if x|y, x divides y, y is divisible by x

3
New cards

What is a relation on a set A?

A relation from A to A

4
New cards

What is a directed graph?

When relation R is defined on a set A, the arrow diagram of the relation can be modified. Instead of representing A as two separate sets of points, represent A only once and draw an arrow from each point of A to each related point. 

5
New cards

N-ary relation

A subset of a Cartesian product of n sets.

2-ary is binary, 3-ary is ternary, 4-ary is quaternary relation.

6
New cards

What is a reflection relation?

For every x∈A, x R x

For every x in A, (x, x) ∈ R

Each element is related to itself

7
New cards

What is a symmetric relation?

for every x, y ∈ A, if x R Y then y R x

For every x and y in A, if (x, y) ∈ R then (y, x) ∈ R

If any one element is related to one element, then second element is related to the first

8
New cards

What is a transitive relation?

For every x, y, z ∈ A, if x R y and y R z then x R z

For every x, y, z in A, if (x,y) ∈ R and (y, z) ∈ R, then (x, z) ∈ R

If any one element is related to a second and the second is related to a third, first and third are related.

Can be vacuously transitive if there are not enough elements in A to prove it.

9
New cards

How to prove a relation is reflexive, symmetric, or transitive?

Write what needs to be proved in terms of x, y, A, and R. Then use the definitions of A and R to rewrite the statement for your particular case. Either see that the proof is immediately obvious or prove using generalizing from the generic particular.

10
New cards

What does universally false mean?

False for every element of its domain

11
New cards

What is the transitive closure?

Let A be a set and R a relation on A. The transitive closure of R is the relation Rt on A that satisfies:
Rt is transitive

⊆ Rt

if S is any other transitive relation that contains R, then Rt ⊆ S.

In order to allow Rt to be transitive (Add ordered pairs)

12
New cards

How to show a relation R on an infinite set A is reflexive?

Suppose x is any element of A and show that x R x

13
New cards

How to show a relation R on an infinite set A is symmetric?

Suppose x and y are any elements of A such that x R y and show that y R x

14
New cards

How to show a relation R on an infinite set A is transitive?

Suppose x, y, z are elements of A such that x R y and y R z. Show that x R z

15
New cards

What is a partition?

A finite or infinite collection of nonempty, mutually disjoint subsets whose union is A.

16
New cards

What is mutually disjoint?

Two or more sets have no elements in common

17
New cards

What is the relation induced by the partition?

For every x, y ∈ A, x R y if and only if there is a subset Ai of the partition such that both x and y are in Ai

18
New cards

Which three properties does a relation induced by a partition of a set satisfy?

Reflexivity, symmetry, and transitivity

19
New cards

What is an equivalence relation?

Let A be a set and R a relation on A. R is an equivalence relation if and only if R is reflexive, symmetric, and transitive.

20
New cards

What is the equivalence class of a?

Denoted [a], called class of a

For each element a in A, it is the set of all elements x in A such that x R a.

[a] = {x ∈ A | x R a}

21
New cards

What is the difference between a relation of a set, the set itself, and the equivalence class for an element of the set?

Relation is the rule for the connection between elements, the set is the collection of elements being considered, and the equivalence class is a subset of the set which has all equivalence related elements.

22
New cards

What does [a]R mean?

The equivalence class of a for the relation R.

23
New cards

How to find the distinct equivalence classes?

Construct the equivalence class for each element in the domain A of the relation. Look at which have the same elements and remove any duplicates. 

24
New cards

How can you prove a statement of the form “if p then (q or r)”

prove "if (p and not q) then r" or “if (p and not r) then q"

25
New cards

What is the partition induced by an equivalence relation?

If A is a set and R is an equivalence relation on A, then the distinct equivalence classes of R form a partition of A. The union of the equivalence classes is all of A, and the intersection of any two distinct classes is empty.

26
New cards

What is the representative of a class?

Suppose R is an equivalence relation on a set A and S is an equivalence class of R. A representative of the class S is any element a such that [a] = S.

27
New cards

What does it mean for m to be congruent to n modulo d?

m ≡ n (mod d) if and only if d| (m-n)

Let m and n be integers and let d be a positive integer. M is congruent to n modulo d if and only if d| (m-n)

28
New cards

If R is an equivalence relation on a set A, and a and b are elements of A, what are the two things the equivalence classes [a] and [b] can be?

identical ([a]=[b]) or disjoint ([a]∩[b]=∅)

29
New cards

What is the equivalence relation for rational numbers/fractions?

Let A = Z x (Z-{0}) and define a relation R on A that for every (a, b) and (c, d) in A, (a, b) R (c, d) if and only if ad=bc. One equivalence class of R for each ration number.

30
New cards

What is antisymmetric?

Let R be a relation on a set A. R is antisymmetric if and only if for every a and b in A, if a R b and b R a, then a = b. 

31
New cards

What is a partial order relation?

A relation that is reflexive, antisymmetric, and transitive. 

32
New cards

What are the two fundamental partial order relations?

Less than or equal to

Subset

33
New cards

What is lexicographic order?

Comparing from left to right to sort sequences (like strings or lists)

34
New cards

How to define a relation ≤?

Let s and t be any strings in S of lengths m and n, respectively, where m and n are positive integers, and let sm and tm be the characters in the mth position for s and t respectively.

  1. If mn and the first m characters of s and t are the same, then s t.

  2. If the first m-1 characters in s and t are the same, sm R tm and sm≠tm then st

  3. If λ is the null string then λ s.
    If no strings are related by other than by these three conditions, then is a partial order relation on s

35
New cards

How to make a Hasse diagram?

Start with a directed graph of the relation, placing vertices on the page so that all arrows point upward. Then eliminate the loops at all vertices, all arrows whose existence is implied by the transitive property, and the direction indicators on the arrows

36
New cards

What does it mean for two things to be comparable and noncomparable?

Suppose is a partial order relation on a set A. Elements a and b of A are said to be comparable if and only if either ab or ba. Otherwise, a and b are noncomparable.

37
New cards

What is a total order relation?

When all the elements of a partial order relation are comparable.

38
New cards

What is a partially ordered set?

Called poset, set A is a poset with respect to a relation  if and only if  is a partial order relation on A.

Any subset of a partially ordered set is partially ordered.

39
New cards

What is a totally ordered set?

Set A is a totally ordered set with respect to a relation if and only if A is partially ordered with respect to ≤ and ≤ is a total order.

40
New cards

What is a chain and its length?

Let A be a set that is partially ordered with respect to a relation . A subset B of A is called a chain if and only if the elements in each pair of elements in B are comparable

ab or ba for every a and b in B. Then length of a chain is one less than the number of elements in the chain.

41
New cards

What is a maximal element

An element in a partially ordered set that is greater than or equal to every element to which it is comparable (might be elements to which it is not comparable). Can have multiple maximal elements. 

42
New cards

What is a greatest element

An element in a partially ordered set that is greater than or equal to every element in the set (so comparable to all elements in set). It is also a maximal. Every finite subset of a totally ordered set has only one. 

43
New cards

What is a minimal element?

An element in a partially ordered set if for each b in A, either a  b or a and b are not comparable. Can be multiple minimal elements

44
New cards

What is a least element?

An element in a partially ordered set that for all elements in the set ab (all are comparable). Is also a minimal element. Every finite subset of a totally ordered set has one, but only one.

45
New cards

What does it mean for something to be compatible?

Given partial order relations , ’ on a set A, ≤’ is compatible with if and only if for every a and b in A, if ab then a’b.

46
New cards

What is topological sorting?

Given partial order relations and ≤’ on a set A, ≤’ is a topological sorting for if and only if ≤’ is a total order that is compatible with

47
New cards

How to create a total order for a partially ordered set?

Pick any minimal element and make it number one. Then look at set obtained when this element is removed. Since the new set is a subset of a partially ordered set, it is partially ordered. If it is empty, stop the process. If not, pick a minimal element from it and call that element number two. Then look at set obtained when this element is also removed. If set is empty, stop, if not pick a minimal element and call it number 3. Continue until all elements are used up. Put the minimal elements you picked in order, like element 1 element 2 element 3

48
New cards

What does it mean for a process to be random?

When it takes place, one outcome from some set of outcomes is sure to occur but it is impossible to predict with certainty which outcome.

49
New cards

What is sample space?

The set of all possible outcomes of a random process or experiment.

50
New cards

What is an event?

A subset of a sample space

51
New cards

What is probability?

If S is a finite sample space in which all outcomes are equally likely and E is an event in S, then the probability of E, denoted P(E) is

the number of outcomes in E/ the total number of outcomes in S

N(E)/N(S)

52
New cards

How to denote the number of elements in A?

N(A)

53
New cards

What is the number of elements in a list?

If m and n are integers and m n, then there are n-m+1 integers from m to n inclusive

m is starting integer and n is ending integer, inclusive

54
New cards

What is a possibility tree?

A way to tell how many possibilities there are

<p>A way to tell how many possibilities there are</p>
55
New cards

What is the multiplication rule?

If an operation has k steps and the first step is performed in n1 ways. the second step can be performed in n2 ways, and then the kth step can be performed in nk ways, then the entire operation can be performed in n1, n2, …, nk ways

n1*n2*n3*…*nk

Sometimes doesn’t work if certain paths must be taken, but can reorder which choices happen when to make it work

56
New cards

What is a permutation of a set of objects?

An ordering of the objects in a row

Ex: permutation of set of elements a, b, c is: abc, acb, cba, bac, bca, cab

57
New cards

How many permutations can there be?

For any integer n with 1n, the number of permutations of a set with n elements is n!

58
New cards

What is an r-permutation of a set of n elements?

An ordered selection of r elements taken from the set of n elements. The number of r-permutations of a set of n elements is denoted P(n,r). If n and r are integers and 1rn, then the number of r-permutations of a set of n elements is n!/ (n-r)! n is the number of items in the set, r is the step/ the number of items to be selected and arranged from the set

59
New cards

What does a 4-permutation of a set of seven objects mean?

P(7, 4)= 7!/ (7-4)! = 840

60
New cards

What is the addition rule?

Suppose a finite set A equals the union of k distinct mutually disjoint subsets A1, A2, …, Ak. Then N(A) = N(A1) + N(A2) + … + N(Ak)

N(A) = number of elements in A

61
New cards

What is the difference rule?

If A is a finite set and B is a subset of A, then N(A-B)= N(A) - N(B)

62
New cards

What is the formula for the probability of the complement of an event

If S is a finite sample space and A is an event in S, then P(Ac) =1-P(A) where Ac = S-A, the complement of A in S

63
New cards

What is the Inclusion/Exclusion rule for two or three sets?

If A, B, and C are any finite sets, then N(A∪B) = N(A)+N(B) - N(A∩B)

and N(A∪B∪C) = N(A) + N(B) + N(C) - N(A∩B)- N(A∩C)-N(B∩C)+N(A∩B∩C)

64
New cards

What is the Pigeonhole Principle?

A function from one finite set to a smaller finite set cannot be one-to-one: There must be at least two elements in the domain that have the same image in the co-domain. 

If there are 6 pigeons and 5 holes, and all are in a hole, then there must be two pigeons in one hole

65
New cards

Generalized Pigeonhole principle

For any function f from a finite set X with n elements to a finite set Y with m elements and for any positive integer k, if km<n, then there is some y∈Y such that y is the image of at least k+1 distinct elements of X. 

66
New cards

What is the contrapositive of the generalized pigeonhole principle?

For any function f from a finite set X with n elements to a finite set Y with m elements and for any positive integer k, if for each y∈Y, f-1(y) has at most k elements, then X has at most km elements; AKA nkm

67
New cards

What does it mean for a set to be finite?

It is the empty set or there is one-to-one correspondence from {1, 2, …, n} to it (each item has a partner with no leftovers)

68
New cards

What is the relationship between one-to-one and onto for finite sets?

Let X and Y be finite sets with the same number of elements (AKA X=Y) and suppose f is a function from X to Y. Then f is one-to-one if, and only if, f is onto. And an onto function from a finite set to itself is one-to-one. Such functions are permutations of the sets on which they are defined.

69
New cards

What is r-combination?

Let n and r be nonnegative integers with rn. An r-combination of a set of n elements is a subset of r of the n elements.

(n r) n on top r on bottom is n choose r, denotes the number of subsets of size r (or r-combinations) that can be formed from a set of n elements.

AKA C(n, r), nCr, Cn,r or nCr

Order doesn’t matter. Two unordered selections are the same if they have the same elements, no matter order.

70
New cards

What is an r-permutation?

Order in which they are chosen matters. Two ordered selections are the same if the elements chosen are the same and in the same order. An ordered selection of r elements from a set of n elements.

71
New cards

What is complete enumeration?

Listing all possibilities, good for small n and r values

72
New cards

How to compute r-permutations P(n, r)?

n! / (n-r)! Also, P(n, r) = (n choose r) * r!

73
New cards

How to compute r-combinations? C(n, r)

n! / ( r! (n-r)! )

74
New cards

What is the computational formula for (n choose r)

The number of subsets of size r (or r-combinations) that can be chosen from a set of n elements (n/r) is given by (n choose r) = P(n,r) / r! or also (n choose r) = n! / r!(n-r)! with r≤n.

75
New cards

What does (n choose 0) equal?

1

76
New cards

What does “at least n” mean?

n or more

77
New cards

What does “at most n” mean?

n or fewer

78
New cards

Permutations with Sets of Indistinguishable Objects

Suppose a collection has n objects of which n1 are of type 1 and are indistinguishable from each other, n2 are of type 2 and are indistinguishable from each other … nk are of type k and are indistinguishable from each other. Suppose n1+n2+g+nk= n then the number of distinguishable permutations of the n objects is n!/ n1!n2!n3!…nk!

79
New cards

When to use multiplication rule and when to use addition rule?

Multiplication rule- If you can imagine the elements to be counted as being obtained through a multistep process in which each step is performed in a fixed number of ways regardless of previous steps

Addition rule- If you can imagine the set of elements to be counted as being broken up into disjoint subsets

80
New cards

How to ensure you’re counting everything and not counting everything twice for multiplication and addition rule?

Multiplication- Does every outcome appear as some branch of the tree? Does any outcome appear on more than one branch of the tree?

Addition rule- Does every outcome appear in some subset of the diagram? Do any two subsets in the diagram share common elements?

81
New cards

What is the formula relating (n choose r) and P(n,r)?

(n choose r) = P(n,r)/r!

82
New cards

What is Pascal’s formula?

(n+1 choose r) = (n choose r-1) + (n choose r) whenever n and r are positive integers with r≤n

83
New cards

What is the binomial theorem?

Given any real numbers a and b and any nonnegative integer n,

(a+b)n = nk=0 (n choose k) an-kbk = an + (n choose 1) an-1b1 + (n choose 2) an-2b2 + … + (n choose n-1) a1bn-1+bn

84
New cards

What are the nonnegative integer powers of a?

For any real number a and any nonnegative integer n,

an = { 1 if n= 0 a*an-1 if n> 0

85
New cards

What is a binomial coefficient?

If n and r are nonnegative integers and r≤n then (n choose r) is called a binomial coefficient because it is one of the coefficients in the expansion of the binomial expression (a+b)n

86
New cards

What is closed form?

Without a summation symbol or ellipsis

87
New cards

What does a graph G have?

A nonempty set V(G) of vertices and a set E(G) of edges. Edges are associated with a set consisting of one or two vertices called endpoints. From edges to endpoints is called edge-endpoint function

88
New cards

What is an edge with one endpoint?

A loop

89
New cards

What does it mean for edges to be parallel?

Two or more distinct edges with the same set of endpoints

90
New cards

What does it mean for vertices to be adjacent?

Two vertices connected by an edge. A vertex that is an endpoint of a loop is said to be adjacent to itself

91
New cards

What is incident on and adjacent for edges?

An edge is incident on each of its endpoints, and two edges incident on the same endpoint are called adjacent

92
New cards

What is an isolated vertex?

No edges are incident on it.

93
New cards

Do all edges need vertices and vice versa?

All edges need vertices but vertices do not need edges, isolated vertex.

94
New cards

What is a directed graph/digraph?

Has two finite sets, a nonempty set V(G) of vertices and a set D(G) of directed edges, where each is associated with an ordered pair of vertices called endpoints. If edge e is associated with the pair (v, w) of vertices, then e is the directed edge from v to w.

95
New cards

What is the degree of v?

Let G be a graph and v a vertex of G. deg(v) = the number of edges that are incident on v, with an edge that is a loop counted twice.

96
New cards

What is a walk from v to w?

Let G be a graph, v and w be vertices in G. A walk from v to w is a finite alternating sequence of adjacent vertices and edges of G. Has form v0e1v1e2…vn-1envn where v’s are vertices, e’s are edges, and v0=1, vn= w, and for each i=1, 2, … n, vi-1 and vi are the endpoints of ei

97
New cards

What is a trivial walk from v to v?

Has only the single vertex v.

98
New cards

What is a trail from v to w?

A walk from v to w that doesn’t have a repeated edge

99
New cards

What is a path from v to w?

A trail that doesn’t have a repeated vertex

100
New cards

What is a closed walk?

A walk that starts and ends at the same vertex