fbpx
Wikipedia

Independent set (graph theory)

In graph theory, an independent set, stable set, coclique or anticlique is a set of vertices in a graph, no two of which are adjacent. That is, it is a set of vertices such that for every two vertices in , there is no edge connecting the two. Equivalently, each edge in the graph has at most one endpoint in . A set is independent if and only if it is a clique in the graph's complement. The size of an independent set is the number of vertices it contains. Independent sets have also been called "internally stable sets", of which "stable set" is a shortening.[1]

The nine blue vertices form a maximum independent set for the Generalized Petersen graph GP(12,4).

A maximal independent set is an independent set that is not a proper subset of any other independent set.

A maximum independent set is an independent set of largest possible size for a given graph . This size is called the independence number of and is usually denoted by .[2] The optimization problem of finding such a set is called the maximum independent set problem. It is a strongly NP-hard problem.[3] As such, it is unlikely that there exists an efficient algorithm for finding a maximum independent set of a graph.

Every maximum independent set also is maximal, but the converse implication does not necessarily hold.

Properties edit

Relationship to other graph parameters edit

A set is independent if and only if it is a clique in the graph’s complement, so the two concepts are complementary. In fact, sufficiently large graphs with no large cliques have large independent sets, a theme that is explored in Ramsey theory.

A set is independent if and only if its complement is a vertex cover.[4] Therefore, the sum of the size of the largest independent set   and the size of a minimum vertex cover   is equal to the number of vertices in the graph.

A vertex coloring of a graph   corresponds to a partition of its vertex set into independent subsets. Hence the minimal number of colors needed in a vertex coloring, the chromatic number  , is at least the quotient of the number of vertices in   and the independent number  .

In a bipartite graph with no isolated vertices, the number of vertices in a maximum independent set equals the number of edges in a minimum edge covering; this is Kőnig's theorem.

Maximal independent set edit

An independent set that is not a proper subset of another independent set is called maximal. Such sets are dominating sets. Every graph contains at most 3n/3 maximal independent sets,[5] but many graphs have far fewer. The number of maximal independent sets in n-vertex cycle graphs is given by the Perrin numbers, and the number of maximal independent sets in n-vertex path graphs is given by the Padovan sequence.[6] Therefore, both numbers are proportional to powers of 1.324718..., the plastic ratio.

Finding independent sets edit

In computer science, several computational problems related to independent sets have been studied.

  • In the maximum independent set problem, the input is an undirected graph, and the output is a maximum independent set in the graph. If there are multiple maximum independent sets, only one need be output. This problem is sometimes referred to as "vertex packing".
  • In the maximum-weight independent set problem, the input is an undirected graph with weights on its vertices and the output is an independent set with maximum total weight. The maximum independent set problem is the special case in which all weights are one.
  • In the maximal independent set listing problem, the input is an undirected graph, and the output is a list of all its maximal independent sets. The maximum independent set problem may be solved using as a subroutine an algorithm for the maximal independent set listing problem, because the maximum independent set must be included among all the maximal independent sets.
  • In the independent set decision problem, the input is an undirected graph and a number k, and the output is a Boolean value: true if the graph contains an independent set of size k, and false otherwise.

The first three of these problems are all important in practical applications; the independent set decision problem is not, but is necessary in order to apply the theory of NP-completeness to problems related to independent sets.

Maximum independent sets and maximum cliques edit

The independent set problem and the clique problem are complementary: a clique in G is an independent set in the complement graph of G and vice versa. Therefore, many computational results may be applied equally well to either problem. For example, the results related to the clique problem have the following corollaries:

  • The independent set decision problem is NP-complete, and hence it is not believed that there is an efficient algorithm for solving it.
  • The maximum independent set problem is NP-hard and it is also hard to approximate.

Despite the close relationship between maximum cliques and maximum independent sets in arbitrary graphs, the independent set and clique problems may be very different when restricted to special classes of graphs. For instance, for sparse graphs (graphs in which the number of edges is at most a constant times the number of vertices in any subgraph), the maximum clique has bounded size and may be found exactly in linear time;[7] however, for the same classes of graphs, or even for the more restricted class of bounded degree graphs, finding the maximum independent set is MAXSNP-complete, implying that, for some constant c (depending on the degree) it is NP-hard to find an approximate solution that comes within a factor of c of the optimum.[8]

Exact algorithms edit

The maximum independent set problem is NP-hard. However, it can be solved more efficiently than the O(n2 2n) time that would be given by a naive brute force algorithm that examines every vertex subset and checks whether it is an independent set.

As of 2017 it can be solved in time O(1.1996n) using polynomial space.[9] When restricted to graphs with maximum degree 3, it can be solved in time O(1.0836n).[10]

For many classes of graphs, a maximum weight independent set may be found in polynomial time. Famous examples are claw-free graphs,[11] P5-free graphs[12] and perfect graphs.[13] For chordal graphs, a maximum weight independent set can be found in linear time.[14]

Modular decomposition is a good tool for solving the maximum weight independent set problem; the linear time algorithm on cographs is the basic example for that. Another important tool are clique separators as described by Tarjan.[15]

Kőnig's theorem implies that in a bipartite graph the maximum independent set can be found in polynomial time using a bipartite matching algorithm.

Approximation algorithms edit

In general, the maximum independent set problem cannot be approximated to a constant factor in polynomial time (unless P = NP). In fact, Max Independent Set in general is Poly-APX-complete, meaning it is as hard as any problem that can be approximated to a polynomial factor.[16] However, there are efficient approximation algorithms for restricted classes of graphs.

