Decision - Graphs and Networks Flashcards
What is a graph?
A graph consists of points (called vertices or nodes) which are connected by lines (edges or arcs)
What are points on a graph called?
Vertices or nodes
What are lines on a graph called?
Edges or arcs
What is a weighted graph?
A graph that has a number associated with each edge (usually known as its weight)
What is a network?
A weighted graph
How are 2 vertices connected?
If there is a path between them
What is a connected graph?
A graph where all its vertices are connected
What is a simple graph?
A graph in which there are no loops and there is at most 1 edge connecting any pair of vertices
What is a directed graph?
A graph in which the edges of the graph have a direction associated with them, the edges are known as directed edges.
What is directed graph abbreviated to?
Digraph
What are all the vertices, or nodes, in a graph called?
The vertex set
What are all the edges, or arcs, in a graph called?
The edge set
What is a subgraph?
A subgraph of G is a graph, whos vertices belong to graph G and edges belong to G. It is simply a part of the original graph
What is the degree of a vertex?
The number of edges incident to it
What is the valency of a vertex?
The degree of a vertex
What is an even vertex?
A vertex with an even degree/valency
What is an odd vertex?
A vertex with an odd degree/valency
What is a loop?
An edge where the start vertex and end vertex are the same
What does a loop add to the valency?
2
What is the rule with odd vertex’s?
If you have odd vertex’s, you will always have an even number of them
What is a walk?
A walk is a route through a graph along edges from one vertex to the next
What is a path?
A path is a finite sequence of edges, such that the end vertex of one edge in the sequence is the start vertex of the next. No vertices can appear more than once
What is a trail?
A trail is a walk in which no edge is visited more than once
What is a cycle?
A cycle is a walk in which the end vertex is the same as the start vertex and no other vertex is visited more than once