Treewidth
Number denoting a graph's closeness to a tree
In graph theory, the treewidth of an undirected graph is an integer number which specifies, informally, how far the graph is from being a tree. The smallest treewidth is 1; the graphs with treewidth 1 are exactly the trees and the forests. An example of graphs with treewidth at most 2 are the series-parallel graphs. The maximal graphs with treewidth exactly k are called k-trees, and the graphs with treewidth at most k are called partial k-trees. Many other well-studied graph families also have bounded treewidth.
Treewidth may be formally defined in several equivalent ways: in terms of the size of the largest vertex set in a tree decomposition of the graph, in terms of the size of the largest clique in a chordal completion of the graph, in terms of the maximum order of a haven describing a strategy for a pursuit-evasion game on the graph, or in terms of the maximum order of a bramble, a collection of connected subgraphs that all touch each other.
Treewidth is commonly used as a parameter in the parameterized complexity analysis of graph algorithms. Many algorithms that are NP-hard for general graphs, become easier when the treewidth is bounded by a constant.
The concept of treewidth was originally introduced by Umberto Bertelè and Francesco Brioschi (1972) under the name of dimension. It was later rediscovered by Rudolf Halin (1976), based on properties that it shares with a different graph parameter, the Hadwiger number. Later it was again rediscovered by Neil Robertson and Paul Seymour (1984) and has since been studied by many other authors.
01Definition
A tree decomposition of a graph is a tree
in which each node is associated with a subset of vertices called a "bag". (The term node is used to refer to a vertex of
to avoid confusion with vertices of
). The bags
must satisfy the following properties:
- Each graph vertex is contained in at least one bag:
- If bags
and
both contain a vertex
, then all bags
associated with nodes in the (unique) path of
between
and
also contain
as well. Equivalently, the bags containing vertex
are associated with a connected subtree of
.
- For every edge
in the graph, there is at least one bag
that contains both
and
. That is, vertices are adjacent in the graph only when their corresponding subtrees have a node in common. (However, two vertices may belong to a bag without being adjacent to each other.)
The width of a tree decomposition is the size of its largest bag minus one. The treewidth
of a graph
is the minimum width among all possible tree decompositions of
. In this definition, the size of the largest set is diminished by one in order to make the treewidth of a tree equal to one.
Equivalently, the treewidth of is one less than the size of the largest clique in the chordal graph containing
with the smallest clique number. A chordal graph with this clique size may be obtained by adding to
an edge between every two vertices for which at least one bag contains both vertices.
Treewidth may also be characterized in terms of havens, functions describing an evasion strategy for a certain pursuit-evasion game defined on a graph. A graph has treewidth
if and only if it has a haven of order
but of no higher order, where a haven of order
is a function
that maps each set
of at most
vertices in
into one of the connected components of
and that obeys the monotonicity property that
whenever
.
A similar characterization can also be made using brambles, families of connected subgraphs that all touch each other (meaning either that they share a vertex or are connected by an edge). The order of a bramble is the smallest hitting set for the family of subgraphs, and the treewidth of a graph is one less than the maximum order of a bramble.

02Examples
Every complete graph has treewidth
. This is most easily seen using the definition of treewidth in terms of chordal graphs: the complete graph is already chordal, and adding more edges cannot reduce the size of its largest clique.
A connected graph with at least two vertices has treewidth 1 if and only if it is a tree. A tree has treewidth one by the same reasoning as for complete graphs (namely, it is chordal, and has maximum clique size two). Conversely, if a graph has a cycle, then every chordal completion of the graph includes at least one triangle consisting of three consecutive vertices of the cycle, from which it follows that its treewidth is at least two.

