![]() | ||
A mixed graph G = (V, E, A) is a mathematical object consisting of a set of vertices (or nodes) V, a set of (undirected) edges E, and a set of directed edges (or arcs) A.
Contents
Definitions and Notation
Consider adjacent vertices
For the purpose of our application example we will not be considering loops or multiple edges of mixed graphs.
A cycle of a mixed graph, or mixed cycle, is formed if the directed edges of the mixed graph form a cycle. An orientation of a mixed graph is considered acyclic if cycles cannot be formed from the directed edges. We call a mixed graph acyclic if all of its orientations are acyclic.
Coloring
Mixed graph coloring can be thought of as a labeling or an assignment of k different colors (where k 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 1 to k, 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 k-colors to color our mixed graph are
Strong and weak coloring
A (strong) proper k-coloring of a mixed graph is a function
A weaker condition on our arcs can be applied and we can consider a weak proper k-coloring of a mixed graph to be a function
Existence
A coloring may or may not exist for a mixed graph. In order for a mixed graph to have a k-coloring, the graph cannot contain any directed cycles. If such a k-coloring exists, then we refer to the smallest k needed in order to properly color our graph as the chromatic number, denoted
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,
-
χ G ( k ) = χ G − e ( k ) − χ G / e ( k ) , -
χ G ( k ) = χ G − a ( k ) + χ G / a ( k ) − χ G a ( k ) .
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. 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. In this context, an acyclic chain 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, 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.