Chain Graph
   HOME

TheInfoList



OR:

In
graph theory In mathematics, graph theory is the study of ''graphs'', which are mathematical structures used to model pairwise relations between objects. A graph in this context is made up of '' vertices'' (also called ''nodes'' or ''points'') which are conne ...
, a mixed graph is a graph consisting of a set of vertices , a set of (undirected)
edges Edge or EDGE may refer to: Technology Computing * Edge computing, a network load-balancing system * Edge device, an entry point to a computer network * Adobe Edge, a graphical development application * Microsoft Edge, a web browser developed by ...
, and a set of directed edges (or arcs) .


Definitions and notation

Consider adjacent vertices u,v \in V. A directed edge, called an arc, is an edge with an orientation and can be denoted as \overrightarrow or (u,v) (note that u is the tail and v is the head of the arc). Also, an undirected edge, or edge, is an edge with no orientation and can be denoted as uv or ,v/math>. For the purpose of our application example we will not be considering loops or multiple edges of mixed graphs. A
walk Walking (also known as ambulation) is one of the main gaits of terrestrial locomotion among legged animals. Walking is typically slower than running and other gaits. Walking is defined by an 'inverted pendulum' gait in which the body vaults ov ...
in a mixed graph is a sequence v_0,c_1,v_1,c_2,v_2,\dots,c_k,v_k of vertices and edges/arcs such that for all indices i, either c_i=v_v_ is an edge of the graph or c_i=\overrightarrow is an arc of the graph. This walk is a
path A path is a route for physical travel – see Trail. Path or PATH may also refer to: Physical paths of different types * Bicycle path * Bridle path, used by people on horseback * Course (navigation), the intended path of a vehicle * Desire p ...
if it does not repeat any edges, arcs, or vertices, except possibly the first and last vertices. A path is closed if its first and last vertices are the same, and a closed path is a
cycle Cycle, cycles, or cyclic may refer to: Anthropology and social sciences * Cyclic history, a theory of history * Cyclical theory, a theory of American political history associated with Arthur Schlesinger, Sr. * Social cycle, various cycles in soc ...
if it does not repeat vertices, except the first and the last. A mixed graph is acyclic if it does not contain a cycle.


Coloring

Mixed graph coloring can be thought of as a labeling or an assignment of different colors (where is a positive integer) to the vertices of a mixed graph. Different colors must be assigned to vertices that are connected by an edge. The colors may be represented by the numbers from to , and for a directed arc, the tail of the arc must be colored by a smaller number than the head of the arc.


Example

For example, consider the figure to the right. Our available -colors to color our mixed graph are Since and are connected by an edge, they must receive different colors or labelings ( and are labelled 1 and 2, respectively). We also have an arc from to . Since orientation assigns an ordering, we must label the tail () with a smaller color (or integer from our set) than the head () of our arc.


Strong and weak coloring

A (strong) proper -coloring of a mixed graph is a function where such that if and if \overrightarrow \in A . A weaker condition on our arcs can be applied and we can consider a weak proper -coloring of a mixed graph to be a function where such that if and if \overrightarrow \in A . Referring back to our example, this means that we can label both the head and tail of with the positive integer 2.


Existence

A coloring may or may not exist for a mixed graph. In order for a mixed graph to have a -coloring, the graph cannot contain any directed cycles. If such a -coloring exists, then we refer to the smallest needed in order to properly color our graph as the chromatic number, denoted . We can count the number of proper -colorings as a polynomial function of . This is called the chromatic polynomial of our graph (by analogy with the chromatic polynomial of undirected graphs) and can be denoted as .


Computing weak chromatic polynomials

The deletion–contraction method can be used to compute weak chromatic polynomials of mixed graphs. This method involves deleting (or removing) an edge or arc and contracting (or joining) the remaining vertices incident to that edge (or arc) to form one vertex. After deleting an edge, , from a mixed graph we obtain the mixed graph . We can denote this deletion of the edge, , as . Similarly, by deleting an arc, , from a mixed graph, we obtain where we can denote the deletion of as . Also, we can denote the contraction of and as and , respectively. From Propositions given in, we obtain the following equations to compute the chromatic polynomial of a mixed graph: # \chi_G(k) = \chi_(k) - \chi_(k), # \chi_G(k) = \chi_(k) + \chi_(k) - \chi_(k).


Applications


Scheduling problem

Mixed graphs may be used to model job shop scheduling problems in which a collection of tasks is to be performed, subject to certain timing constraints. In this sort of problem, undirected edges may be used to model a constraint that two tasks are incompatible (they cannot be performed simultaneously). Directed edges may be used to model precedence constraints, in which one task must be performed before another. A graph defined in this way from a scheduling problem is called a
disjunctive graph In the mathematical modeling of job shop scheduling problems, disjunctive graphs are a way of modeling a system of tasks to be scheduled and timing constraints that must be respected by the schedule. They are mixed graphs, in which vertices (repres ...
. The mixed graph coloring problem can be used to find a schedule of minimum length for performing all the tasks.


Bayesian inference

Mixed graphs are also used as graphical models for
Bayesian inference Bayesian inference is a method of statistical inference in which Bayes' theorem is used to update the probability for a hypothesis as more evidence or information becomes available. Bayesian inference is an important technique in statistics, a ...
. In this context, an acyclic mixed graph (one with no cycles of directed edges) is also called a chain graph. The directed edges of these graphs are used to indicate a causal connection between two events, in which the outcome of the first event influences the probability of the second event. Undirected edges, instead, indicate a non-causal correlation between two events. A connected component of the undirected subgraph of a chain graph is called a chain. A chain graph may be transformed into an undirected graph by constructing its
moral graph In graph theory, a moral graph is used to find the equivalent undirected form of a directed acyclic graph. It is a key step of the junction tree algorithm, used in belief propagation on graphical models. The moralized counterpart of a directed acy ...
, an undirected graph formed from the chain graph by adding undirected edges between pairs of vertices that have outgoing edges to the same chain, and then forgetting the orientations of the directed edges.


Notes


References

*. * *. *.


External links

*{{mathworld, id=MixedGraph, title=Mixed Graph Graph theory