Indifference graph


In graph theory, a branch of mathematics, an indifference graph is an undirected graph constructed by assigning a real number to each vertex and connecting two vertices by an edge when their numbers are within one unit of each other. An indifference graph is also the intersection graph of a set of unit intervals, or of properly nested intervals. Based on these two types of interval representations, these graphs are also called unit interval graphs or proper interval graphs; they form a subclass of the interval graphs.

Equivalent characterizations

A finite indifference graph may be equivalently characterized as:
For an infinite graph, some of these definitions may differ.

Properties

Because it is a special case of an interval graph, an indifference graph has all the properties of an interval graph; in particular, it is a special case of a chordal graph and of a perfect graph. It is also a special case of a circle graph, something that is not true of an interval graph more generally.
In the Erdős–Rényi model of random graphs, an -vertex graph whose number of edges is significantly less than will be an indifference graph with high probability, whereas an -vertex graph whose number of edges is significantly more than will not be an indifference graph with high probability.
The bandwidth of an arbitrary graph is 1 less than the size of the maximum clique in an indifference graph that contains as a subgraph and is chosen to minimize the size of the maximum clique. This property parallels similar relations between pathwidth and interval graphs, and between treewidth and chordal graphs. A weaker notion of width, the clique-width, may be arbitrarily large on indifference graphs. However, every proper subclass of the indifference graphs that is closed under induced subgraphs has bounded clique-width.
A connected indifference graph has a Hamiltonian path. An indifference graph has a Hamiltonian cycle if and only if it is biconnected.
An indifference graph obeys the reconstruction conjecture: it is uniquely determined by its vertex-deleted subgraphs.

Algorithms

As with higher dimensional unit disk graphs, it is possible to transform a set of points into their indifference graph, or a set of unit intervals into their unit interval graph, in linear time as measured in terms of the size of the output graph. The algorithm rounds the points down to the nearest smaller integer, uses a hash table to find all pairs of points whose rounded integers are within 1 of each other, and filters the resulting list of pairs for the ones whose unrounded values are also within 1 of each other.
It is possible to test whether a given graph is an indifference graph in linear time, by using PQ trees to construct an interval representation of the graph and then testing whether a vertex ordering derived from this representation satisfies the properties of an indifference graph. It is also possible to base a recognition algorithm for indifference graphs on chordal graph recognition algorithms. Several alternative linear time recognition algorithms are based on breadth-first search or lexicographic breadth-first search rather than on the relation between indifference graphs and interval graphs.
Once the vertices have been sorted by the numerical values that describe an indifference graph, the same ordering can be used to find an optimal graph coloring for these graphs, to solve the shortest path problem, and to construct Hamiltonian paths and maximum matchings, all in linear time. A Hamiltonian cycle can be found from a proper interval representation of the graph in time, but when the graph itself is given as input, the same problem admits linear-time solution that can be generalized to interval graphs.
List coloring remains NP-complete even when restricted to indifference graphs. However, it is fixed-parameter tractable when parameterized by the total number of colors in the input.

Applications

In mathematical psychology, indifference graphs arise from utility functions, by scaling the function so that one unit represents a difference in utilities small enough that individuals can be assumed to be indifferent to it.
In this application, pairs of items whose utilities have a large difference may be partially ordered by the relative order of their utilities, giving a semiorder.
In bioinformatics, the problem of augmenting a colored graph to a properly colored unit interval graph can be used to model the detection of false negatives in DNA sequence assembly from complete digests.