Line graphs#

This module gather everything which is related to line graphs. Right now, this amounts to the following functions :

line_graph()

Return the line graph of a given graph

is_line_graph()

Check whether a graph is a line graph

root_graph()

Return the root graph corresponding to the given graph

Author:

  • Nathann Cohen (01-2013), root_graph() method and module documentation. Written while listening to Nina Simone “I wish I knew how it would feel to be free”. Crazy good song. And “Prendre ta douleur”, too.

  • David Coudert (10-2018), use maximal cliques iterator in root_graph(), and use root_graph() instead of forbidden subgraph search in is_line_graph() (github issue #26444).

Definition#

Given a graph \(G\), the line graph \(L(G)\) of \(G\) is the graph such that

\[\begin{split}V(L(G)) =& E(G)\\ E(L(G)) =& \{(e,e'):\text{ and }e,e'\text{ have a common endpoint in }G\}\\\end{split}\]

The definition is extended to directed graphs. In this situation, there is an arc \((e,e')\) in \(L(G)\) if the destination of \(e\) is the origin of \(e'\).

For more information, see the Wikipedia article Line_graph.

Root graph#

A graph whose line graph is \(LG\) is called the root graph of \(LG\). The root graph of a (connected) graph is unique ([Whi1932], [Har1969]), except when \(LG=K_3\), as both \(L(K_3)\) and \(L(K_{1,3})\) are equal to \(K_3\).

Here is how we can “see” \(G\) by staring (very intently) at \(LG\) :

A graph \(LG\) is the line graph of \(G\) if there exists a collection \((S_v)_{v\in G}\) of subsets of \(V(LG)\) such that :

  • Every \(S_v\) is a complete subgraph of \(LG\).

  • Every \(v\in LG\) belongs to exactly two sets of the family \((S_v)_{v\in G}\).

  • Any two sets of \((S_v)_{v\in G}\) have at most one common elements

  • For any edge \((u,v)\in LG\) there exists a set of \((S_v)_{v\in G}\) containing both \(u\) and \(v\).

In this family, each set \(S_v\) represent a vertex of \(G\), and contains “the set of edges incident to \(v\) in \(G\)”. Two elements \(S_v,S_{v'}\) have a nonempty intersection whenever \(vv'\) is an edge of \(G\).

Hence, finding the root graph of \(LG\) is the job of finding this collection of sets.

In particular, what we know for sure is that a maximal clique \(S\) of size \(2\) or \(\geq 4\) in \(LG\) corresponds to a vertex of degree \(|S|\) in \(G\), whose incident edges are the elements of \(S\) itself.

The main problem lies with maximal cliques of size 3, i.e. triangles. Those we have to split into two categories, even and odd triangles :

A triangle \(\{e_1,e_2,e_3\}\subseteq V(LG)\) is said to be an odd triangle if there exists a vertex \(e\in V(G)\) incident to exactly one or all of \(\{e_1,e_2,e_3\}\), and it is said to be even otherwise.

The very good point of this definition is that an inclusionwise maximal clique which is an odd triangle will always correspond to a vertex of degree 3 in \(G\), while an even triangle could result from either a vertex of degree 3 in \(G\) or a triangle in \(G\). And in order to build the root graph we obviously have to decide which.

Beineke proves in [Bei1970] that the collection of sets we are looking for can be easily found. Indeed it turns out that it is the union of :

  1. The family of all maximal cliques of \(LG\) of size 2 or \(\geq 4\), as well as all odd triangles.

  2. The family of all pairs of adjacent vertices which appear in exactly one maximal clique which is an even triangle.

There are actually four special cases to which the decomposition above does not apply, i.e. graphs containing an edge which belongs to exactly two even triangles. We deal with those independently.

This decomposition turns out to be very easy to implement :-)

Warning

Even though the root graph is NOT UNIQUE for the triangle, this method returns \(K_{1,3}\) (and not \(K_3\)) in this case. Pay very close attention to that, for this answer is not theoretically correct : there is no unique answer in this case, and we deal with it by returning one of the two possible answers.

Functions#

sage.graphs.line_graph.is_line_graph(g, certificate=False)#

Check whether the graph \(g\) is a line graph.

INPUT:

  • certificate (boolean) – whether to return a certificate along with the boolean result. Here is what happens when certificate = True:

    • If the graph is not a line graph, the method returns a pair (b, subgraph) where b is False and subgraph is a subgraph isomorphic to one of the 9 forbidden induced subgraphs of a line graph.

    • If the graph is a line graph, the method returns a triple (b,R,isom) where b is True, R is a graph whose line graph is the graph given as input, and isom is a map associating an edge of R to each vertex of the graph.

Note

This method wastes a bit of time when the input graph is not connected. If you have performance in mind, it is probably better to only feed it with connected graphs only.

See also

EXAMPLES:

A complete graph is always the line graph of a star:

sage: graphs.CompleteGraph(5).is_line_graph()
True

The Petersen Graph not being claw-free, it is not a line graph:

sage: graphs.PetersenGraph().is_line_graph()
False

This is indeed the subgraph returned:

sage: C = graphs.PetersenGraph().is_line_graph(certificate=True)[1]             # needs sage.modules
sage: C.is_isomorphic(graphs.ClawGraph())                                       # needs sage.modules
True

The house graph is a line graph:

sage: g = graphs.HouseGraph()
sage: g.is_line_graph()
True

But what is the graph whose line graph is the house ?:

sage: # needs sage.modules
sage: is_line, R, isom = g.is_line_graph(certificate=True)
sage: R.sparse6_string()
':DaHI~'
sage: R.show()                                                                  # needs sage.plot
sage: isom
{0: (0, 1), 1: (0, 2), 2: (1, 3), 3: (2, 3), 4: (3, 4)}
sage.graphs.line_graph.line_graph(g, labels=True)#

Return the line graph of the (di)graph g.

INPUT:

  • labels – boolean (default: True); whether edge labels should be taken in consideration. If labels=True, the vertices of the line graph will be triples (u,v,label), and pairs of vertices otherwise.

The line graph of an undirected graph G is an undirected graph H such that the vertices of H are the edges of G and two vertices e and f of H are adjacent if e and f share a common vertex in G. In other words, an edge in H represents a path of length 2 in G.

The line graph of a directed graph G is a directed graph H such that the vertices of H are the edges of G and two vertices e and f of H are adjacent if e and f share a common vertex in G and the terminal vertex of e is the initial vertex of f. In other words, an edge in H represents a (directed) path of length 2 in G.

Note

As a Graph object only accepts hashable objects as vertices (and as the vertices of the line graph are the edges of the graph), this code will fail if edge labels are not hashable. You can also set the argument labels=False to ignore labels.

See also

EXAMPLES:

sage: g = graphs.CompleteGraph(4)
sage: h = g.line_graph()
sage: h.vertices(sort=True)
[(0, 1, None),
 (0, 2, None),
 (0, 3, None),
 (1, 2, None),
 (1, 3, None),
 (2, 3, None)]
sage: h.am()                                                                    # needs sage.modules
[0 1 1 1 1 0]
[1 0 1 1 0 1]
[1 1 0 0 1 1]
[1 1 0 0 1 1]
[1 0 1 1 0 1]
[0 1 1 1 1 0]
sage: h2 = g.line_graph(labels=False)
sage: h2.vertices(sort=True)
[(0, 1), (0, 2), (0, 3), (1, 2), (1, 3), (2, 3)]
sage: h2.am() == h.am()                                                         # needs sage.modules
True
sage: g = DiGraph([[1..4], lambda i,j: i < j])
sage: h = g.line_graph()
sage: h.vertices(sort=True)
[(1, 2, None),
 (1, 3, None),
 (1, 4, None),
 (2, 3, None),
 (2, 4, None),
 (3, 4, None)]
sage: h.edges(sort=True)
[((1, 2, None), (2, 3, None), None),
 ((1, 2, None), (2, 4, None), None),
 ((1, 3, None), (3, 4, None), None),
 ((2, 3, None), (3, 4, None), None)]
sage.graphs.line_graph.root_graph(g, verbose=False)#

Return the root graph corresponding to the given graph g.

See the documentation of sage.graphs.line_graph to know how it works.

INPUT:

  • g – a graph

  • verbose – boolean (default: False); display some information about what is happening inside of the algorithm.

Warning

This code assumes that \(g\) is a line graph, and is a connected, undirected graph without multiple edges.