Graph Thoery Flashcards

1
Q

Connected graph

A

All vertices directly or indirectly connected

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

Simple graph

A

no loops or multiple edges

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

tree

A

connected graph with no circuits

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

undirected graph

A

Weight of A-B = B-A. If loop/multiple edge is present graph is directed

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

weight of an edge

A

any factor ascribed to the edge

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

order

A

number of vertices in the graph

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

degree of a vertex

A

number of edges leading to/from that vertex

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

Regular graph

A

all vertices of same degree

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

circuit

A

a path that starts and ends at same vertex

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

path

A

route between 2 specified vertices so that no edge used more than once, not all edges need to be used. starting point not usually endpoint.

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

size

A

total number of edges

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

Adjacent vertices

A

directly connected by a common edge

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

Neighborhood of a vertex

A

vertices that are connected to a vertex

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

girth

A

sum of weight of edges

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

planar graph

A

drawn without touching

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

formula for degree of regular graph

A

degree = order-1

17
Q

formula for size of complete graph

A

1/2*order(order-1)

18
Q

Isomorphic graphs

A

Same size, order + neighborhood. Test to see how many hops it takes to get back to a starting vertex.

19
Q

Eulerian path

A

every edge once, starts and ends at different vertices, vertices can be visited more than once. Must begin and end at the pair of odd vertices. Only exists if there is 1 pair of vertices of odd degree

20
Q

Eulerian circuit

A

every edge once, starts and ends at same vertex, vertices may be visited more than once. Only exists if no vertices of odd degree

21
Q

Hamiltonian circuit

A

each vertex once before returning to starting vertex, doesn’t need to use every edge.

22
Q

circuit

A

a path that starts and ends at same vertex