Chapter 1 Flashcards

1
Q

what is a binary relation given a set S?

A

A binary relation R on S is a subset of SxS, or the set of every ordered pair.

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

What quality holds for you to write S.2 = f(S.1) (not a network)

A

Write that if, for all S.1 in S, there exists S.2 in s s.t. (S.1, S.2) in R. AKA, every S.1 is “connected” somewhere

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

R is irreflexive if:

A

(s,s) not in R for All s in S. AKA, not reflexive

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

A relation is symmetric if:

A

(S.1,S.2) in R => (S.2,S.1) in R. Any connection that is inherently 2 way.

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

Formal def of graph.

A

A finite nonempty set V = {v.1,v.2,…,v.n} together w/ an irreflexive symmetric relationship r = {v.i,v.j}

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

Edge set of G: is a set of symmetric pairs

A

is a set of symmetric pairs, E = {ab, bc}

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

If e = uv in E (edge set, then: the 3 vocab to describe all this is:

A

e joins u,v
u,v are incident with e
u,v are adjacent

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

Edge adjacency:

A

if uv, vw in E, then these edges are adjacent.

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

Order, size:

A

Number of vertices p is the order,
Number of edges q is the size.

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

Digraph and arcs:

A

A digraph is a nonempty set v together w/ an irreflexive relation R (not necessarily symmetric). The edges of digraphs are called arcs.

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

A multigraph:

A

is a triple (V, E, T) where T: E -> Z+ where T is the function to find redundant edges.

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

A network is:

A

a graph or digraph together with a function f: E(G) -> Real. Each edge has a number on it.

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

Graph with all edges or no edges:

A

Complete or Null graphs.

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

A graph G is bipartite (and complete) if:

A

There exists a partition V = X.bar union Y.bar s.t. every edge is between vertices in X.bar and Y.bar. Complete is bipartite with all possible edges.

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

The deg(v) is:

A

the number of edges incident to a vertex v.

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