In planar graphs edit

In planar graphs, the maximum independent set may be approximated to within any approximation ratio c < 1 in polynomial time; similar polynomial-time approximation schemes exist in any family of graphs closed under taking minors.[17]

In bounded degree graphs edit

In bounded degree graphs, effective approximation algorithms are known with approximation ratios that are constant for a fixed value of the maximum degree; for instance, a greedy algorithm that forms a maximal independent set by, at each step, choosing the minimum degree vertex in the graph and removing its neighbors, achieves an approximation ratio of (Δ+2)/3 on graphs with maximum degree Δ.[18] Approximation hardness bounds for such instances were proven in Berman & Karpinski (1999). Indeed, even Max Independent Set on 3-regular 3-edge-colorable graphs is APX-complete.[19]

In interval intersection graphs edit

An interval graph is a graph in which the nodes are 1-dimensional intervals (e.g. time intervals) and there is an edge between two intervals if and only if they intersect. An independent set in an interval graph is just a set of non-overlapping intervals. The problem of finding maximum independent sets in interval graphs has been studied, for example, in the context of job scheduling: given a set of jobs that has to be executed on a computer, find a maximum set of jobs that can be executed without interfering with each other. This problem can be solved exactly in polynomial time using earliest deadline first scheduling.

In geometric intersection graphs edit

A geometric intersection graph is a graph in which the nodes are geometric shapes and there is an edge between two shapes if and only if they intersect. An independent set in a geometric intersection graph is just a set of disjoint (non-overlapping) shapes. The problem of finding maximum independent sets in geometric intersection graphs has been studied, for example, in the context of Automatic label placement: given a set of locations in a map, find a maximum set of disjoint rectangular labels near these locations.

Finding a maximum independent set in intersection graphs is still NP-complete, but it is easier to approximate than the general maximum independent set problem. A recent survey can be found in the introduction of Chan & Har-Peled (2012).

In d-claw-free graphs edit

A d-claw in a graph is a set of d+1 vertices, one of which (the "center") is connected to the other d vertices, but the other d vertices are not connected to each other. A d-claw-free graph is a graph that does not have a d-claw subgraph. Consider the algorithm that starts with an empty set, and incrementally adds an arbitrary vertex to it as long as it is not adjacent to any existing vertex. In d-claw-free graphs, every added vertex invalidates at most d-1 vertices from the maximum independent set; therefore, this trivial algorithm attains a (d-1)-approximation algorithm for the maximum independent set. In fact, it is possible to get much better approximation ratios:

  • Neuwohner[20] presented a polynomial time algorithm that, for any constant ε>0, finds a (d/2-1/63,700,992+ε)-approximation for the maximum weight independent set in a d-claw free graph.
  • Cygan[21] presented a quasi-polynomial time algorithm that, for any ε>0, attains a (d+ε)/3 approximation.

Finding maximal independent sets edit

The problem of finding a maximal independent set can be solved in polynomial time by a trivial parallel greedy algorithm .[22] All maximal independent sets can be found in time O(3n/3) = O(1.4423n).

Counting independent sets edit

Unsolved problem in computer science:

Is there a fully polynomial-time approximation algorithm for the number of independent sets in bipartite graphs?

The counting problem #IS asks, given an undirected graph, how many independent sets it contains. This problem is intractable, namely, it is ♯P-complete, already on graphs with maximal degree three.[23] It is further known that, assuming that NP is different from RP, the problem cannot be tractably approximated in the sense that it does not have a fully polynomial-time approximation scheme with randomization (FPRAS), even on graphs with maximal degree six;[24] however it does have an fully polynomial-time approximation scheme (FPTAS) in the case where the maximal degree is five.[25] The problem #BIS, of counting independent sets on bipartite graphs, is also ♯P-complete, already on graphs with maximal degree three.[26] It is not known whether #BIS admits a FPRAS.[27]

Applications edit

The maximum independent set and its complement, the minimum vertex cover problem, is involved in proving the computational complexity of many theoretical problems.[28] They also serve as useful models for real world optimization problems, for example maximum independent set is a useful model for discovering stable genetic components for designing engineered genetic systems.[29]

See also edit

  • An independent set of edges is a set of edges of which no two have a vertex in common. It is usually called a matching.
  • A vertex coloring is a partition of the vertex set into independent sets.

