graphing and network terms Flashcards
Adjacency matrix
An adjacency matrix for a non-directed graph with vertices is a matrix in which the entry in rows and columns is the number of edges joining the vertices
i and j in an adjacency matrix, a loop is counted as 1 edge.
For a directed graph the entry in rows and columns is the number of directed edges (arcs) joining the vertex i and j in the direction i to j.
Bipartite graph
A bipartite graph is a graph whose set of vertices can be split into two distinct groups in such a way that each edge of the graph joins a vertex in the first group to a vertex in the second group.
Complete graph
A complete graph is a simple graph in which every vertex is joined to every other vertex by an edge. The complete graph with vertices is denoted . A complete bipartite graph is a bipartite graph where every vertex of the first set is connected to every vertex of the second set.
Connected graph
A graph is connected if there is a path between each pair of vertices. A bridge is an edge in a connected graph that, if removed, leaves a graph disconnected.
Cycle
A cycle is a closed walk which begins and ends at the same vertex and which has no repeated edges or vertices except the first. If , , and are the vertices of a graph, the closed walk that starts and ends at vertex (shown dotted) an example of a cycle.
Degree of a vertex (graph)
In a graph, the degree of a vertex is the number of edges incident with the vertex, with loops counted twice. It is denoted deg .
In the graph below, deg =4, deg =2, deg =4 and deg =2.
Directed graph
A directed graph is a diagram comprising points, called vertices, joined by directed lines called arcs. The directed graphs are commonly called digraphs.
Eulers formula
For a connected planar graph, states that , where is the number vertices, is the number of edges and is the number of faces.
Eulerian graph
A connected graph is Eulerian if it has a closed trail (starts and ends at the same vertex), that is, includes every edge and once only; such a trail is called an Eulerian trail. An Eulerian trail may include repeated vertices. A connected graph is
semi-Eulerian if there is an open trail that includes every edge once only.
Face
The faces of a planar graph are the regions bounded by the edges, including the outer infinitely large region. The planar graph shown has four faces.
Food web
A food web (or food chain) depicts feeding connections (who eats whom) in an ecological community.
Graph
A graph is a diagram that consists of a set of points, called vertices, that are joined by a set of lines called edges. Each edge joins two vertices. A loop is an edge in a graph that joins a vertex in a graph to itself. Two vertices are adjacent if they are joined by an edge. Two or more edges which connect the same vertices are called multiple edges.
Hamiltonian cycle
A Hamiltonian cycle is a cycle that includes each vertex in a graph (except the first), once only.
Hamiltonian path
A Hamiltonian path is a path that includes every vertex in a graph once only.
A Hamilton path that begins and ends at the same vertex is a Hamiltonian cycle.
These concepts are useful in solving practical problems, such as: planning a sight-seeing tourist route around a city, or the travelling-salesman problem.
Length (of a walk)
The length of a walk is the number of edges it includes.