03Bounded treewidth
Graph families with bounded treewidth
For any fixed constant , the graphs of treewidth at most
are called the partial
-trees. Other families of graphs with bounded treewidth include the cactus graphs, pseudoforests, series-parallel graphs, outerplanar graphs, Halin graphs, and Apollonian networks. The control-flow graphs arising in the compilation of structured programs also have bounded treewidth, which allows certain tasks such as register allocation to be performed efficiently on them.
The planar graphs do not have bounded treewidth, because the grid graph is a planar graph with treewidth exactly
. Therefore, if
is a minor-closed graph family with bounded treewidth, it cannot include all planar graphs. Conversely, if some planar graph cannot occur as a minor for graphs in family
, then there is a constant
such that all graphs in
have treewidth at most
. That is, the following three conditions are equivalent to each other:
is a minor-closed family of bounded-treewidth graphs;
- One of the finitely many forbidden minors characterizing
is planar;
is a minor-closed graph family that does not include all planar graphs.
Forbidden minors
For every finite value of , the graphs of treewidth at most
may be characterized by a finite set of forbidden minors. (That is, any graph of treewidth greater than
includes one of the graphs in the set as a minor.) Each of these sets of forbidden minors includes at least one planar graph.
- For
, the unique forbidden minor is a 3-vertex cycle graph.
- For
, the unique forbidden minor is the 4-vertex complete graph
.
- For
, there are four forbidden minors:
, the graph of the octahedron, the pentagonal prism graph, and the Wagner graph. Of these, the two polyhedral graphs are planar.
For larger values of , the number of forbidden minors grows at least as quickly as an exponential function of
. However, known upper bounds on the size and number of forbidden minors are much higher than this lower bound.
04Algorithms
Computing the treewidth
It is -complete to determine whether a given graph
has treewidth at most a given variable
.
However, when
is any fixed constant, the graphs with treewidth
can be recognized, and a width
tree decomposition constructed for them, in linear time. The time dependence of this algorithm on
is exponential.
Due to the roles the treewidth plays in an enormous number of fields, different practical and theoretical algorithms computing the treewidth of a graph were developed. Depending on the application on hand, one can prefer better approximation ratio, or better dependence in the running time from the size of the input or the treewidth.
The table below provides an overview of some of the treewidth algorithms. Here is the treewidth and
is the number of vertices of an input graph
.
Each of the algorithms outputs in time
a decomposition of width given in the Approximation column. For example, the algorithm of Bodlaender (1996) in time
either constructs a tree decomposition of the input graph
of width at most
or reports that the treewidth of
is more than
. Similarly, the algorithm of Bodlaender et al. (2016) in time
either constructs a tree decomposition of the input graph
of width at most
or reports that the treewidth of
is more than
. Korhonen (2021) improved the width of the decomposition to
in the same running time.
It is not known whether determining the treewidth of planar graphs is NP-complete, or whether their treewidth can be computed in polynomial time.
In practice, an algorithm of Shoikhet & Geiger (1997) can determine the treewidth of graphs with up to 100 vertices and treewidth up to 11, finding a chordal completion of these graphs with the optimal treewidth.
For larger graphs, one can use search-based techniques such as branch and bound search to compute the treewidth. These algorithms are anytime in that when stopped early, they will output an upper bound on the treewidth. An algorithm of this type was proposed in 2004 by Vibhav Gogate and Rina Dechter. To provide a lower bound on treewidth for the branches of this search, they construct a graph minor by repeatedly contracting an edge between a minimum degree vertex and one of its neighbors, until just one vertex remains. The maximum of the minimum degree over these constructed minors is guaranteed to be a lower bound on the treewidth of the graph. Alex Dow and Rich Korf further improved this algorithm using best-first search.
Solving other problems on graphs of small treewidth
At the beginning of the 1970s, it was observed that a large class of combinatorial optimization problems defined on graphs could be efficiently solved by non serial dynamic programming as long as the graph had a bounded dimension, a parameter shown to be equivalent to treewidth by Bodlaender (1998). Later, several authors independently observed at the end of the 1980s that many algorithmic problems that are NP-complete for arbitrary graphs may be solved efficiently by dynamic programming for graphs of bounded treewidth, using the tree-decompositions of these graphs.
As an example, the problem of coloring a graph of treewidth may be solved by using a dynamic programming algorithm on a tree decomposition of the graph. For each bag
of the tree decomposition, and each partition of the vertices of
into color classes, the algorithm determines whether that coloring is valid and can be extended to all descendant nodes in the tree decomposition, by combining information of a similar type computed and stored at those nodes. The resulting algorithm finds an optimal coloring of an
-vertex graph in time
, a time bound that makes this problem fixed-parameter tractable.
Courcelle's theorem
For a large class of problems, there is a linear time algorithm to solve a problem from the class if a tree-decomposition with constant bounded treewidth is provided. Specifically, Courcelle's theorem states that if a graph problem can be expressed in the logic of graphs using monadic second order logic, then it can be solved in linear time on graphs with bounded treewidth. Monadic second order logic is a language to describe graph properties that uses the following constructions:
- Logic operations, such as
- Membership tests, such as
,
- Quantifications over vertices, edges, sets of vertices, and/or sets of edges, such as
,
,
,
- Vertex-edge incidence tests (
is an endpoint of
), and some extensions that allow for things such as optimization.
Consider for example the 3-coloring problem for graphs. For a graph , this problem asks if it is possible to assign each vertex
one of three colors such that no two adjacent vertices are assigned the same color.
This problem can be expressed in monadic second order logic as
where
,
,
represent the subsets of vertices having each of the three colors, and where the subexpressions
are defined to mean
(It is not necessary to include in this formula the requirement that the sets
be disjoint.)
Therefore, by Courcelle's results, the 3-coloring problem can be solved in linear time for a graph given a tree-decomposition of bounded constant treewidth.

Sources and credits
This article is adapted from the Wikipedia article “Treewidth”, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.
Images, from Wikimedia Commons:
- Tree decomposition.svg by David Eppstein, Public domain
- 3x3 grid graph haven.svg by David Eppstein, CC0
- Partial 3-tree forbidden minors.svg by David Eppstein, Public domain
Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.