Notes edit

  1. ^ Korshunov (1974)
  2. ^ Godsil & Royle (2001), p. 3.
  3. ^ Garey, M. R.; Johnson, D. S. (1978-07-01). ""Strong" NP-Completeness Results: Motivation, Examples, and Implications". Journal of the ACM. 25 (3): 499–508. doi:10.1145/322077.322090. ISSN 0004-5411. S2CID 18371269.
  4. ^ Proof: A set V of vertices is an independent set. if and only if every edge in the graph is adjacent to at most one member of V, if and only if every edge in the graph is adjacent to at least one member not in V, if and only if the complement of V is a vertex cover.
  5. ^ Moon & Moser (1965).
  6. ^ Füredi (1987).
  7. ^ Chiba & Nishizeki (1985).
  8. ^ Berman & Fujito (1995).
  9. ^ Xiao & Nagamochi (2017)
  10. ^ Xiao & Nagamochi (2013)
  11. ^ Minty (1980),Sbihi (1980),Nakamura & Tamura (2001),Faenza, Oriolo & Stauffer (2014),Nobili & Sassano (2015)
  12. ^ Lokshtanov, Vatshelle & Villanger (2014)
  13. ^ Grötschel, Lovász & Schrijver (1988)
  14. ^ Frank (1976)
  15. ^ Tarjan (1985)
  16. ^ Bazgan, Cristina; Escoffier, Bruno; Paschos, Vangelis Th. (2005). "Completeness in standard and differential approximation classes: Poly-(D)APX- and (D)PTAS-completeness". Theoretical Computer Science. 339 (2–3): 272–292. doi:10.1016/j.tcs.2005.03.007. S2CID 1418848.
  17. ^ Baker (1994); Grohe (2003).
  18. ^ Halldórsson & Radhakrishnan (1997).
  19. ^ Chlebík, Miroslav; Chlebíková, Janka (2003). "Approximation Hardness for Small Occurrence Instances of NP-Hard Problems". Algorithms and Complexity. Lecture Notes in Computer Science. Vol. 2653. pp. 152–164. doi:10.1007/3-540-44849-7_21. ISBN 978-3-540-40176-6. {{cite book}}: |journal= ignored (help)
  20. ^ Neuwohner, Meike (2021-06-07). "An Improved Approximation Algorithm for the Maximum Weight Independent Set Problem in d-Claw Free Graphs". arXiv:2106.03545. {{cite journal}}: Cite journal requires |journal= (help)
  21. ^ Cygan, Marek (October 2013). "Improved Approximation for 3-Dimensional Matching via Bounded Pathwidth Local Search". 2013 IEEE 54th Annual Symposium on Foundations of Computer Science. pp. 509–518. arXiv:1304.1424. doi:10.1109/FOCS.2013.61. ISBN 978-0-7695-5135-7. S2CID 14160646.
  22. ^ Luby (1986).
  23. ^ Dyer, Martin; Greenhill, Catherine (2000-04-01). "On Markov Chains for Independent Sets". Journal of Algorithms. 35 (1): 17–49. doi:10.1006/jagm.1999.1071. ISSN 0196-6774.
  24. ^ Sly, Allan (2010). "Computational Transition at the Uniqueness Threshold". 2010 IEEE 51st Annual Symposium on Foundations of Computer Science. pp. 287–296. doi:10.1109/FOCS.2010.34. ISBN 978-1-4244-8525-3. S2CID 901126.
  25. ^ Bezáková, Ivona; Galanis, Andreas; Goldberg, Leslie Ann; Guo, Heng; Štefankovič, Daniel (2019). "Approximation via Correlation Decay When Strong Spatial Mixing Fails". SIAM Journal on Computing. 48 (2): 279–349. doi:10.1137/16M1083906. ISSN 0097-5397. S2CID 131975798.
  26. ^ Xia, Mingji; Zhang, Peng; Zhao, Wenbo (2007-09-24). "Computational complexity of counting problems on 3-regular planar graphs". Theoretical Computer Science. Theory and Applications of Models of Computation. 384 (1): 111–125. doi:10.1016/j.tcs.2007.05.023. ISSN 0304-3975., quoted in Curticapean, Radu; Dell, Holger; Fomin, Fedor; Goldberg, Leslie Ann; Lapinskas, John (2019-10-01). "A Fixed-Parameter Perspective on #BIS". Algorithmica. 81 (10): 3844–3864. doi:10.1007/s00453-019-00606-4. ISSN 1432-0541. S2CID 3626662.
  27. ^ Cannon, Sarah; Perkins, Will (2020). Chawla, Shuchi (ed.). Proceedings of the Fourteenth Annual ACM-SIAM Symposium on Discrete Algorithms. Philadelphia, PA: Society for Industrial and Applied Mathematics. arXiv:1906.01666. doi:10.1137/1.9781611975994.88. ISBN 978-1-61197-599-4. S2CID 174799567.
  28. ^ Skiena, Steven S. (2012). The algorithm design manual. Springer. ISBN 978-1-84800-069-8. OCLC 820425142.
  29. ^ Hossain, Ayaan; Lopez, Eriberto; Halper, Sean M.; Cetnar, Daniel P.; Reis, Alexander C.; Strickland, Devin; Klavins, Eric; Salis, Howard M. (2020-07-13). "Automated design of thousands of nonrepetitive parts for engineering stable genetic systems". Nature Biotechnology. 38 (12): 1466–1475. doi:10.1038/s41587-020-0584-2. ISSN 1546-1696. PMID 32661437. S2CID 220506228.

