language of graphs Flashcards

1
Q

vertex

A

shown as a point on a graph
sometimes labelled, sometimes not

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

edge

A

a line or curve with a vertex at each end

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

walk

A

a set of edges joined end to end, so the end vertex of one edge is the start vertex of the next

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

trail

A

a set of edges joined end to end, that does not repeat an edge
can repeat vertices although often do not

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

cycle

A

a trail that starts and finishes at the same vertex. other than the start being the same as the finish, vertices are not repeated in a cycle

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

adjacent

A

two vertices are directly connected if there is a edge with these vertices at its end

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

connected

A

a graph is connected if it is possible to get from any vertex to any other, directly or indirectly

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

loop

A

an edge that directly connects a vertex to itself

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

multiple edge

A

when there is more than one edge that directly connect the same pair of vertices

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

simple graph

A

a graph with no loops and no multiple edges

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

degree

A

the degree of a vertex is the number of edges that end at that vertex

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

subgraph

A

a graph formed by using some or all of the vertices of a graph together with some or all of the edges that connect these vertices.
a graph contained within another graph. this could result in an unconnected vertex however they are usually connected

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

subdivision

A

inserting a vertex of degree 2 into an edge. increases the number of vertices by one and the number of edges by one

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

complete graph

A

a simple graph on a given number of vertices, with the maximum possible number of edges. each vertex is connected by a single edge of the other vertices. the complete graph with n vertices is denoted by Kn AND HAVE 1/2 n(n-1) edges

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

bipartite graph

A

a simple graph that can be partitioned into two sets so that every edge joins a vertex from one of these sets to a vertex in the other set. no edge connects two vertices in the same set

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

complete bipartite graph

A

each vertex in the first set is connected by a single edge to each vertex in the second set. the complete graph with m vertices in the first set and n vertices in the second set is denoted by Km,n and has mn edges

17
Q

adjacency matrix

A

shows the number of edges that directly connect each pair of vertices

18
Q

complement

A

the complement of a simple graph is the set of edges that when added to the graph make a complete graph

19
Q

simple-connected graph

A

a graph that is both simple and connected

20
Q

tree

A

a simple connected graph with the minimum possible number of edges

21
Q

traversable graph

A

a graph that can be drawn as a trail, without going over the same edge twice

22
Q

eulerian graph

A

a connected graph that has no vertices of odd degree. they are traversable, with the trail starting and finishing at the same vertex

23
Q

semi-eulerian graphs

A

a connected graph that has exactly two vertices of odd degree, they are traversable, but the trail starts at one vertex and finishes at a different vertex

24
Q

hamiltonian graph

A

a graph that contains a cycle that passes through every vertex exactly once, apart from starting and finishing at the same vertex. the cycle is called a hamiltonian cycle. there will usually be edges in the graph that are not used in the cycle