References edit

  • Baker, Brenda S. (1994), "Approximation algorithms for NP-complete problems on planar graphs", Journal of the ACM, 41 (1): 153–180, doi:10.1145/174644.174650, S2CID 9706753.
  • Berman, Piotr; Fujito, Toshihiro (1995), "On approximation properties of the Independent set problem for degree 3 graphs", Algorithms and Data Structures, Lecture Notes in Computer Science, vol. 955, Springer-Verlag, pp. 449–460, doi:10.1007/3-540-60220-8_84, ISBN 978-3-540-60220-0.
  • Berman, Piotr; Karpinski, Marek (1999), "On some tighter inapproximability results", Automata, Languages and Programming, 26th International Colloquium, ICALP'99 Prague, Lecture Notes in Computer Science, vol. 1644, Prague: Springer-Verlag, pp. 200–209, doi:10.1007/3-540-48523-6, ISBN 978-3-540-66224-2, S2CID 23288736
  • Bourgeois, Nicolas; Escoffier, Bruno; Paschos, Vangelis Th.; van Rooij, Johan M. M. (2010), "A bottom-up method and fast algorithms for MAX INDEPENDENT SET", Algorithm Theory - SWAT 2010, Lecture Notes in Computer Science, vol. 6139, Berlin: Springer, pp. 62–73, Bibcode:2010LNCS.6139...62B, doi:10.1007/978-3-642-13731-0_7, ISBN 978-3-642-13730-3, MR 2678485.
  • Chan, T. M. (2003), "Polynomial-time approximation schemes for packing and piercing fat objects", Journal of Algorithms, 46 (2): 178–189, CiteSeerX 10.1.1.21.5344, doi:10.1016/s0196-6774(02)00294-8.
  • Chan, T. M.; Har-Peled, S. (2012), "Approximation algorithms for maximum independent set of pseudo-disks", Discrete & Computational Geometry, 48 (2): 373, arXiv:1103.1431, CiteSeerX 10.1.1.219.2131, doi:10.1007/s00454-012-9417-5, S2CID 38183751.
  • Chiba, N.; Nishizeki, T. (1985), "Arboricity and subgraph listing algorithms", SIAM Journal on Computing, 14 (1): 210–223, doi:10.1137/0214017, S2CID 207051803.
  • Erlebach, T.; Jansen, K.; Seidel, E. (2005), "Polynomial-Time Approximation Schemes for Geometric Intersection Graphs", SIAM Journal on Computing, 34 (6): 1302, doi:10.1137/s0097539702402676.
  • Faenza, Yuri; Oriolo, Gianpaolo; Stauffer, Gautier (2014), "Solving the Weighted Stable Set Problem in Claw-Free Graphs", Journal of the ACM, 61 (4): 1–41, doi:10.1145/2629600, S2CID 1995056.
  • Fomin, Fedor V.; Grandoni, Fabrizio; Kratsch, Dieter (2009), "A measure & conquer approach for the analysis of exact algorithms", Journal of the ACM, 56 (5): 1–32, doi:10.1145/1552285.1552286, S2CID 1186651, article no. 25{{citation}}: CS1 maint: postscript (link).
  • Frank, András (1976), "Some polynomial algorithms for certain graphs and hypergraphs", Congressus Numerantium, XV: 211–226.
  • Füredi, Zoltán (1987), "The number of maximal independent sets in connected graphs", Journal of Graph Theory, 11 (4): 463–470, doi:10.1002/jgt.3190110403.
  • Godsil, Chris; Royle, Gordon (2001), Algebraic Graph Theory, New York: Springer, ISBN 978-0-387-95220-8.
  • Grohe, Martin (2003), "Local tree-width, excluded minors, and approximation algorithms", Combinatorica, 23 (4): 613–632, arXiv:math/0001128, doi:10.1007/s00493-003-0037-9, S2CID 11751235.
  • Grötschel, M.; Lovász, L.; Schrijver, A. (1988), "9.4 Coloring Perfect Graphs", Geometric Algorithms and Combinatorial Optimization, Algorithms and Combinatorics, vol. 2, Springer-Verlag, pp. 296–298, ISBN 978-0-387-13624-0.
  • Halldórsson, M. M.; Radhakrishnan, J. (1997), "Greed is good: Approximating independent sets in sparse and bounded-degree graphs", Algorithmica, 18 (1): 145–163, CiteSeerX 10.1.1.145.4523, doi:10.1007/BF02523693, S2CID 4661668.
  • Korshunov, A.D. (1974), "Coefficient of Internal Stability", Kibernetika (in Ukrainian), 10 (1): 17–28, doi:10.1007/BF01069014, S2CID 120343511.
  • Lokshtanov, D.; Vatshelle, M.; Villanger, Y. (2014), "Independent sets in P5-free graphs in polynomial time", SODA (Symposium on Discrete Algorithms): 570–581.
  • Luby, Michael (1986), "A simple parallel algorithm for the maximal independent set problem", SIAM Journal on Computing, 15 (4): 1036–1053, CiteSeerX 10.1.1.225.5475, doi:10.1137/0215074, MR 0861369.
  • Minty, G.J. (1980), "On maximal independent sets of vertices in claw-free graphs", Journal of Combinatorial Theory, Series B, 28 (3): 284–304, doi:10.1016/0095-8956(80)90074-x.
  • Moon, J.W.; Moser, Leo (1965), "On cliques in graphs", Israel Journal of Mathematics, 3 (1): 23–28, doi:10.1007/BF02760024, MR 0182577, S2CID 9855414.
  • Nakamura, D.; Tamura, A. (2001), "A revision of Minty's algorithm for finding a maximum weight stable set in a claw-free graph", Journal of Operations Research Society Japan, 44 (2): 194–204, doi:10.15807/jorsj.44.194.
  • Nobili, P.; Sassano, A. (2015), An O(n^2 log n) algorithm for the weighted stable set problem in claw-free graphs, arXiv:1501.05775, Bibcode:2015arXiv150105775N
  • Robson, J. M. (1986), "Algorithms for maximum independent sets", Journal of Algorithms, 7 (3): 425–440, doi:10.1016/0196-6774(86)90032-5.
  • Sbihi, Najiba (1980), "Algorithme de recherche d'un stable de cardinalité maximum dans un graphe sans étoile", Discrete Mathematics (in French), 29 (1): 53–76, doi:10.1016/0012-365X(90)90287-R, MR 0553650.
  • Xiao, Mingyu; Nagamochi, Hiroshi (2017), "Exact algorithms for maximum independent set", Information and Computation, 255: 126–146, arXiv:1312.6260, doi:10.1016/j.ic.2017.06.001, S2CID 1714739.
  • Xiao, Mingyu; Nagamochi, Hiroshi (2013), "Confining sets and avoiding bottleneck cases: A simple maximum independent set algorithm in degree-3 graphs", Theoretical Computer Science, 469: 92–104, doi:10.1016/j.tcs.2012.09.022.
  • Tarjan, R.E. (1985), "Decomposition by clique separators", Discrete Mathematics, 55 (2): 221–232, doi:10.1016/0012-365x(85)90051-2.

External links edit

  • Weisstein, Eric W. "Maximal Independent Vertex Set". MathWorld.
  • Challenging Benchmarks for Maximum Clique, Maximum Independent Set, Minimum Vertex Cover and Vertex Coloring
  • Independent Set and Vertex Cover, Hanan Ayad.

independent, graph, theory, graph, theory, independent, stable, coclique, anticlique, vertices, graph, which, adjacent, that, displaystyle, vertices, such, that, every, vertices, displaystyle, there, edge, connecting, equivalently, each, edge, graph, most, end. In graph theory an independent set stable set coclique or anticlique is a set of vertices in a graph no two of which are adjacent That is it is a set S displaystyle S of vertices such that for every two vertices in S displaystyle S there is no edge connecting the two Equivalently each edge in the graph has at most one endpoint in S displaystyle S A set is independent if and only if it is a clique in the graph s complement The size of an independent set is the number of vertices it contains Independent sets have also been called internally stable sets of which stable set is a shortening 1 The nine blue vertices form a maximum independent set for the Generalized Petersen graph GP 12 4 A maximal independent set is an independent set that is not a proper subset of any other independent set A maximum independent set is an independent set of largest possible size for a given graph G displaystyle G This size is called the independence number of G displaystyle G and is usually denoted by a G displaystyle alpha G 2 The optimization problem of finding such a set is called the maximum independent set problem It is a strongly NP hard problem 3 As such it is unlikely that there exists an efficient algorithm for finding a maximum independent set of a graph Every maximum independent set also is maximal but the converse implication does not necessarily hold Contents 1 Properties 1 1 Relationship to other graph parameters 1 2 Maximal independent set 2 Finding independent sets 2 1 Maximum independent sets and maximum cliques 2 2 Exact algorithms 2 3 Approximation algorithms 2 3 1 In planar graphs 2 3 2 In bounded degree graphs 2 3 3 In interval intersection graphs 2 3 4 In geometric intersection graphs 2 3 5 In d claw free graphs 2 4 Finding maximal independent sets 2 5 Counting independent sets 3 Applications 4 See also 5 Notes 6 References 7 External linksProperties editRelationship to other graph parameters edit A set is independent if and only if it is a clique in the graph s complement so the two concepts are complementary In fact sufficiently large graphs with no large cliques have large independent sets a theme that is explored in Ramsey theory A set is independent if and only if its complement is a vertex cover 4 Therefore the sum of the size of the largest independent set a G displaystyle alpha G nbsp and the size of a minimum vertex cover b G displaystyle beta G nbsp is equal to the number of vertices in the graph A vertex coloring of a graph G displaystyle G nbsp corresponds to a partition of its vertex set into independent subsets Hence the minimal number of colors needed in a vertex coloring the chromatic number x G displaystyle chi G nbsp is at least the quotient of the number of vertices in G displaystyle G nbsp and the independent number a G displaystyle alpha G nbsp In a bipartite graph with no isolated vertices the number of vertices in a maximum independent set equals the number of edges in a minimum edge covering this is Konig s theorem Maximal independent set edit Main article Maximal independent set An independent set that is not a proper subset of another independent set is called maximal Such sets are dominating sets Every graph contains at most 3n 3 maximal independent sets 5 but many graphs have far fewer The number of maximal independent sets in n vertex cycle graphs is given by the Perrin numbers and the number of maximal independent sets in n vertex path graphs is given by the Padovan sequence 6 Therefore both numbers are proportional to powers of 1 324718 the plastic ratio Finding independent sets editFurther information Clique problem In computer science several computational problems related to independent sets have been studied In the maximum independent set problem the input is an undirected graph and the output is a maximum independent set in the graph If there are multiple maximum independent sets only one need be output This problem is sometimes referred to as vertex packing In the maximum weight independent set problem the input is an undirected graph with weights on its vertices and the output is an independent set with maximum total weight The maximum independent set problem is the special case in which all weights are one In the maximal independent set listing problem the input is an undirected graph and the output is a list of all its maximal independent sets The maximum independent set problem may be solved using as a subroutine an algorithm for the maximal independent set listing problem because the maximum independent set must be included among all the maximal independent sets In the independent set decision problem the input is an undirected graph and a number k and the output is a Boolean value true if the graph contains an independent set of size k and false otherwise The first three of these problems are all important in practical applications the independent set decision problem is not but is necessary in order to apply the theory of NP completeness to problems related to independent sets Maximum independent sets and maximum cliques edit The independent set problem and the clique problem are complementary a clique in G is an independent set in the complement graph of G and vice versa Therefore many computational results may be applied equally well to either problem For example the results related to the clique problem have the following corollaries The independent set decision problem is NP complete and hence it is not believed that there is an efficient algorithm for solving it The maximum independent set problem is NP hard and it is also hard to approximate Despite the close relationship between maximum cliques and maximum independent sets in arbitrary graphs the independent set and clique problems may be very different when restricted to special classes of graphs For instance for sparse graphs graphs in which the number of edges is at most a constant times the number of vertices in any subgraph the maximum clique has bounded size and may be found exactly in linear time 7 however for the same classes of graphs or even for the more restricted class of bounded degree graphs finding the maximum independent set is MAXSNP complete implying that for some constant c depending on the degree it is NP hard to find an approximate solution that comes within a factor of c of the optimum 8 Further information Clique problem Finding maximum cliques in arbitrary graphs Exact algorithms edit The maximum independent set problem is NP hard However it can be solved more efficiently than the O n2 2n time that would be given by a naive brute force algorithm that examines every vertex subset and checks whether it is an independent set As of 2017 it can be solved in time O 1 1996n using polynomial space 9 When restricted to graphs with maximum degree 3 it can be solved in time O 1 0836n 10 For many classes of graphs a maximum weight independent set may be found in polynomial time Famous examples are claw free graphs 11 P5 free graphs 12 and perfect graphs 13 For chordal graphs a maximum weight independent set can be found in linear time 14 Modular decomposition is a good tool for solving the maximum weight independent set problem the linear time algorithm on cographs is the basic example for that Another important tool are clique separators as described by Tarjan 15 Konig s theorem implies that in a bipartite graph the maximum independent set can be found in polynomial time using a bipartite matching algorithm Approximation algorithms edit In general the maximum independent set problem cannot be approximated to a constant factor in polynomial time unless P NP In fact Max Independent Set in general is Poly APX complete meaning it is as hard as any problem that can be approximated to a polynomial factor 16 However there are efficient approximation algorithms for restricted classes of graphs In planar graphs edit In planar graphs the maximum independent set may be approximated to within any approximation ratio c lt 1 in polynomial time similar polynomial time approximation schemes exist in any family of graphs closed under taking minors 17 In bounded degree graphs edit In bounded degree graphs effective approximation algorithms are known with approximation ratios that are constant for a fixed value of the maximum degree for instance a greedy algorithm that forms a maximal independent set by at each step choosing the minimum degree vertex in the graph and removing its neighbors achieves an approximation ratio of D 2 3 on graphs with maximum degree D 18 Approximation hardness bounds for such instances were proven in Berman amp Karpinski 1999 Indeed even Max Independent Set on 3 regular 3 edge colorable graphs is APX complete 19 In interval intersection graphs edit Main article Interval scheduling An interval graph is a graph in which the nodes are 1 dimensional intervals e g time intervals and there is an edge between two intervals if and only if they intersect An independent set in an interval graph is just a set of non overlapping intervals The problem of finding maximum independent sets in interval graphs has been studied for example in the context of job scheduling given a set of jobs that has to be executed on a computer find a maximum set of jobs that can be executed without interfering with each other This problem can be solved exactly in polynomial time using earliest deadline first scheduling In geometric intersection graphs edit Main article Maximum disjoint set A geometric intersection graph is a graph in which the nodes are geometric shapes and there is an edge between two shapes if and only if they intersect An independent set in a geometric intersection graph is just a set of disjoint non overlapping shapes The problem of finding maximum independent sets in geometric intersection graphs has been studied for example in the context of Automatic label placement given a set of locations in a map find a maximum set of disjoint rectangular labels near these locations Finding a maximum independent set in intersection graphs is still NP complete but it is easier to approximate than the general maximum independent set problem A recent survey can be found in the introduction of Chan amp Har Peled 2012 In d claw free graphs edit A d claw in a graph is a set of d 1 vertices one of which the center is connected to the other d vertices but the other d vertices are not connected to each other A d claw free graph is a graph that does not have a d claw subgraph Consider the algorithm that starts with an empty set and incrementally adds an arbitrary vertex to it as long as it is not adjacent to any existing vertex In d claw free graphs every added vertex invalidates at most d 1 vertices from the maximum independent set therefore this trivial algorithm attains a d 1 approximation algorithm for the maximum independent set In fact it is possible to get much better approximation ratios Neuwohner 20 presented a polynomial time algorithm that for any constant e gt 0 finds a d 2 1 63 700 992 e approximation for the maximum weight independent set in a d claw free graph Cygan 21 presented a quasi polynomial time algorithm that for any e gt 0 attains a d e 3 approximation Finding maximal independent sets edit Main article Maximal independent set The problem of finding a maximal independent set can be solved in polynomial time by a trivial parallel greedy algorithm 22 All maximal independent sets can be found in time O 3n 3 O 1 4423n Counting independent sets edit Unsolved problem in computer science Is there a fully polynomial time approximation algorithm for the number of independent sets in bipartite graphs more unsolved problems in computer science The counting problem IS asks given an undirected graph how many independent sets it contains This problem is intractable namely it is P complete already on graphs with maximal degree three 23 It is further known that assuming that NP is different from RP the problem cannot be tractably approximated in the sense that it does not have a fully polynomial time approximation scheme with randomization FPRAS even on graphs with maximal degree six 24 however it does have an fully polynomial time approximation scheme FPTAS in the case where the maximal degree is five 25 The problem BIS of counting independent sets on bipartite graphs is also P complete already on graphs with maximal degree three 26 It is not known whether BIS admits a FPRAS 27 Applications editThe maximum independent set and its complement the minimum vertex cover problem is involved in proving the computational complexity of many theoretical problems 28 They also serve as useful models for real world optimization problems for example maximum independent set is a useful model for discovering stable genetic components for designing engineered genetic systems 29 See also editAn independent set of edges is a set of edges of which no two have a vertex in common It is usually called a matching A vertex coloring is a partition of the vertex set into independent sets Notes edit Korshunov 1974 Godsil amp Royle 2001 p 3 Garey M R Johnson D S 1978 07 01 Strong NP Completeness Results Motivation Examples and Implications Journal of the ACM 25 3 499 508 doi 10 1145 322077 322090 ISSN 0004 5411 S2CID 18371269 Proof A set V of vertices is an independent set if and only if every edge in the graph is adjacent to at most one member of V if and only if every edge in the graph is adjacent to at least one member not in V if and only if the complement of V is a vertex cover Moon amp Moser 1965 Furedi 1987 Chiba amp Nishizeki 1985 Berman amp Fujito 1995 Xiao amp Nagamochi 2017 Xiao amp Nagamochi 2013 Minty 1980 Sbihi 1980 Nakamura amp Tamura 2001 Faenza Oriolo amp Stauffer 2014 Nobili amp Sassano 2015 Lokshtanov Vatshelle amp Villanger 2014 Grotschel Lovasz amp Schrijver 1988 Frank 1976 Tarjan 1985 Bazgan Cristina Escoffier Bruno Paschos Vangelis Th 2005 Completeness in standard and differential approximation classes Poly D APX and D PTAS completeness Theoretical Computer Science 339 2 3 272 292 doi 10 1016 j tcs 2005 03 007 S2CID 1418848 Baker 1994 Grohe 2003 Halldorsson amp Radhakrishnan 1997 Chlebik Miroslav Chlebikova Janka 2003 Approximation Hardness for Small Occurrence Instances of NP Hard Problems Algorithms and Complexity Lecture Notes in Computer Science Vol 2653 pp 152 164 doi 10 1007 3 540 44849 7 21 ISBN 978 3 540 40176 6 a href Template Cite book html title Template Cite book cite book a journal ignored help Neuwohner Meike 2021 06 07 An Improved Approximation Algorithm for the Maximum Weight Independent Set Problem in d Claw Free Graphs arXiv 2106 03545 a href Template Cite journal html title Template Cite journal cite journal a Cite journal requires journal help Cygan Marek October 2013 Improved Approximation for 3 Dimensional Matching via Bounded Pathwidth Local Search 2013 IEEE 54th Annual Symposium on Foundations of Computer Science pp 509 518 arXiv 1304 1424 doi 10 1109 FOCS 2013 61 ISBN 978 0 7695 5135 7 S2CID 14160646 Luby 1986 Dyer Martin Greenhill Catherine 2000 04 01 On Markov Chains for Independent Sets Journal of Algorithms 35 1 17 49 doi 10 1006 jagm 1999 1071 ISSN 0196 6774 Sly Allan 2010 Computational Transition at the Uniqueness Threshold 2010 IEEE 51st Annual Symposium on Foundations of Computer Science pp 287 296 doi 10 1109 FOCS 2010 34 ISBN 978 1 4244 8525 3 S2CID 901126 Bezakova Ivona Galanis Andreas Goldberg Leslie Ann Guo Heng Stefankovic Daniel 2019 Approximation via Correlation Decay When Strong Spatial Mixing Fails SIAM Journal on Computing 48 2 279 349 doi 10 1137 16M1083906 ISSN 0097 5397 S2CID 131975798 Xia Mingji Zhang Peng Zhao Wenbo 2007 09 24 Computational complexity of counting problems on 3 regular planar graphs Theoretical Computer Science Theory and Applications of Models of Computation 384 1 111 125 doi 10 1016 j tcs 2007 05 023 ISSN 0304 3975 quoted in Curticapean Radu Dell Holger Fomin Fedor Goldberg Leslie Ann Lapinskas John 2019 10 01 A Fixed Parameter Perspective on BIS Algorithmica 81 10 3844 3864 doi 10 1007 s00453 019 00606 4 ISSN 1432 0541 S2CID 3626662 Cannon Sarah Perkins Will 2020 Chawla Shuchi ed Proceedings of the Fourteenth Annual ACM SIAM Symposium on Discrete Algorithms Philadelphia PA Society for Industrial and Applied Mathematics arXiv 1906 01666 doi 10 1137 1 9781611975994 88 ISBN 978 1 61197 599 4 S2CID 174799567 Skiena Steven S 2012 The algorithm design manual Springer ISBN 978 1 84800 069 8 OCLC 820425142 Hossain Ayaan Lopez Eriberto Halper Sean M Cetnar Daniel P Reis Alexander C Strickland Devin Klavins Eric Salis Howard M 2020 07 13 Automated design of thousands of nonrepetitive parts for engineering stable genetic systems Nature Biotechnology 38 12 1466 1475 doi 10 1038 s41587 020 0584 2 ISSN 1546 1696 PMID 32661437 S2CID 220506228 References editBaker Brenda S 1994 Approximation algorithms for NP complete problems on planar graphs Journal of the ACM 41 1 153 180 doi 10 1145 174644 174650 S2CID 9706753 Berman Piotr Fujito Toshihiro 1995 On approximation properties of the Independent set problem for degree 3 graphs Algorithms and Data Structures Lecture Notes in Computer Science vol 955 Springer Verlag pp 449 460 doi 10 1007 3 540 60220 8 84 ISBN 978 3 540 60220 0 Berman Piotr Karpinski Marek 1999 On some tighter inapproximability results Automata Languages and Programming 26th International Colloquium ICALP 99 Prague Lecture Notes in Computer Science vol 1644 Prague Springer Verlag pp 200 209 doi 10 1007 3 540 48523 6 ISBN 978 3 540 66224 2 S2CID 23288736 Bourgeois Nicolas Escoffier Bruno Paschos Vangelis Th van Rooij Johan M M 2010 A bottom up method and fast algorithms for MAX INDEPENDENT SET Algorithm Theory SWAT 2010 Lecture Notes in Computer Science vol 6139 Berlin Springer pp 62 73 Bibcode 2010LNCS 6139 62B doi 10 1007 978 3 642 13731 0 7 ISBN 978 3 642 13730 3 MR 2678485 Chan T M 2003 Polynomial time approximation schemes for packing and piercing fat objects Journal of Algorithms 46 2 178 189 CiteSeerX 10 1 1 21 5344 doi 10 1016 s0196 6774 02 00294 8 Chan T M Har Peled S 2012 Approximation algorithms for maximum independent set of pseudo disks Discrete amp Computational Geometry 48 2 373 arXiv 1103 1431 CiteSeerX 10 1 1 219 2131 doi 10 1007 s00454 012 9417 5 S2CID 38183751 Chiba N Nishizeki T 1985 Arboricity and subgraph listing algorithms SIAM Journal on Computing 14 1 210 223 doi 10 1137 0214017 S2CID 207051803 Erlebach T Jansen K Seidel E 2005 Polynomial Time Approximation Schemes for Geometric Intersection Graphs SIAM Journal on Computing 34 6 1302 doi 10 1137 s0097539702402676 Faenza Yuri Oriolo Gianpaolo Stauffer Gautier 2014 Solving the Weighted Stable Set Problem in Claw Free Graphs Journal of the ACM 61 4 1 41 doi 10 1145 2629600 S2CID 1995056 Fomin Fedor V Grandoni Fabrizio Kratsch Dieter 2009 A measure amp conquer approach for the analysis of exact algorithms Journal of the ACM 56 5 1 32 doi 10 1145 1552285 1552286 S2CID 1186651 article no 25 a href Template Citation html title Template Citation citation a CS1 maint postscript link Frank Andras 1976 Some polynomial algorithms for certain graphs and hypergraphs Congressus Numerantium XV 211 226 Furedi Zoltan 1987 The number of maximal independent sets in connected graphs Journal of Graph Theory 11 4 463 470 doi 10 1002 jgt 3190110403 Godsil Chris Royle Gordon 2001 Algebraic Graph Theory New York Springer ISBN 978 0 387 95220 8 Grohe Martin 2003 Local tree width excluded minors and approximation algorithms Combinatorica 23 4 613 632 arXiv math 0001128 doi 10 1007 s00493 003 0037 9 S2CID 11751235 Grotschel M Lovasz L Schrijver A 1988 9 4 Coloring Perfect Graphs Geometric Algorithms and Combinatorial Optimization Algorithms and Combinatorics vol 2 Springer Verlag pp 296 298 ISBN 978 0 387 13624 0 Halldorsson M M Radhakrishnan J 1997 Greed is good Approximating independent sets in sparse and bounded degree graphs Algorithmica 18 1 145 163 CiteSeerX 10 1 1 145 4523 doi 10 1007 BF02523693 S2CID 4661668 Korshunov A D 1974 Coefficient of Internal Stability Kibernetika in Ukrainian 10 1 17 28 doi 10 1007 BF01069014 S2CID 120343511 Lokshtanov D Vatshelle M Villanger Y 2014 Independent sets in P5 free graphs in polynomial time SODA Symposium on Discrete Algorithms 570 581 Luby Michael 1986 A simple parallel algorithm for the maximal independent set problem SIAM Journal on Computing 15 4 1036 1053 CiteSeerX 10 1 1 225 5475 doi 10 1137 0215074 MR 0861369 Minty G J 1980 On maximal independent sets of vertices in claw free graphs Journal of Combinatorial Theory Series B 28 3 284 304 doi 10 1016 0095 8956 80 90074 x Moon J W Moser Leo 1965 On cliques in graphs Israel Journal of Mathematics 3 1 23 28 doi 10 1007 BF02760024 MR 0182577 S2CID 9855414 Nakamura D Tamura A 2001 A revision of Minty s algorithm for finding a maximum weight stable set in a claw free graph Journal of Operations Research Society Japan 44 2 194 204 doi 10 15807 jorsj 44 194 Nobili P Sassano A 2015 An O n 2 log n algorithm for the weighted stable set problem in claw free graphs arXiv 1501 05775 Bibcode 2015arXiv150105775N Robson J M 1986 Algorithms for maximum independent sets Journal of Algorithms 7 3 425 440 doi 10 1016 0196 6774 86 90032 5 Sbihi Najiba 1980 Algorithme de recherche d un stable de cardinalite maximum dans un graphe sans etoile Discrete Mathematics in French 29 1 53 76 doi 10 1016 0012 365X 90 90287 R MR 0553650 Xiao Mingyu Nagamochi Hiroshi 2017 Exact algorithms for maximum independent set Information and Computation 255 126 146 arXiv 1312 6260 doi 10 1016 j ic 2017 06 001 S2CID 1714739 Xiao Mingyu Nagamochi Hiroshi 2013 Confining sets and avoiding bottleneck cases A simple maximum independent set algorithm in degree 3 graphs Theoretical Computer Science 469 92 104 doi 10 1016 j tcs 2012 09 022 Tarjan R E 1985 Decomposition by clique separators Discrete Mathematics 55 2 221 232 doi 10 1016 0012 365x 85 90051 2 External links editWeisstein Eric W Maximal Independent Vertex Set MathWorld Challenging Benchmarks for Maximum Clique Maximum Independent Set Minimum Vertex Cover and Vertex Coloring Independent Set and Vertex Cover Hanan Ayad Retrieved from https en wikipedia org w index php title Independent set graph theory amp oldid 1189567742 Finding maximum independent sets, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.