P versus NP problem: Difference between revisions

From Wikipedia
Jump to navigation Jump to search
imported>Banedon
 
imported>Tbhotch
expired protection
 
Line 1: Line 1:
{{short description|Unsolved problem in computer science}}
{{short description|Unsolved problem in computer science}}
{{pp-move-indef}}
{{pp-move-indef}}
{{unsolved|computer science|If the solution to a problem is easy to check for correctness, must the problem be easy to solve?}}
{{unsolved|computer science|If the solution to a problem can be checked in polynomial time, must the problem be solvable in polynomial time?}}
{{Use dmy dates|date=October 2020}}
{{Use dmy dates|date=October 2020}}
{{Millennium Problems}}
{{Millennium Problems}}
Line 7: Line 7:
The '''P versus NP problem''' is a major [[List of unsolved problems in computer science|unsolved problem]] in [[theoretical computer science]]. Informally, it asks whether every problem whose solution can be quickly verified can also be quickly solved.
The '''P versus NP problem''' is a major [[List of unsolved problems in computer science|unsolved problem]] in [[theoretical computer science]]. Informally, it asks whether every problem whose solution can be quickly verified can also be quickly solved.


Here, "quickly" means an algorithm exists that solves the task and runs in [[polynomial time]] (as opposed to, say, [[exponential time]]), meaning the task completion time is [[upper bound|bounded above]] by a [[polynomial function]] on the size of the input to the algorithm. The general class of questions that some [[algorithm]] can answer in polynomial time is "[[P (complexity)|P]]" or "class P". For some questions, there is no known way to find an answer quickly, but if provided with an answer, it can be verified quickly. The class of questions where an answer can be ''verified'' in polynomial time is [[NP (complexity)|"NP"]], standing for "nondeterministic polynomial time".<ref group="Note">A [[nondeterministic Turing machine]] can move to a state that is not determined by the previous state. Such a machine could solve an NP problem in polynomial time by falling into the correct answer state (by luck), then conventionally verifying it. Such machines are not practical for solving realistic problems but can be used as theoretical models.</ref>
Here, "quickly" means an algorithm exists that solves the task and runs in [[polynomial time]] (as opposed to, say, [[exponential time]]), meaning the task completion time is [[upper bound|bounded above]] by a [[polynomial function]] on the size of the input to the algorithm. The general class of questions that some [[algorithm]] can answer in polynomial time is "[[P (complexity)|P]]" or "class P". For some questions, there is no known way to find an answer quickly, but if provided with an answer, it can be verified quickly. The class of questions where an answer can be ''verified'' in polynomial time is "[[NP (complexity)|NP]]", standing for "nondeterministic polynomial time".<ref group="Note">A [[nondeterministic Turing machine]] can move to a state that is not determined by the previous state. Such a machine could solve an NP problem in polynomial time by falling into the correct answer state (by luck), then conventionally verifying it. Such machines are not practical for solving realistic problems but can be used as theoretical models.</ref><ref>{{cite web |title=Explained: P vs. NP |url=https://news.mit.edu/2009/explainer-pnp |website=MIT News {{!}} Massachusetts Institute of Technology |access-date=6 March 2026 |language=en |date=29 October 2009}}</ref>


An answer to the P versus NP question would determine whether problems that can be verified in polynomial time can also be solved in polynomial time. If P&nbsp;≠&nbsp;NP, which is widely believed, it would mean that there are problems in NP that are harder to compute than to verify: they could not be solved in polynomial time, but the answer could be verified in polynomial time.
An answer to the P versus NP question would determine whether problems that can be verified in polynomial time can also be solved in polynomial time. If P&nbsp;≠&nbsp;NP, which is widely believed, it would mean that there are problems in NP that are harder to compute than to verify: they could not be solved in polynomial time, but the answer could be verified in polynomial time.


The problem has been called the most important open problem in [[computer science]].<ref>{{cite journal | last1 = Fortnow | first1 = Lance | author-link = Lance Fortnow | year = 2009 | title = The status of the P versus NP problem | url = http://www.cs.uchicago.edu/~fortnow/papers/pnp-cacm.pdf | journal = Communications of the ACM | volume = 52 | issue = 9 | pages = 78–86 | doi = 10.1145/1562164.1562186 | citeseerx = 10.1.1.156.767 | s2cid = 5969255 | access-date = 26 January 2010 | archive-url = https://wayback.archive-it.org/all/20110224135332/http://www.cs.uchicago.edu/~fortnow/papers/pnp-cacm.pdf | archive-date = 24 February 2011 }}</ref> Aside from being an important problem in [[computational theory]], a proof either way would have profound implications for mathematics, [[cryptography]], algorithm research, [[artificial intelligence]], [[game theory]], multimedia processing, [[philosophy]], [[economics]] and many other fields.<ref>{{Cite book|title=The Golden Ticket: P, NP, and the Search for the Impossible|last=Fortnow|first=Lance|publisher=Princeton University Press|year=2013|isbn=9780691156491|location=Princeton, NJ}}</ref>
The problem has been called the most important open problem in [[computer science]].<ref>{{cite journal | last1 = Fortnow | first1 = Lance | author-link = Lance Fortnow | year = 2009 | title = The status of the P versus NP problem | url = http://www.cs.uchicago.edu/~fortnow/papers/pnp-cacm.pdf | journal = Communications of the ACM | volume = 52 | issue = 9 | pages = 78–86 | doi = 10.1145/1562164.1562186 | citeseerx = 10.1.1.156.767 | s2cid = 5969255 | access-date = 26 January 2010 | archive-url = https://wayback.archive-it.org/all/20110224135332/http://www.cs.uchicago.edu/~fortnow/papers/pnp-cacm.pdf | archive-date = 24 February 2011 }}</ref> Aside from being an important problem in [[computational theory]], a proof either way would have profound implications for mathematics, [[cryptography]], algorithm research, [[artificial intelligence]], [[game theory]], multimedia processing, [[philosophy]], [[economics]] and many other fields.<ref>{{Cite book|title=The Golden Ticket: P, NP, and the Search for the Impossible|last=Fortnow|first=Lance|publisher=Princeton University Press|year=2013|isbn=9780691156491|location=Princeton, NJ}}</ref> It is one of the seven [[Millennium Prize Problems]] selected by the [[Clay Mathematics Institute]], each of which carries a US$1,000,000 prize for the first correct solution.
 
It is one of the seven [[Millennium Prize Problems]] selected by the [[Clay Mathematics Institute]], each of which carries a US$1,000,000 prize for the first correct solution.


== Example ==
== Example ==
Consider the following yes/no problem: given an incomplete [[Sudoku]] grid of size <math>n^2 \times n^2</math>, is there at least one legal solution where every row, column, and <math>n \times n</math> square contains the integers 1 through <math>n^2</math>? It is straightforward to verify "yes" instances of this generalized Sudoku problem given a candidate solution. However, it is not known whether there is a polynomial-time algorithm that can correctly answer "yes" or "no" to all instances of this problem. Therefore, generalized Sudoku is in NP (quickly verifiable), but may or may not be in P (quickly solvable). (It is necessary to consider a generalized version of Sudoku, as any fixed size Sudoku has only a finite number of possible grids. In this case the problem is in P, as the answer can be found by table lookup.)
Consider the following yes/no problem: given an incomplete [[Sudoku]] grid of size <math>n^2 \times n^2</math>, is there at least one legal solution where every row, column, and <math>n \times n</math> square contains the integers 1 through <math>n^2</math>? It is straightforward to verify "yes" instances of this generalized Sudoku problem given a candidate solution. However, it is not known whether there is a polynomial-time algorithm that can correctly answer "yes" or "no" to all instances of this problem. Therefore, generalized Sudoku is in NP (quickly verifiable), but may or may not be in P (quickly solvable). (It is necessary to consider a generalized version of Sudoku, as any fixed size Sudoku has only a finite number of possible grids. In this case the problem is in P, as the answer can be found by table lookup.)


==History==
==History==


The precise statement of the P versus NP problem was introduced in 1971 by [[Stephen Cook]] in his seminal paper "The complexity of theorem proving procedures"<ref>{{Cite book|last=Cook|first=Stephen|author-link=Stephen Cook|year=1971|chapter=The complexity of theorem proving procedures|chapter-url=http://portal.acm.org/citation.cfm?coll=GUIDE&dl=GUIDE&id=805047|title=Proceedings of the Third Annual ACM Symposium on Theory of Computing|pages=151–158|doi=10.1145/800157.805047|isbn=9781450374644|s2cid=7573663}}</ref> (and independently by [[Leonid Levin]] in 1973<ref>{{cite journal |author=L. A. Levin |url=http://www.mathnet.ru/php/archive.phtml?wshow=paper&jrnid=ppi&paperid=914&option_lang=rus |script-title=ru:Универсальные задачи перебора |trans-title=Problems of Information Transmission |journal=Пробл. передачи информ |date=1973 |volume=9 |number=3 |pages=115–116 |language=ru}}</ref>).
The precise statement of the P versus NP problem was introduced in 1971 by [[Stephen Cook]] in his seminal paper "The complexity of theorem proving procedures",<ref>{{Cite book|last=Cook|first=Stephen|author-link=Stephen Cook|year=1971|chapter=The complexity of theorem proving procedures|chapter-url=http://portal.acm.org/citation.cfm?coll=GUIDE&dl=GUIDE&id=805047|title=Proceedings of the Third Annual ACM Symposium on Theory of Computing|pages=151–158|doi=10.1145/800157.805047|isbn=9781450374644|s2cid=7573663}}</ref> and independently by [[Leonid Levin]] in 1973.<ref>{{cite journal |author=Levin |first=L. A. |date=1973 |title= |script-title=ru:Универсальные задачи перебора |trans-title=Problems of Information Transmission |url=http://www.mathnet.ru/php/archive.phtml?wshow=paper&jrnid=ppi&paperid=914&option_lang=rus |journal=Пробл. Передачи Информ |language=ru |volume=9 |pages=115–116 |number=3}}</ref>


Although the P versus NP problem was formally defined in 1971, there were previous inklings of the problems involved, the difficulty of proof, and the potential consequences. In 1955, mathematician [[John Forbes Nash Jr.|John Nash]] wrote a letter to the [[National Security Agency]], speculating that the time required to crack a sufficiently complex code would increase exponentially with the length of the key.<ref>{{cite web |title=Letters from John Nash |url=https://www.nsa.gov/Portals/70/documents/news-features/declassified-documents/nash-letters/nash_letters1.pdf |archive-url=https://web.archive.org/web/20181109234811/https://www.nsa.gov/Portals/70/documents/news-features/declassified-documents/nash-letters/nash_letters1.pdf |archive-date=2018-11-09 |url-status=live |author=NSA |year=2012}}</ref> If proved (and Nash was suitably skeptical), this would imply what is now called P&nbsp;≠&nbsp;NP, since a proposed key can be verified in polynomial time. Another mention of the underlying problem occurred in a 1956 letter written by [[Kurt Gödel]] to [[John von Neumann]]. Gödel asked whether theorem-proving (now known to be [[co-NP-complete]]) could be solved in [[quadratic time|quadratic]] or [[linear time]],<ref>{{cite journal | last1 = Hartmanis | first1 = Juris | title = Gödel, von Neumann, and the P = NP problem | url = http://ecommons.library.cornell.edu/bitstream/1813/6910/1/89-994.pdf | journal = Bulletin of the European Association for Theoretical Computer Science | volume = 38 | pages = 101–107 }}</ref> and pointed out one of the most important consequences&mdash;that if so, then the discovery of mathematical proofs could be automated.
Although the P versus NP problem was formally defined in 1971, there were previous inklings of the underlying problems involved. In 1955, mathematician [[John Forbes Nash Jr.|John Nash]] wrote a letter to the [[National Security Agency]], speculating that the time required to crack a sufficiently complex code would increase exponentially with the length of the key.<ref>{{cite web |title=Letters from John Nash |url=https://www.nsa.gov/Portals/70/documents/news-features/declassified-documents/nash-letters/nash_letters1.pdf |archive-url=https://web.archive.org/web/20181109234811/https://www.nsa.gov/Portals/70/documents/news-features/declassified-documents/nash-letters/nash_letters1.pdf |archive-date=2018-11-09 |url-status=live |author=NSA |year=2012}}</ref> If proved (and Nash was skeptical), this would imply what is now called P&nbsp;≠&nbsp;NP, since a proposed key can be verified in polynomial time. In a 1956 letter written by [[Kurt Gödel]] to [[John von Neumann]], Gödel asked whether theorem-proving (now known to be [[co-NP-complete]]) could be solved in [[quadratic time|quadratic]] or [[linear time]],<ref>{{cite journal | last1 = Hartmanis | first1 = Juris | title = Gödel, von Neumann, and the P = NP problem | url = https://ecommons.library.cornell.edu/bitstream/1813/6910/1/89-994.pdf | journal = Bulletin of the European Association for Theoretical Computer Science | volume = 38 | pages = 101–107 }}</ref> and posited that if so, then the discovery of mathematical proofs could be automated.


==Context==
==Context==
Line 32: Line 30:
:Is P equal to NP?
:Is P equal to NP?


Since 2002, [[William Gasarch]] has conducted three polls of researchers concerning this and related questions.<ref name="poll">{{Cite journal|author=William I. Gasarch| author1-link=William Gasarch | title=The P=?NP poll.|journal=[[SIGACT News]]|volume=33|issue=2|pages=34–47|date=June 2002| url=http://www.cs.umd.edu/~gasarch/papers/poll.pdf |archive-url=https://web.archive.org/web/20070615132837/http://www.cs.umd.edu/~gasarch/papers/poll.pdf |archive-date=2007-06-15 |url-status=live|doi=10.1145/564585.564599| citeseerx=10.1.1.172.1005 | s2cid=36828694 }}</ref><ref name="poll2">{{Cite journal|author=William I. Gasarch| author1-link=William Gasarch | title=The Second P=?NP poll|journal=SIGACT News|volume=74|url=http://www.cs.umd.edu/~gasarch/papers/poll2012.pdf |archive-url=https://web.archive.org/web/20140124031930/http://www.cs.umd.edu/~gasarch/papers/poll2012.pdf |archive-date=2014-01-24 |url-status=live}}</ref><ref name="poll3">{{Cite web|url=https://www.cs.umd.edu/users/gasarch/BLOGPAPERS/pollpaper3.pdf |archive-url=https://web.archive.org/web/20190331023850/https://www.cs.umd.edu/users/gasarch/BLOGPAPERS/pollpaper3.pdf |archive-date=2019-03-31 |url-status=live|title=Guest Column: The Third P =? NP Poll1|access-date=25 May 2020}}</ref> Confidence that P&nbsp;≠&nbsp;NP has been increasing – in 2019, 88% believed P&nbsp;≠&nbsp;NP, as opposed to 83% in 2012 and 61% in 2002. When restricted to experts, the 2019 answers became 99% believed P&nbsp;≠&nbsp;NP.<ref name="poll3" /> These polls do not imply whether P&nbsp;=&nbsp;NP, Gasarch himself stated: "This does not bring us any closer to solving P=?NP or to knowing when it will be solved, but it attempts to be an objective report on the subjective opinion of this era."
Since 2001, [[William Gasarch]] has conducted three polls of researchers concerning P&nbsp;≠&nbsp;NP and related questions.<ref name="poll">{{Cite journal |author=Gasarch |first=William I. |author1-link=William Gasarch |date=June 2002 |title=The P=?NP poll. |url=http://www.cs.umd.edu/~gasarch/papers/poll.pdf |url-status=live |journal=[[SIGACT News]] |volume=33 |issue=2 |pages=34–47 |citeseerx=10.1.1.172.1005 |doi=10.1145/564585.564599 |s2cid=36828694 |archive-url=https://web.archive.org/web/20070615132837/http://www.cs.umd.edu/~gasarch/papers/poll.pdf |archive-date=2007-06-15}}</ref><ref name="poll2">{{Cite journal |author=Gasarch |first=William I. |author1-link=William Gasarch |title=The Second P=?NP poll |url=http://www.cs.umd.edu/~gasarch/papers/poll2012.pdf |url-status=live |journal=SIGACT News |volume=74 |archive-url=https://web.archive.org/web/20140124031930/http://www.cs.umd.edu/~gasarch/papers/poll2012.pdf |archive-date=2014-01-24}}</ref><ref name="poll3">{{Cite web|url=https://www.cs.umd.edu/users/gasarch/BLOGPAPERS/pollpaper3.pdf |archive-url=https://web.archive.org/web/20190331023850/https://www.cs.umd.edu/users/gasarch/BLOGPAPERS/pollpaper3.pdf |archive-date=2019-03-31 |url-status=live|title=Guest Column: The Third P =? NP Poll1|access-date=25 May 2020}}</ref> The share of responders believing that P&nbsp;≠&nbsp;NP was 61% in 2001,{{refn|group=Note|The polls were conducted in 2001, 2011, and 2018 but published in 2002, 2012, and 2019 respectively.<ref name="poll3" />}} 83% in 2011, and 88% in 2018, with 100, 151, and 124 responses, respectively.<ref name="poll3" /> When restricted to experts, 99% of 2018 responders believed P&nbsp;≠&nbsp;NP.<ref name="poll3" /> These polls do not imply whether P&nbsp;=&nbsp;NP; as Gasarch stated: "This does not bring us any closer to solving P=?NP or to knowing when it will be solved, but it attempts to be an objective report on the subjective opinion of this era."<ref name="poll"/>


==NP-completeness==
==NP-completeness==
Line 43: Line 41:
For instance, the [[Boolean satisfiability problem]] is NP-complete by the [[Cook–Levin theorem]], so ''any'' instance of ''any'' problem in NP can be transformed mechanically into a Boolean satisfiability problem in polynomial time. The Boolean satisfiability problem is one of many NP-complete problems. If any NP-complete problem is in P, then it would follow that P&nbsp;=&nbsp;NP. However, many important problems are NP-complete, and no fast algorithm for any of them is known.
For instance, the [[Boolean satisfiability problem]] is NP-complete by the [[Cook–Levin theorem]], so ''any'' instance of ''any'' problem in NP can be transformed mechanically into a Boolean satisfiability problem in polynomial time. The Boolean satisfiability problem is one of many NP-complete problems. If any NP-complete problem is in P, then it would follow that P&nbsp;=&nbsp;NP. However, many important problems are NP-complete, and no fast algorithm for any of them is known.


From the definition alone it is unintuitive that NP-complete problems exist; however, a trivial NP-complete problem can be formulated as follows: given a [[Turing machine]] ''M'' guaranteed to halt in polynomial time, does a polynomial-size input that ''M'' will accept exist?<ref name="Scott">{{Cite web|author=Scott Aaronson|title=PHYS771 Lecture 6: P, NP, and Friends|url=http://www.scottaaronson.com/democritus/lec6.html |access-date=27 August 2007}}</ref> It is in NP because (given an input) it is simple to check whether ''M'' accepts the input by simulating ''M''; it is NP-complete because the verifier for any particular instance of a problem in NP can be encoded as a polynomial-time machine ''M'' that takes the solution to be verified as input. Then the question of whether the instance is a yes or no instance is determined by whether a valid input exists.
From the definition alone it is unintuitive that NP-complete problems exist; however, a trivial NP-complete problem can be formulated as follows: given a [[Turing machine]] ''M'' guaranteed to halt in polynomial time, does a polynomial-size input that ''M'' will accept exist?<ref name="Scott">{{Cite web |author=Aaronson |first=Scott |title=PHYS771 Lecture 6: P, NP, and Friends |url=http://www.scottaaronson.com/democritus/lec6.html |access-date=27 August 2007}}</ref> It is in NP because (given an input) it is simple to check whether ''M'' accepts the input by simulating ''M''; it is NP-complete because the verifier for any particular instance of a problem in NP can be encoded as a polynomial-time machine ''M'' that takes the solution to be verified as input. Then the question of whether the instance is a yes or no instance is determined by whether a valid input exists.


The first natural problem proven to be NP-complete was the Boolean satisfiability problem, also known as SAT. As noted above, this is the Cook–Levin theorem; its proof that satisfiability is NP-complete contains technical details about Turing machines as they relate to the definition of NP. However, after this problem was proved to be NP-complete, [[reduction (complexity)|proof by reduction]] provided a simpler way to show that many other problems are also NP-complete, including the game Sudoku discussed earlier. In this case, the proof shows that a solution of Sudoku in polynomial time could also be used to complete [[Latin square]]s in polynomial time.<ref>{{Cite web|url=http://www.cs.ox.ac.uk/people/paul.goldberg/FCS/sudoku.html|title=MSc course: Foundations of Computer Science|website=www.cs.ox.ac.uk|access-date=25 May 2020}}</ref> This in turn gives a solution to the problem of partitioning [[multipartite graph|tri-partite graphs]] into triangles,<ref>{{cite journal |author=Colbourn, Charles J. |title=The complexity of completing partial Latin squares |journal=Discrete Applied Mathematics |volume=8 |issue=1 |year=1984 |pages=25–30 |doi=10.1016/0166-218X(84)90075-1 |doi-access=free }}</ref> which could then be used to find solutions for the special case of SAT known as 3-SAT,<ref>{{cite journal |author=I. Holyer |title=The NP-completeness of some edge-partition problems |journal=SIAM J. Comput. |volume=10 |year=1981 |issue=4 |pages=713&ndash;717|doi=10.1137/0210054 }}</ref> which then provides a solution for general Boolean satisfiability. So a polynomial-time solution to Sudoku leads, by a series of mechanical transformations, to a polynomial time solution of satisfiability, which in turn can be used to solve any other NP-problem in polynomial time. Using transformations like this, a vast class of seemingly unrelated problems are all reducible to one another, and are in a sense "the same problem".
The first natural problem proven to be NP-complete was the Boolean satisfiability problem, also known as SAT. As noted above, this is the Cook–Levin theorem; its proof that satisfiability is NP-complete contains technical details about Turing machines as they relate to the definition of NP. However, after this problem was proved to be NP-complete, [[reduction (complexity)|proof by reduction]] provided a simpler way to show that many other problems are also NP-complete, including the game Sudoku discussed earlier. In this case, the proof shows that a solution of Sudoku in polynomial time could also be used to complete [[Latin square]]s in polynomial time.<ref>{{Cite web|url=http://www.cs.ox.ac.uk/people/paul.goldberg/FCS/sudoku.html|title=MSc course: Foundations of Computer Science|website=www.cs.ox.ac.uk|access-date=25 May 2020}}</ref> This in turn gives a solution to the problem of partitioning [[multipartite graph|tri-partite graphs]] into triangles,<ref>{{cite journal |author=Colbourn, Charles J. |title=The complexity of completing partial Latin squares |journal=Discrete Applied Mathematics |volume=8 |issue=1 |year=1984 |pages=25–30 |doi=10.1016/0166-218X(84)90075-1 |doi-access=free }}</ref> which could then be used to find solutions for the special case of SAT known as 3-SAT,<ref>{{cite journal |author=Holyer |first=I. |year=1981 |title=The NP-completeness of some edge-partition problems |journal=SIAM J. Comput. |volume=10 |issue=4 |pages=713&ndash;717 |doi=10.1137/0210054}}</ref> which then provides a solution for general Boolean satisfiability. So a polynomial-time solution to Sudoku leads, by a series of mechanical transformations, to a polynomial time solution of satisfiability, which in turn can be used to solve any other NP-problem in polynomial time. Using transformations like this, a vast class of seemingly unrelated problems are all reducible to one another, and are in a sense "the same problem".


==Harder problems==
==Harder problems==
{{See also|Complexity class}}
{{See also|Complexity class}}


Although it is unknown whether P&nbsp;=&nbsp;NP, problems outside of P are known. Just as the class P is defined in terms of polynomial running time, the class [[EXPTIME]] is the set of all decision problems that have ''exponential'' running time. In other words, any problem in EXPTIME is solvable by a [[deterministic Turing machine]] in [[big O notation|O]](2<sup>''p''(''n'')</sup>) time, where ''p''(''n'') is a polynomial function of ''n''. A decision problem is [[EXPTIME#EXPTIME-complete|EXPTIME-complete]] if it is in EXPTIME, and every problem in EXPTIME has a [[polynomial-time many-one reduction]] to it. A number of problems are known to be EXPTIME-complete. Because it can be shown that P&nbsp;≠&nbsp;EXPTIME, these problems are outside P, and so require more than polynomial time. In fact, by the [[time hierarchy theorem]], they cannot be solved in significantly less than exponential time. Examples include finding a perfect strategy for [[chess]] positions on an ''N'' × ''N'' board<ref name="Fraenkel1981">{{Cite journal| author = [[Aviezri Fraenkel]] and D. Lichtenstein| title = Computing a perfect strategy for ''n'' × ''n'' chess requires time exponential in ''n''| journal = [[Journal of Combinatorial Theory]] | series=Series A | volume = 31| issue = 2| year = 1981| pages = 199–214 | doi = 10.1016/0097-3165(81)90016-9| doi-access = }}</ref> and similar problems for other board games.<ref>{{Cite web|title=Computational Complexity of Games and Puzzles |url=http://www.ics.uci.edu/~eppstein/cgt/hard.html |author=[[David Eppstein]]}}</ref>
Although it is unknown whether P&nbsp;=&nbsp;NP, problems outside of P are known. Just as the class P is defined in terms of polynomial running time, the class [[EXPTIME]] is the set of all decision problems that have ''exponential'' running time. In other words, any problem in EXPTIME is solvable by a [[deterministic Turing machine]] in [[big O notation|O]](2<sup>''p''(''n'')</sup>) time, where ''p''(''n'') is a polynomial function of ''n''. A decision problem is [[EXPTIME#EXPTIME-complete|EXPTIME-complete]] if it is in EXPTIME, and every problem in EXPTIME has a [[polynomial-time many-one reduction]] to it. A number of problems are known to be EXPTIME-complete. Because it can be shown that P&nbsp;≠&nbsp;EXPTIME, these problems are outside P, and so require more than polynomial time. In fact, by the [[time hierarchy theorem]], they cannot be solved in significantly less than exponential time. Examples include finding a perfect strategy for [[chess]] positions on an ''N'' × ''N'' board<ref name="Fraenkel1981">{{Cite journal |author=Fraenkel |first1=Aviezri |author-link1=Aviezri Fraenkel |last2=Lichtenstein |first2=D. |year=1981 |title=Computing a perfect strategy for ''n'' × ''n'' chess requires time exponential in ''n'' |journal=[[Journal of Combinatorial Theory]] |series=Series A |volume=31 |issue=2 |pages=199–214 |doi=10.1016/0097-3165(81)90016-9 |doi-access=}}</ref> and similar problems for other board games.<ref>{{Cite web |author=Eppstein |first=David |author-link=David Eppstein |title=Computational Complexity of Games and Puzzles |url=http://www.ics.uci.edu/~eppstein/cgt/hard.html}}</ref>


The problem of deciding the truth of a statement in [[Presburger arithmetic]] requires even more time. [[Michael J. Fischer|Fischer]] and [[Michael O. Rabin|Rabin]] proved in 1974<ref>{{cite journal | first1=Michael J. | last1=Fischer | author-link1=Michael J. Fischer | first2=Michael O. | last2=Rabin | author-link2=Michael O. Rabin | date=1974 | title=Super-Exponential Complexity of Presburger Arithmetic | url=http://www.lcs.mit.edu/publications/pubs/ps/MIT-LCS-TM-043.ps | journal=Proceedings of the SIAM-AMS Symposium in Applied Mathematics | volume=7 | pages=27–41| access-date=15 October 2017 | archive-url=https://web.archive.org/web/20060915010325/http://www.lcs.mit.edu/publications/pubs/ps/MIT-LCS-TM-043.ps | archive-date=15 September 2006 }}</ref> that every algorithm that decides the truth of Presburger statements of length ''n'' has a runtime of at least <math>2^{2^{cn}}</math> for some constant ''c''. Hence, the problem is known to need more than exponential run time. Even more difficult are the [[undecidable problem]]s, such as the [[halting problem]]. They cannot be completely solved by any algorithm, in the sense that for any particular algorithm there is at least one input for which that algorithm will not produce the right answer; it will either produce the wrong answer, finish without giving a conclusive answer, or otherwise run forever without producing any answer at all.
The problem of deciding the truth of a statement in [[Presburger arithmetic]] requires even more time. [[Michael J. Fischer|Fischer]] and [[Michael O. Rabin|Rabin]] proved in 1974<ref>{{cite journal | first1=Michael J. | last1=Fischer | author-link1=Michael J. Fischer | first2=Michael O. | last2=Rabin | author-link2=Michael O. Rabin | date=1974 | title=Super-Exponential Complexity of Presburger Arithmetic | url=http://www.lcs.mit.edu/publications/pubs/ps/MIT-LCS-TM-043.ps | journal=Proceedings of the SIAM-AMS Symposium in Applied Mathematics | volume=7 | pages=27–41| access-date=15 October 2017 | archive-url=https://web.archive.org/web/20060915010325/http://www.lcs.mit.edu/publications/pubs/ps/MIT-LCS-TM-043.ps | archive-date=15 September 2006 }}</ref> that every algorithm that decides the truth of Presburger statements of length ''n'' has a runtime of at least <math>2^{2^{cn}}</math> for some constant ''c''. Hence, the problem is known to need more than exponential run time. Even more difficult are the [[undecidable problem]]s, such as the [[halting problem]]. They cannot be completely solved by any algorithm, in the sense that for any particular algorithm there is at least one input for which that algorithm will not produce the right answer; it will either produce the wrong answer, finish without giving a conclusive answer, or otherwise run forever without producing any answer at all.


It is also possible to consider questions other than decision problems. One such class, consisting of counting problems, is called [[Sharp-P#P|#P]]: whereas an NP problem asks "Are there any solutions?", the corresponding #P problem asks "How many solutions are there?". Clearly, a #P problem must be at least as hard as the corresponding NP problem, since a count of solutions immediately tells if at least one solution exists, if the count is greater than zero. Surprisingly, some #P problems that are believed to be difficult correspond to easy (for example linear-time) P problems.<ref>{{cite journal |author=Valiant, Leslie G. |title=The complexity of enumeration and reliability problems |journal=SIAM Journal on Computing |volume=8 |issue=3 |year=1979 |pages=410–421 |doi=10.1137/0208032}}</ref> For these problems, it is very easy to tell whether solutions exist, but thought to be very hard to tell how many. Many of these problems are [[Sharp-P-complete|#P-complete]], and hence among the hardest problems in #P, since a polynomial time solution to any of them would allow a polynomial time solution to all other #P problems.
It is also possible to consider questions other than decision problems. One such class, consisting of counting problems, is called [[Sharp-P#P|#P]]: whereas an NP problem asks "Are there any solutions?", the corresponding #P problem asks "How many solutions are there?". Clearly, a #P problem must be at least as hard as the corresponding NP problem, since a count of solutions immediately tells if at least one solution exists, if the count is greater than zero. Surprisingly, some #P problems that are believed to be difficult correspond to easy (for example linear-time) P problems.<ref>{{cite journal |author=Valiant, Leslie G. |title=The complexity of enumeration and reliability problems |journal=SIAM Journal on Computing |volume=8 |issue=3 |year=1979 |pages=410–421 |doi=10.1137/0208032}}</ref> For these problems, it is very easy to tell whether solutions exist, but thought to be very hard to tell how many. Many of these problems are [[Sharp-P-complete|#P-complete]], and hence among the hardest problems in #P, since a polynomial time solution to any of them would allow a polynomial time solution to all other #P problems.


==Problems in NP not known to be in P or NP-complete==
==Problems in NP not known to be in P or NP-complete==
{{Main article|NP-intermediate|l1=NP-intermediate}}
{{Main article|NP-intermediate|l1 = NP-intermediate}}
 
In 1975, [[Richard E. Ladner]] showed that if P&nbsp;≠&nbsp;NP, then there exist problems in NP that are neither in P nor NP-complete.<ref name="Ladner75" /> Such problems are called NP-intermediate problems. The [[graph isomorphism problem]], the [[discrete logarithm problem]], and the [[integer factorization problem]] are examples of problems believed to be NP-intermediate. They are some of the very few NP problems not known to be in P or to be NP-complete.
In 1975, [[Richard E. Ladner]] showed that if P&nbsp;≠&nbsp;NP, then there exist problems in NP that are neither in P nor NP-complete.<ref name="Ladner75" /> Such problems are called NP-intermediate problems. The [[graph isomorphism problem]], the [[discrete logarithm problem]], and the [[integer factorization problem]] are examples of problems believed to be NP-intermediate. They are some of the very few NP problems not known to be in P or to be NP-complete.


Line 81: Line 80:
to factor an ''n''-bit integer. The best known [[quantum algorithm]] for this problem, [[Shor's algorithm]], runs in polynomial time, although this does not indicate where the problem lies with respect to non-[[quantum complexity theory|quantum complexity classes]].
to factor an ''n''-bit integer. The best known [[quantum algorithm]] for this problem, [[Shor's algorithm]], runs in polynomial time, although this does not indicate where the problem lies with respect to non-[[quantum complexity theory|quantum complexity classes]].


==Does P mean "easy"?==
==Comparison of P with "easy" problems==
[[File:KnapsackEmpComplexity.GIF|thumb|310 px|The graph shows the running time vs. problem size for a [[knapsack problem]] of a state-of-the-art, specialized algorithm. The [[Curve fitting|quadratic fit]] suggests that the algorithmic complexity of the problem is O((log(''n''))<sup>2</sup>).<ref name=Pisinger2003>Pisinger, D. 2003. "Where are the hard knapsack problems?" Technical Report 2003/08, Department of Computer Science, University of Copenhagen, Copenhagen, Denmark</ref>]]
[[File:KnapsackEmpComplexity.GIF|thumb|310 px|The graph shows the running time vs. problem size for a [[knapsack problem]] of a state-of-the-art, specialized algorithm. The [[Curve fitting|quadratic fit]] suggests that the algorithmic complexity of the problem is O((log(''n''))<sup>2</sup>).<ref name=Pisinger2003>Pisinger, D. 2003. "Where are the hard knapsack problems?" Technical Report 2003/08, Department of Computer Science, University of Copenhagen, Copenhagen, Denmark</ref>]]
All of the above discussion has assumed that P means "easy" and "not in P" means "difficult", an assumption known as ''[[Cobham's thesis]]''. It is a common assumption in complexity theory; but there are caveats.
All of the above discussion has assumed that P means "easy" and "not in P" means "difficult", an assumption known as ''[[Cobham's thesis]]''. It is a common assumption in complexity theory; but there are caveats.


First, it can be false in practice. A theoretical polynomial algorithm may have extremely large constant factors or exponents, rendering it impractical. For example, the problem of [[decision problem|deciding]] whether a graph ''G'' contains ''H'' as a [[graph minor|minor]], where ''H'' is fixed, can be solved in a running time of ''O''(''n''<sup>2</sup>),<ref name="kkr12">{{cite journal |last1=Kawarabayashi | first1=Ken-ichi |last2=Kobayashi | first2=Yusuke |last3=Reed | first3=Bruce | authorlink3=Bruce Reed (mathematician) |year=2012 |title=The disjoint paths problem in quadratic time |journal=[[Journal of Combinatorial Theory]] | series=Series B |volume=102 |issue=2 |pages=424–435|doi=10.1016/j.jctb.2011.07.004 |doi-access=free }}</ref> where ''n'' is the number of vertices in ''G''. However, the [[big O notation]] hides a constant that depends superexponentially on ''H''. The constant is greater than <math> 2 \uparrow \uparrow (2 \uparrow \uparrow (2 \uparrow \uparrow (h/2) ) ) </math> (using [[Knuth's up-arrow notation]]), and where ''h'' is the number of vertices in ''H''.<ref>{{cite journal |author=Johnson, David S. |title=The NP-completeness column: An ongoing guide (edition 19) |journal= Journal of Algorithms |volume=8 |issue=2 |year=1987 |pages=285–303 |citeseerx=10.1.1.114.3864 |doi=10.1016/0196-6774(87)90043-5 }}</ref>
First, it can be false in practice. A theoretical polynomial algorithm may have extremely large constant factors or exponents, rendering it impractical. For example, the problem of [[decision problem|deciding]] whether a graph ''G'' contains ''H'' as a [[graph minor|minor]], where ''H'' is fixed, can be solved in a running time of ''O''(''n''<sup>2</sup>),<ref name="kkr12">{{cite journal |last1=Kawarabayashi | first1=Ken-ichi |last2=Kobayashi | first2=Yusuke |last3=Reed | first3=Bruce | authorlink3=Bruce Reed (mathematician) |year=2012 |title=The disjoint paths problem in quadratic time |journal=[[Journal of Combinatorial Theory]] | series=Series B |volume=102 |issue=2 |pages=424–435|doi=10.1016/j.jctb.2011.07.004 |doi-access=free }}</ref> where ''n'' is the number of vertices in ''G''. However, the [[big O notation]] hides a constant that depends superexponentially on ''H''. The constant is greater than <math> 2 \uparrow \uparrow (2 \uparrow \uparrow (2 \uparrow \uparrow (h/2) ) ) </math> (using [[Knuth's up-arrow notation]]), and where ''h'' is the number of vertices in ''H''.<ref>{{cite journal |author=Johnson, David S. |title=The NP-completeness column: An ongoing guide (edition 19) |journal= Journal of Algorithms |volume=8 |issue=2 |year=1987 |pages=285–303 |citeseerx=10.1.1.114.3864 |doi=10.1016/0196-6774(87)90043-5 }}</ref>


On the other hand, even if a problem is shown to be NP-complete, and even if P&nbsp;≠&nbsp;NP, there may still be effective approaches to the problem in practice. There are algorithms for many NP-complete problems, such as the [[knapsack problem]], the [[traveling salesman problem]], and the [[Boolean satisfiability problem]], that can solve to optimality many real-world instances in reasonable time. The empirical [[average-case complexity]] (time vs. problem size) of such algorithms can be surprisingly low. An example is the [[simplex algorithm]] in [[linear programming]], which works surprisingly well in practice; despite having exponential worst-case [[time complexity]], it runs on par with the best known polynomial-time algorithms.<ref>{{cite book|last1=Gondzio|first1=Jacek|last2=Terlaky|first2=Tamás|chapter=3 A computational view of interior point methods |mr=1438311 |title=Advances in linear and integer programming|pages=103–144|editor=J. E. Beasley|location=New York|publisher=Oxford University Press|year=1996|series=Oxford Lecture Series in Mathematics and its Applications |volume=4 |chapter-url=http://www.maths.ed.ac.uk/~gondzio/CV/oxford.ps|id=[http://www.maths.ed.ac.uk/~gondzio/CV/oxford.ps Postscript file at website of Gondzio] and [http://www.cas.mcmaster.ca/~terlaky/files/dut-twi-94-73.ps.gz at McMaster University website of Terlaky]}}</ref>
On the other hand, even if a problem is shown to be NP-complete, and even if P&nbsp;≠&nbsp;NP, there may still be effective approaches to the problem in practice. There are algorithms for many NP-complete problems, such as the [[knapsack problem]], the [[traveling salesman problem]], and the [[Boolean satisfiability problem]], that can solve to optimality many real-world instances in reasonable time. The empirical [[average-case complexity]] (time vs. problem size) of such algorithms can be surprisingly low. An example is the [[simplex algorithm]] in [[linear programming]], which works surprisingly well in practice; despite having exponential worst-case [[time complexity]], it runs on par with the best known polynomial-time algorithms.<ref>{{cite book|last1=Gondzio|first1=Jacek|last2=Terlaky|first2=Tamás|chapter=3 A computational view of interior point methods |mr=1438311 |title=Advances in linear and integer programming|pages=103–144|editor=J. E. Beasley|location=New York|publisher=Oxford University Press|year=1996|series=Oxford Lecture Series in Mathematics and its Applications |volume=4 |chapter-url=http://www.maths.ed.ac.uk/~gondzio/CV/oxford.ps|id=[http://www.maths.ed.ac.uk/~gondzio/CV/oxford.ps Postscript file at website of Gondzio] and [http://www.cas.mcmaster.ca/~terlaky/files/dut-twi-94-73.ps.gz at McMaster University website of Terlaky]}}</ref>


Finally, there are types of computations which do not conform to the Turing machine model on which P and NP are defined, such as [[quantum computation]] and [[randomized algorithm]]s.
Finally, there are types of computations which do not conform to the Turing machine model on which P and NP are defined, such as [[quantum computation]] and [[randomized algorithm]]s.
Line 94: Line 93:
Cook provides a restatement of the problem in ''The P Versus NP Problem'' as "Does P&nbsp;=&nbsp;NP?"<ref name="Official Problem Description"/> According to polls,<ref name="poll"/><ref>{{cite journal |title=P vs. NP poll results |journal=Communications of the ACM |date=May 2012 |volume=55 |issue=5 |page=10 |first= Jack|last=Rosenberger |url=http://mags.acm.org/communications/201205?pg=12}}</ref> most computer scientists believe that P&nbsp;≠&nbsp;NP. A key reason for this belief is that after decades of studying these problems no one has been able to find a polynomial-time algorithm for any of more than 3,000 important known NP-complete problems (see [[List of NP-complete problems]]). These algorithms were sought long before the concept of NP-completeness was even defined ([[Karp's 21 NP-complete problems]], among the first found, were all well-known existing problems at the time they were shown to be NP-complete). Furthermore, the result P&nbsp;=&nbsp;NP would imply many other startling results that are currently believed to be false, such as NP&nbsp;=&nbsp;[[co-NP]] and P&nbsp;=&nbsp;[[PH (complexity)|PH]].
Cook provides a restatement of the problem in ''The P Versus NP Problem'' as "Does P&nbsp;=&nbsp;NP?"<ref name="Official Problem Description"/> According to polls,<ref name="poll"/><ref>{{cite journal |title=P vs. NP poll results |journal=Communications of the ACM |date=May 2012 |volume=55 |issue=5 |page=10 |first= Jack|last=Rosenberger |url=http://mags.acm.org/communications/201205?pg=12}}</ref> most computer scientists believe that P&nbsp;≠&nbsp;NP. A key reason for this belief is that after decades of studying these problems no one has been able to find a polynomial-time algorithm for any of more than 3,000 important known NP-complete problems (see [[List of NP-complete problems]]). These algorithms were sought long before the concept of NP-completeness was even defined ([[Karp's 21 NP-complete problems]], among the first found, were all well-known existing problems at the time they were shown to be NP-complete). Furthermore, the result P&nbsp;=&nbsp;NP would imply many other startling results that are currently believed to be false, such as NP&nbsp;=&nbsp;[[co-NP]] and P&nbsp;=&nbsp;[[PH (complexity)|PH]].


It is also intuitively argued that the existence of problems that are hard to solve but whose solutions are easy to verify matches real-world experience.<ref>{{Cite web |url=http://scottaaronson.com/blog/?p=122 |author=Scott Aaronson |title=Reasons to believe |date=4 September 2006 }}, point 9.</ref>
It is also intuitively argued that the existence of problems that are hard to solve but whose solutions are easy to verify matches real-world experience.<ref>{{Cite web |author=Aaronson |first=Scott |date=4 September 2006 |title=Reasons to believe |url=http://scottaaronson.com/blog/?p=122}}, point 9.</ref>
{{Blockquote|If P <nowiki>=</nowiki> NP, then the world would be a profoundly different place than we usually assume it to be. There would be no special value in "creative leaps", no fundamental gap between solving a problem and recognizing the solution once it's found.| [[Scott Aaronson]], [[UT Austin]]}}
{{Blockquote|If P <nowiki>=</nowiki> NP, then the world would be a profoundly different place than we usually assume it to be. There would be no special value in "creative leaps", no fundamental gap between solving a problem and recognizing the solution once it's found.| [[Scott Aaronson]], [[UT Austin]]}}


Line 111: Line 110:
A proof that P&nbsp;=&nbsp;NP could have stunning practical consequences if the proof leads to efficient methods for solving some of the important problems in NP. The potential consequences, both positive and negative, arise since various NP-complete problems are fundamental in many fields.
A proof that P&nbsp;=&nbsp;NP could have stunning practical consequences if the proof leads to efficient methods for solving some of the important problems in NP. The potential consequences, both positive and negative, arise since various NP-complete problems are fundamental in many fields.


It is also very possible that a proof would ''not'' lead to practical algorithms for NP-complete problems. The formulation of the problem does not require that the bounding polynomial be small or even specifically known. A [[non-constructive proof]] might show a solution exists without specifying either an algorithm to obtain it or a specific bound. Even if the proof is constructive, showing an explicit bounding polynomial and algorithmic details, if the polynomial is not very low-order the algorithm might not be sufficiently efficient in practice. In this case the initial proof would be mainly of interest to theoreticians, but the knowledge that polynomial time solutions are possible would surely spur research into better (and possibly practical) methods to achieve them.
It is also very possible that a proof would ''not'' lead to practical algorithms for NP-complete problems. The formulation of the problem does not require that the bounding polynomial be small or even specifically known. A [[non-constructive proof]] might show a solution exists without specifying either an algorithm to obtain it or a specific bound. Even if the proof is constructive, showing an explicit bounding polynomial and algorithmic details, if the polynomial is not very low-order the algorithm might not be sufficiently efficient in practice. In this case the initial proof would be mainly of interest to theoreticians, but the knowledge that polynomial time solutions are possible would surely spur research into better (and possibly practical) methods to achieve them.


A solution showing P&nbsp;=&nbsp;NP could upend the field of [[cryptography]], which relies on certain problems being difficult. A constructive and efficient solution<ref group="Note">Exactly how efficient a solution must be to pose a threat to cryptography depends on the details. A solution of <math>O(N^2)</math> with a reasonable constant term would be disastrous. On the other hand, a solution that is <math>\Omega(N^4)</math> in almost all cases would not pose an immediate practical danger.</ref> to an NP-complete problem such as [[Boolean satisfiability problem#3-satisfiability|3-SAT]] would break most existing cryptosystems including:
A solution showing P&nbsp;=&nbsp;NP could upend the field of [[cryptography]], which relies on certain problems being difficult. A constructive and efficient solution<ref group="Note">Exactly how efficient a solution must be to pose a threat to cryptography depends on the details. A solution of <math>O(N^2)</math> with a reasonable constant term would be disastrous. On the other hand, a solution that is <math>\Omega(N^4)</math> in almost all cases would not pose an immediate practical danger.</ref> to an NP-complete problem such as [[Boolean satisfiability problem#3-satisfiability|3-SAT]] would break most existing cryptosystems including:
* Existing implementations of [[public-key cryptography]],<ref>See {{cite book |contribution=Hard instance generation for SAT |author1=Horie, S. |author2=Watanabe, O. |title=Algorithms and Computation |pages=22–31 |year=1997 |publisher=Springer |arxiv=cs/9809117 |bibcode=1998cs........9117H |doi=10.1007/3-540-63890-3_4 |series=Lecture Notes in Computer Science |isbn=978-3-540-63890-2 |volume=1350}} for a reduction of factoring to SAT. A 512-bit factoring problem (8400 MIPS-years when factored) translates to a SAT problem of 63,652 variables and 406,860 clauses.</ref> a foundation for many modern security applications such as secure financial transactions over the Internet.
* Existing implementations of [[public-key cryptography]],<ref>See {{cite book |contribution=Hard instance generation for SAT |author1=Horie, S. |author2=Watanabe, O. |title=Algorithms and Computation |pages=22–31 |year=1997 |publisher=Springer |arxiv=cs/9809117 |bibcode=1998cs........9117H |doi=10.1007/3-540-63890-3_4 |series=Lecture Notes in Computer Science |isbn=978-3-540-63890-2 |volume=1350}} for a reduction of factoring to SAT. A 512-bit factoring problem (8400 MIPS-years when factored) translates to a SAT problem of 63,652 variables and 406,860 clauses.</ref> a foundation for many modern security applications such as secure financial transactions over the Internet.
* [[Symmetric cipher]]s such as [[Advanced Encryption Standard|AES]] or [[Triple DES|3DES]],<ref>See, for example, {{cite journal |title=Logical cryptanalysis as a SAT problem |author1=Massacci, F. |author2=Marraro, L. |journal=Journal of Automated Reasoning |volume=24 |issue=1 |pages=165–203 |year=2000 |citeseerx=10.1.1.104.962 |doi=10.1023/A:1006326723002 |s2cid=3114247 }} in which an instance of DES is encoded as a SAT problem with 10336 variables and 61935 clauses. A 3DES problem instance would be about 3 times this size.</ref> used for the encryption of communications data.
* [[Symmetric cipher]]s such as [[Advanced Encryption Standard|AES]] or [[Triple DES|3DES]],<ref>See, for example, {{cite journal |title=Logical cryptanalysis as a SAT problem |author1=Massacci, F. |author2=Marraro, L. |journal=Journal of Automated Reasoning |volume=24 |issue=1 |pages=165–203 |year=2000 |citeseerx=10.1.1.104.962 |doi=10.1023/A:1006326723002 |s2cid=3114247 }} in which an instance of DES is encoded as a SAT problem with 10336 variables and 61935 clauses. A 3DES problem instance would be about 3 times this size.</ref> used for the encryption of communications data.
* [[Cryptographic hash function|Cryptographic hashing]], which underlies [[blockchain]] [[cryptocurrency|cryptocurrencies]] such as [[Bitcoin]], and is used to authenticate software updates. For these applications, finding a pre-image that hashes to a given value must be difficult, ideally taking exponential time. If P&nbsp;=&nbsp;NP, then this can take polynomial time, through reduction to SAT.<ref>{{cite conference
* [[Cryptographic hash function|Cryptographic hashing]], which underlies [[blockchain]] [[cryptocurrency|cryptocurrencies]] such as [[Bitcoin]], and is used to authenticate software updates. For these applications, finding a pre-image that hashes to a given value must be difficult, ideally taking exponential time. If P&nbsp;=&nbsp;NP, then this can take polynomial time, through reduction to SAT.<ref>{{cite conference
  |title=Inversion attacks on secure hash functions using SAT solvers
  |title=Inversion attacks on secure hash functions using SAT solvers
  |author1=De, Debapratim |author2=Kumarasubramanian, Abishek |author3=Venkatesan, Ramarathnam
  |author1=De, Debapratim |author2=Kumarasubramanian, Abishek |author3=Venkatesan, Ramarathnam
Line 128: Line 127:
These would need modification or replacement with [[information-theoretic security|information-theoretically secure]] solutions that do not assume P&nbsp;≠&nbsp;NP.
These would need modification or replacement with [[information-theoretic security|information-theoretically secure]] solutions that do not assume P&nbsp;≠&nbsp;NP.


There are also enormous benefits that would follow from rendering tractable many currently mathematically intractable problems. For instance, many problems in [[operations research]] are NP-complete, such as types of [[integer programming]] and the [[travelling salesman problem]]. Efficient solutions to these problems would have enormous implications for logistics. Many other important problems, such as some problems in [[protein structure prediction]], are also NP-complete;<ref name="Berger">{{Cite journal |author1-link=Bonnie Berger |last1=Berger |first1=B. |author2-link=F. Thomson Leighton |last2=Leighton |first2=T. |title=Protein folding in the hydrophobic-hydrophilic (HP) model is NP-complete |journal=J. Comput. Biol. |volume=5 |issue=1 |pages=27–40 |year=1998 |pmid=9541869 |doi=10.1089/cmb.1998.5.27 |citeseerx=10.1.1.139.5547 }}</ref> making these problems efficiently solvable could considerably advance life sciences and biotechnology.
There are also enormous benefits that would follow from rendering tractable many currently mathematically intractable problems. For instance, many problems in [[operations research]] are NP-complete, such as types of [[integer programming]] and the [[travelling salesman problem]]. Efficient solutions to these problems would have enormous implications for logistics. Many other important problems, such as some problems in [[protein structure prediction]], are also NP-complete;<ref name="Berger">{{Cite journal |last1=Berger |first1=B. |author1-link=Bonnie Berger |last2=Leighton |first2=T. |author2-link=F. Thomson Leighton |year=1998 |title=Protein folding in the hydrophobic-hydrophilic (HP) model is NP-complete |journal=Journal of Computational Biology |volume=5 |issue=1 |pages=27–40 |citeseerx=10.1.1.139.5547 |doi=10.1089/cmb.1998.5.27 |pmid=9541869}}</ref> making these problems efficiently solvable could considerably advance life sciences and biotechnology.


These changes could be insignificant compared to the revolution that efficiently solving NP-complete problems would cause in mathematics itself. Gödel, in his early thoughts on computational complexity, noted that a mechanical method that could solve any problem would revolutionize mathematics:<ref>History of this letter and its translation from {{cite web |title=The History and Status of the P versus NP question |first=Michael |last=Sipser |url=http://cs.stanford.edu/people/trevisan/cs172-07/sipser92history.pdf |archive-url=https://web.archive.org/web/20140202095503/http://cs.stanford.edu/people/trevisan/cs172-07/sipser92history.pdf |archive-date=2014-02-02 |url-status=live}}</ref><ref>{{cite book |chapter=A Brief History of NP-Completeness, 1954–2012 |first=David S. |last=Johnson |date=August 2012 |pages=359–376 |title=Optimization Stories |editor-link=Martin Grötschel |editor-first=M. |editor-last=Grötschel |series=Documenta Mathematica |url=https://www.academia.edu/download/53654761/Groetschel-Gertzen_Petrie_DocMath.pdf |isbn=978-3-936609-58-5 |issn=1431-0643}}</ref>
These changes could be insignificant compared to the revolution that efficiently solving NP-complete problems would cause in mathematics itself. Gödel, in his early thoughts on computational complexity, noted that a mechanical method that could solve any problem would revolutionize mathematics:<ref>History of this letter and its translation from {{cite web |title=The History and Status of the P versus NP question |first=Michael |last=Sipser |url=http://cs.stanford.edu/people/trevisan/cs172-07/sipser92history.pdf |archive-url=https://web.archive.org/web/20140202095503/http://cs.stanford.edu/people/trevisan/cs172-07/sipser92history.pdf |archive-date=2014-02-02 |url-status=live}}</ref><ref>{{cite book |chapter=A Brief History of NP-Completeness, 1954–2012 |first=David S. |last=Johnson |date=August 2012 |pages=359–376 |title=Optimization Stories |editor-link=Martin Grötschel |editor-first=M. |editor-last=Grötschel |series=Documenta Mathematica |url=https://www.academia.edu/download/53654761/Groetschel-Gertzen_Petrie_DocMath.pdf |isbn=978-3-936609-58-5 |issn=1431-0643}}</ref>
Line 142: Line 141:


My main point, however, is that I don't believe that the equality P&nbsp;=&nbsp;NP will turn out to be helpful even if it is proved, because such a proof will almost surely be nonconstructive.}}
My main point, however, is that I don't believe that the equality P&nbsp;=&nbsp;NP will turn out to be helpful even if it is proved, because such a proof will almost surely be nonconstructive.}}
[[File:Complexity classes.svg|thumb|250px|Diagram of complexity classes provided that P&nbsp;[[≠]]&nbsp;NP. The existence of problems within NP but outside both P and NP-complete, under that assumption, was established by [[NP-intermediate|Ladner's theorem]].<ref name="Ladner75">{{cite journal |first=R.E. |last=Ladner  |title=On the structure of polynomial time reducibility |journal=[[Journal of the ACM]] |volume=22 |pages=151–171 See Corollary&nbsp;1.1 |year=1975 |doi=10.1145/321864.321877 |s2cid=14352974 |doi-access=free }}</ref>]]
[[File:Complexity classes.svg|thumb|upright=0.8|Diagram of complexity classes provided that P&nbsp;[[≠]]&nbsp;NP. The existence of problems within NP but outside both P and NP-complete, under that assumption, was established by [[NP-intermediate|Ladner's theorem]].<ref name="Ladner75">{{cite journal |first=R.E. |last=Ladner  |title=On the structure of polynomial time reducibility |journal=[[Journal of the ACM]] |volume=22 |pages=151–171 See Corollary&nbsp;1.1 |year=1975 |doi=10.1145/321864.321877 |s2cid=14352974 |doi-access=free }}</ref>]]


===P ≠ NP===
===P ≠ NP===
A proof of P&nbsp;≠&nbsp;NP would lack the practical computational benefits of a proof that P&nbsp;=&nbsp;NP, but would represent a great advance in computational complexity theory and guide future research. It would demonstrate that many common problems cannot be solved efficiently, so that the attention of researchers can be focused on partial solutions or solutions to other problems. Due to widespread belief in P&nbsp;≠&nbsp;NP, much of this focusing of research has already taken place.<ref>{{Cite journal |title=The Heuristic Problem-Solving Approach |author=L. R. Foulds |journal=[[Journal of the Operational Research Society]] |volume=34 |issue=10 |date=October 1983 |pages=927–934 |jstor=2580891 |doi=10.2307/2580891}}</ref>
A proof of P&nbsp;≠&nbsp;NP would lack the practical computational benefits of a proof that P&nbsp;=&nbsp;NP, but would represent a great advance in computational complexity theory and guide future research. It would demonstrate that many common problems cannot be solved efficiently, so that the attention of researchers can be focused on partial solutions or solutions to other problems. Due to widespread belief in P&nbsp;≠&nbsp;NP, much of this focusing of research has already taken place.<ref>{{Cite journal |author=Foulds |first=L. R. |date=October 1983 |title=The Heuristic Problem-Solving Approach |journal=[[Journal of the Operational Research Society]] |volume=34 |issue=10 |pages=927–934 |doi=10.2307/2580891 |jstor=2580891}}</ref>


P&nbsp;≠&nbsp;NP still leaves open the [[average-case complexity]] of hard problems in NP. For example, it is possible that SAT requires exponential time in the worst case, but that almost all randomly selected instances of it are efficiently solvable. [[Russell Impagliazzo]] has described five hypothetical "worlds" that could result from different possible resolutions to the average-case complexity question.<ref>R. Impagliazzo, [http://cseweb.ucsd.edu/~russell/average.ps "A personal view of average-case complexity"], p.&nbsp;134, 10th Annual Structure in Complexity Theory Conference (SCT'95), 1995.</ref> These range from "Algorithmica", where P&nbsp;=&nbsp;NP and problems like SAT can be solved efficiently in all instances, to "Cryptomania", where P&nbsp;≠&nbsp;NP and generating hard instances of problems outside P is easy, with three intermediate possibilities reflecting different possible distributions of difficulty over instances of NP-hard problems. The "world" where P&nbsp;≠&nbsp;NP but all problems in NP are tractable in the average case is called "Heuristica" in the paper. A [[Princeton University]] workshop in 2009 studied the status of the five worlds.<ref>{{Cite web |url = http://intractability.princeton.edu/blog/2009/05/program-for-workshop-on-impagliazzos-worlds/ |title = Tentative program for the workshop on "Complexity and Cryptography: Status of Impagliazzo's Worlds" |archive-url = https://web.archive.org/web/20131115034042/http://intractability.princeton.edu/blog/2009/05/program-for-workshop-on-impagliazzos-worlds/ |archive-date = 2013-11-15}}</ref>
P&nbsp;≠&nbsp;NP still leaves open the [[average-case complexity]] of hard problems in NP. For example, it is possible that SAT requires exponential time in the worst case, but that almost all randomly selected instances of it are efficiently solvable. [[Russell Impagliazzo]] has described five hypothetical "worlds" that could result from different possible resolutions to the average-case complexity question.<ref>R. Impagliazzo, [http://cseweb.ucsd.edu/~russell/average.ps "A personal view of average-case complexity"], p.&nbsp;134, 10th Annual Structure in Complexity Theory Conference (SCT'95), 1995.</ref> These range from "Algorithmica", where P&nbsp;=&nbsp;NP and problems like SAT can be solved efficiently in all instances, to "Cryptomania", where P&nbsp;≠&nbsp;NP and generating hard instances of problems outside P is easy, with three intermediate possibilities reflecting different possible distributions of difficulty over instances of NP-hard problems. The "world" where P&nbsp;≠&nbsp;NP but all problems in NP are tractable in the average case is called "Heuristica" in the paper. A [[Princeton University]] workshop in 2009 studied the status of the five worlds.<ref>{{Cite web |url = http://intractability.princeton.edu/blog/2009/05/program-for-workshop-on-impagliazzos-worlds/ |title = Tentative program for the workshop on "Complexity and Cryptography: Status of Impagliazzo's Worlds" |archive-url = https://web.archive.org/web/20131115034042/http://intractability.princeton.edu/blog/2009/05/program-for-workshop-on-impagliazzos-worlds/ |archive-date = 2013-11-15}}</ref>
Line 159: Line 158:
|-
|-
|[[Relativizing proof]]s
|[[Relativizing proof]]s
|Imagine a world where every algorithm is allowed to make queries to some fixed subroutine called an ''[[oracle machine|oracle]]'' (which can answer a fixed set of questions in constant time, such as an oracle that solves any traveling salesman problem in 1 step), and the running time of the oracle is not counted against the running time of the algorithm. Most proofs (especially classical ones) apply uniformly in a world with oracles regardless of what the oracle does. These proofs are called ''relativizing''. In 1975, Baker, Gill, and [[Robert M. Solovay|Solovay]] showed that P&nbsp;=&nbsp;NP with respect to some oracles, while P&nbsp;≠&nbsp;NP for other oracles.<ref>{{cite journal |author1=T. P. Baker |author2=J. Gill |author3=R. Solovay |title=Relativizations of the P =? NP Question |journal=[[SIAM Journal on Computing]] |volume=4 |issue=4 |pages=431–442 |year=1975 |doi=10.1137/0204037}}</ref> As relativizing proofs can only prove statements that are true for all possible oracles, these techniques cannot resolve P&nbsp;=&nbsp;NP.
|Imagine a world where every algorithm is allowed to make queries to some fixed subroutine called an ''[[oracle machine|oracle]]'' (which can answer a fixed set of questions in constant time, such as an oracle that solves any traveling salesman problem in 1 step), and the running time of the oracle is not counted against the running time of the algorithm. Most proofs (especially classical ones) apply uniformly in a world with oracles regardless of what the oracle does. These proofs are called ''relativizing''. In 1975, Baker, Gill, and [[Robert M. Solovay|Solovay]] showed that P&nbsp;=&nbsp;NP with respect to some oracles, while P&nbsp;≠&nbsp;NP for other oracles.<ref>{{cite journal |last1=Baker |first1=T. P. |last2=Gill |first2=J. |last3=Solovay |first3=R. |year=1975 |title=Relativizations of the P =? NP Question |journal=[[SIAM Journal on Computing]] |volume=4 |issue=4 |pages=431–442 |doi=10.1137/0204037}}</ref> As relativizing proofs can only prove statements that are true for all possible oracles, these techniques cannot resolve P&nbsp;=&nbsp;NP.
|-
|-
|[[Natural proof]]s
|[[Natural proof]]s
Line 165: Line 164:
|-
|-
|Algebrizing proofs
|Algebrizing proofs
|After the Baker–Gill–Solovay result, new non-relativizing proof techniques were successfully used to prove that [[IP (complexity)|IP]]&nbsp;=&nbsp;[[PSPACE]]. However, in 2008, [[Scott Aaronson]] and [[Avi Wigderson]] showed that the main technical tool used in the IP&nbsp;=&nbsp;PSPACE proof, known as ''arithmetization'', was also insufficient to resolve P&nbsp;=&nbsp;NP.<ref name=":0">{{cite conference |author1=S. Aaronson |author2=A. Wigderson |title=Algebrization: A New Barrier in Complexity Theory |conference=Proceedings of ACM STOC'2008 |year=2008 |url=http://www.scottaaronson.com/papers/alg.pdf |archive-url=https://web.archive.org/web/20080221223917/http://www.scottaaronson.com/papers/alg.pdf |archive-date=2008-02-21 |url-status=live |doi=10.1145/1374376.1374481 |pages=731–740}}</ref> Arithmetization converts the operations of an algorithm to algebraic and basic [[arithmetic]] symbols and then uses those to analyze the workings. In the [[IP (complexity)|IP]]&nbsp;=&nbsp;[[PSPACE]] proof, they convert the [[black box]] and the Boolean circuits to an algebraic problem.<ref name=":0" /> As mentioned previously, it has been proven that this method is not viable to solve P&nbsp;=&nbsp;NP and other [[time complexity]] problems.
|After the Baker–Gill–Solovay result, new non-relativizing proof techniques were successfully used to prove that [[IP (complexity)|IP]]&nbsp;=&nbsp;[[PSPACE]]. However, in 2008, [[Scott Aaronson]] and [[Avi Wigderson]] showed that the main technical tool used in the IP&nbsp;=&nbsp;PSPACE proof, known as ''arithmetization'', was also insufficient to resolve P&nbsp;=&nbsp;NP.<ref name=":0">{{cite conference |last1=Aaronson |first1=S. |last2=Wigderson |first2=A. |year=2008 |title=Algebrization: A New Barrier in Complexity Theory |url=http://www.scottaaronson.com/papers/alg.pdf |conference=Proceedings of ACM STOC'2008 |pages=731–740 |doi=10.1145/1374376.1374481 |archive-url=https://web.archive.org/web/20080221223917/http://www.scottaaronson.com/papers/alg.pdf |archive-date=2008-02-21 |url-status=live}}</ref> Arithmetization converts the operations of an algorithm to algebraic and basic [[arithmetic]] symbols and then uses those to analyze the workings. In the [[IP (complexity)|IP]]&nbsp;=&nbsp;[[PSPACE]] proof, they convert the [[black box]] and the Boolean circuits to an algebraic problem.<ref name=":0" /> As mentioned previously, it has been proven that this method is not viable to solve P&nbsp;=&nbsp;NP and other [[time complexity]] problems.
|}
|}


Line 263: Line 262:


==Claimed solutions ==
==Claimed solutions ==
While the P versus NP problem is generally considered unsolved,<ref>{{Cite news |author=[[John Markoff]] |date=8 October 2009 |title=Prizes Aside, the P-NP Puzzler Has Consequences |newspaper=The New York Times |url=https://www.nytimes.com/2009/10/08/science/Wpolynom.html}}</ref> many amateur and some professional researchers have claimed solutions. [[Gerhard J. Woeginger]] compiled a list of 116 purported proofs from 1986 to 2016, of which 61 were proofs of P&nbsp;=&nbsp;NP, 49 were proofs of P&nbsp;≠&nbsp;NP, and 6 proved other results, e.g. that the problem is undecidable.<ref>{{Cite web |author=Gerhard J. Woeginger |author-link=Gerhard J. Woeginger |title=The P-versus-NP page |url=https://wscor.win.tue.nl/woeginger/P-versus-NP.htm |access-date=2018-06-24}}</ref> Some attempts at resolving P versus NP have received brief media attention,<ref name="NYT2010">{{Cite news |last=Markoff |first=John |date=16 August 2010 |title=Step 1: Post Elusive Proof. Step 2: Watch Fireworks. |newspaper=The New York Times |url=https://www.nytimes.com/2010/08/17/science/17proof.html?_r=1 |access-date=20 September 2010}}</ref> though these attempts have been refuted.
While the P versus NP problem is generally considered unsolved,<ref>{{Cite news |author=Markoff |first=John |author-link=John Markoff |date=8 October 2009 |title=Prizes Aside, the P-NP Puzzler Has Consequences |url=https://www.nytimes.com/2009/10/08/science/Wpolynom.html |newspaper=The New York Times}}</ref> many amateur and some professional researchers have claimed solutions. [[Gerhard J. Woeginger]] compiled a list of 116 purported proofs from 1986 to 2016, of which 61 were proofs of P&nbsp;=&nbsp;NP, 49 were proofs of P&nbsp;≠&nbsp;NP, and 6 proved other results, e.g. that the problem is undecidable.<ref>{{Cite web |author=Gerhard J. Woeginger |author-link=Gerhard J. Woeginger |title=The P-versus-NP page |url=https://wscor.win.tue.nl/woeginger/P-versus-NP.htm |access-date=2018-06-24}}</ref> Some attempts at resolving P versus NP have received brief media attention,<ref name="NYT2010">{{Cite news |last=Markoff |first=John |date=16 August 2010 |title=Step 1: Post Elusive Proof. Step 2: Watch Fireworks. |newspaper=The New York Times |url=https://www.nytimes.com/2010/08/17/science/17proof.html?_r=1 |access-date=20 September 2010}}</ref> though these attempts have been refuted.


==Popular culture==
==Popular culture==
Line 273: Line 272:


==Similar problems==
==Similar problems==
* ''[[R (complexity)|R]] vs. [[RE (complexity)|RE]]'' problem, where R is analog of class P, and RE is analog class NP. These classes are not equal, because undecidable but verifiable problems do exist, for example, [[Hilbert's tenth problem]] which is [[RE (complexity)#RE-complete|RE-complete]].<ref name="W2019"></ref>
* ''[[R (complexity)|R]] vs. [[RE (complexity)|RE]]'' problem, where R is analog of class P, and RE is analog class NP. These classes are not equal, because undecidable but verifiable problems do exist, for example, [[Hilbert's tenth problem]] which is [[RE (complexity)#RE-complete|RE-complete]].<ref name="W2019"></ref>
* A similar problem exists in the theory of [[Arithmetic circuit complexity#Algebraic P and NP|algebraic complexity]]: ''VP vs. VNP'' problem. Like ''P vs. NP'', the answer is currently unknown.<ref>L. G. Valiant. ''Completeness classes in algebra.'' In Proc. of 11th ACM STOC, pp. 249–261, 1979.</ref><ref name="W2019">{{cite book | last = Wigderson | first = Avi | author-link=Avi Wigderson|title = Mathematics and Computation: A Theory Revolutionizing Technology and Science | publisher = Princeton University Press| year = 2019 | isbn = 978-0-691-18913-0}}</ref>
* A similar problem exists in the theory of [[Arithmetic circuit complexity#Algebraic P and NP|algebraic complexity]]: ''VP vs. VNP'' problem. Like P vs. NP, the answer is currently unknown.<ref>L. G. Valiant. ''Completeness classes in algebra.'' In Proceedings of 11th ACM STOC, pp. 249–261, 1979.</ref><ref name="W2019">{{cite book | last = Wigderson | first = Avi | author-link=Avi Wigderson|title = Mathematics and Computation: A Theory Revolutionizing Technology and Science | publisher = Princeton University Press| year = 2019 | isbn = 978-0-691-18913-0}}</ref>
* [[FPT (class)|FPT]] vs. [[W Hierarchy|W[1]]] is an analogous problem in [[parameterized complexity]].


==See also==
==See also==
* [[Game complexity]]
* [[Exponential time hypothesis]]
* [[List of unsolved problems in computer science]]
* [[List of unsolved problems in mathematics]]
* [[List of unsolved problems in mathematics]]
* [[Unique games conjecture]]
* [[Unique games conjecture]]
* [[Unsolved problems in computer science]]


==Notes==
==Notes==
Line 319: Line 319:


==Further reading==
==Further reading==
* {{cite book | last = Cormen | first = Thomas|author-link=Thomas Cormen| title = Introduction to Algorithms | publisher = [[MIT Press]] | location = Cambridge | year = 2001 | isbn = 978-0-262-03293-3 | title-link = Introduction to Algorithms }}
* {{cite book |last=Cormen |first=Thomas |author-link=Thomas Cormen |title=Introduction to Algorithms |publisher=[[MIT Press]] |location=Cambridge, Massachusetts |year=2001 |isbn=978-0-262-03293-3 |title-link=Introduction to Algorithms}}
* {{Garey-Johnson}}
* {{Garey-Johnson}}
* {{cite book | last = Goldreich | first = Oded |author-link=Oded Goldreich| title = P, NP, and NP-Completeness | publisher = [[Cambridge University Press]] | location = Cambridge | year = 2010 | isbn = 978-0-521-12254-2 }} [http://www.wisdom.weizmann.ac.il/~oded/bc-drafts.html Online drafts]
* {{cite book |last=Goldreich |first=Oded |author-link=Oded Goldreich |title=P, NP, and NP-Completeness |publisher=[[Cambridge University Press]] |location=Cambridge, England |year=2010 |isbn=978-0-521-12254-2}} [http://www.wisdom.weizmann.ac.il/~oded/bc-drafts.html Online drafts]
* {{Cite journal | last = Immerman | first = Neil |author-link=Neil Immerman| title = Languages that Capture Complexity Classes | pages = 760–778 | year = 1987 | journal=[[SIAM Journal on Computing]]| volume=16 | issue = 4 |doi=10.1137/0216051| citeseerx=10.1.1.75.3035 }}
* {{Cite journal | last = Immerman | first = Neil |author-link=Neil Immerman| title = Languages that Capture Complexity Classes | pages = 760–778 | year = 1987 | journal=[[SIAM Journal on Computing]]| volume=16 | issue = 4 |doi=10.1137/0216051| citeseerx=10.1.1.75.3035 }}
* {{cite book | last = Papadimitriou | first = Christos | author-link=Christos Papadimitriou|title = Computational Complexity | publisher = [[Addison-Wesley]]| location = Boston | year = 1994 | isbn = 978-0-201-53082-7 }}
* {{cite book |last=Papadimitriou |first=Christos |author-link=Christos Papadimitriou |title=Computational Complexity |publisher=[[Addison-Wesley]] |location=Boston, Massachusetts |year=1994 |isbn=978-0-201-53082-7}}


==External links==
==External links==

Latest revision as of 23:52, 23 May 2026

Template:Unsolved Template:Millennium Problems

The P versus NP problem is a major unsolved problem in theoretical computer science. Informally, it asks whether every problem whose solution can be quickly verified can also be quickly solved.

Here, "quickly" means an algorithm exists that solves the task and runs in polynomial time (as opposed to, say, exponential time), meaning the task completion time is bounded above by a polynomial function on the size of the input to the algorithm. The general class of questions that some algorithm can answer in polynomial time is "P" or "class P". For some questions, there is no known way to find an answer quickly, but if provided with an answer, it can be verified quickly. The class of questions where an answer can be verified in polynomial time is "NP", standing for "nondeterministic polynomial time".[Note 1][1]

An answer to the P versus NP question would determine whether problems that can be verified in polynomial time can also be solved in polynomial time. If P ≠ NP, which is widely believed, it would mean that there are problems in NP that are harder to compute than to verify: they could not be solved in polynomial time, but the answer could be verified in polynomial time.

The problem has been called the most important open problem in computer science.[2] Aside from being an important problem in computational theory, a proof either way would have profound implications for mathematics, cryptography, algorithm research, artificial intelligence, game theory, multimedia processing, philosophy, economics and many other fields.[3] It is one of the seven Millennium Prize Problems selected by the Clay Mathematics Institute, each of which carries a US$1,000,000 prize for the first correct solution.

Example

[edit | edit source]

Consider the following yes/no problem: given an incomplete Sudoku grid of size Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle n^2 \times n^2} , is there at least one legal solution where every row, column, and square contains the integers 1 through ? It is straightforward to verify "yes" instances of this generalized Sudoku problem given a candidate solution. However, it is not known whether there is a polynomial-time algorithm that can correctly answer "yes" or "no" to all instances of this problem. Therefore, generalized Sudoku is in NP (quickly verifiable), but may or may not be in P (quickly solvable). (It is necessary to consider a generalized version of Sudoku, as any fixed size Sudoku has only a finite number of possible grids. In this case the problem is in P, as the answer can be found by table lookup.)

History

[edit | edit source]

The precise statement of the P versus NP problem was introduced in 1971 by Stephen Cook in his seminal paper "The complexity of theorem proving procedures",[4] and independently by Leonid Levin in 1973.[5]

Although the P versus NP problem was formally defined in 1971, there were previous inklings of the underlying problems involved. In 1955, mathematician John Nash wrote a letter to the National Security Agency, speculating that the time required to crack a sufficiently complex code would increase exponentially with the length of the key.[6] If proved (and Nash was skeptical), this would imply what is now called P ≠ NP, since a proposed key can be verified in polynomial time. In a 1956 letter written by Kurt Gödel to John von Neumann, Gödel asked whether theorem-proving (now known to be co-NP-complete) could be solved in quadratic or linear time,[7] and posited that if so, then the discovery of mathematical proofs could be automated.

Context

[edit | edit source]

The relation between the complexity classes P and NP is studied in computational complexity theory, the part of the theory of computation dealing with the resources required during computation to solve a given problem. The most common resources are time (how many steps it takes to solve a problem) and space (how much memory it takes to solve a problem).

In such analysis, a model of the computer for which time must be analyzed is required. Typically such models assume that the computer is deterministic (given the computer's present state and any inputs, there is only one possible action that the computer might take) and sequential (it performs actions one after the other).

In this theory, the class P consists of all decision problems (defined below) solvable on a deterministic sequential machine in a duration polynomial in the size of the input; the class NP consists of all decision problems whose positive solutions are verifiable in polynomial time given the right information, or equivalently, whose solution can be found in polynomial time on a non-deterministic machine.[8] Clearly, P ⊆ NP. Arguably, the biggest open question in theoretical computer science concerns the relationship between those two classes:

Is P equal to NP?

Since 2001, William Gasarch has conducted three polls of researchers concerning P ≠ NP and related questions.[9][10][11] The share of responders believing that P ≠ NP was 61% in 2001,[Note 2] 83% in 2011, and 88% in 2018, with 100, 151, and 124 responses, respectively.[11] When restricted to experts, 99% of 2018 responders believed P ≠ NP.[11] These polls do not imply whether P = NP; as Gasarch stated: "This does not bring us any closer to solving P=?NP or to knowing when it will be solved, but it attempts to be an objective report on the subjective opinion of this era."[9]

NP-completeness

[edit | edit source]
File:P np np-complete np-hard.svg
Euler diagram for P, NP, NP-complete, and NP-hard set of problems (excluding the empty language and its complement, which belong to P but are not NP-complete)

To attack the P = NP question, the concept of NP-completeness is very useful. NP-complete problems are problems that any other NP problem is reducible to in polynomial time and whose solution is still verifiable in polynomial time. That is, any NP problem can be transformed into any NP-complete problem. Informally, an NP-complete problem is an NP problem that is at least as "tough" as any other problem in NP.

NP-hard problems are those at least as hard as NP problems; i.e., all NP problems can be reduced (in polynomial time) to them. NP-hard problems need not be in NP; i.e., they need not have solutions verifiable in polynomial time.

For instance, the Boolean satisfiability problem is NP-complete by the Cook–Levin theorem, so any instance of any problem in NP can be transformed mechanically into a Boolean satisfiability problem in polynomial time. The Boolean satisfiability problem is one of many NP-complete problems. If any NP-complete problem is in P, then it would follow that P = NP. However, many important problems are NP-complete, and no fast algorithm for any of them is known.

From the definition alone it is unintuitive that NP-complete problems exist; however, a trivial NP-complete problem can be formulated as follows: given a Turing machine M guaranteed to halt in polynomial time, does a polynomial-size input that M will accept exist?[12] It is in NP because (given an input) it is simple to check whether M accepts the input by simulating M; it is NP-complete because the verifier for any particular instance of a problem in NP can be encoded as a polynomial-time machine M that takes the solution to be verified as input. Then the question of whether the instance is a yes or no instance is determined by whether a valid input exists.

The first natural problem proven to be NP-complete was the Boolean satisfiability problem, also known as SAT. As noted above, this is the Cook–Levin theorem; its proof that satisfiability is NP-complete contains technical details about Turing machines as they relate to the definition of NP. However, after this problem was proved to be NP-complete, proof by reduction provided a simpler way to show that many other problems are also NP-complete, including the game Sudoku discussed earlier. In this case, the proof shows that a solution of Sudoku in polynomial time could also be used to complete Latin squares in polynomial time.[13] This in turn gives a solution to the problem of partitioning tri-partite graphs into triangles,[14] which could then be used to find solutions for the special case of SAT known as 3-SAT,[15] which then provides a solution for general Boolean satisfiability. So a polynomial-time solution to Sudoku leads, by a series of mechanical transformations, to a polynomial time solution of satisfiability, which in turn can be used to solve any other NP-problem in polynomial time. Using transformations like this, a vast class of seemingly unrelated problems are all reducible to one another, and are in a sense "the same problem".

Harder problems

[edit | edit source]

Although it is unknown whether P = NP, problems outside of P are known. Just as the class P is defined in terms of polynomial running time, the class EXPTIME is the set of all decision problems that have exponential running time. In other words, any problem in EXPTIME is solvable by a deterministic Turing machine in O(2p(n)) time, where p(n) is a polynomial function of n. A decision problem is EXPTIME-complete if it is in EXPTIME, and every problem in EXPTIME has a polynomial-time many-one reduction to it. A number of problems are known to be EXPTIME-complete. Because it can be shown that P ≠ EXPTIME, these problems are outside P, and so require more than polynomial time. In fact, by the time hierarchy theorem, they cannot be solved in significantly less than exponential time. Examples include finding a perfect strategy for chess positions on an N × N board[16] and similar problems for other board games.[17]

The problem of deciding the truth of a statement in Presburger arithmetic requires even more time. Fischer and Rabin proved in 1974[18] that every algorithm that decides the truth of Presburger statements of length n has a runtime of at least for some constant c. Hence, the problem is known to need more than exponential run time. Even more difficult are the undecidable problems, such as the halting problem. They cannot be completely solved by any algorithm, in the sense that for any particular algorithm there is at least one input for which that algorithm will not produce the right answer; it will either produce the wrong answer, finish without giving a conclusive answer, or otherwise run forever without producing any answer at all.

It is also possible to consider questions other than decision problems. One such class, consisting of counting problems, is called #P: whereas an NP problem asks "Are there any solutions?", the corresponding #P problem asks "How many solutions are there?". Clearly, a #P problem must be at least as hard as the corresponding NP problem, since a count of solutions immediately tells if at least one solution exists, if the count is greater than zero. Surprisingly, some #P problems that are believed to be difficult correspond to easy (for example linear-time) P problems.[19] For these problems, it is very easy to tell whether solutions exist, but thought to be very hard to tell how many. Many of these problems are #P-complete, and hence among the hardest problems in #P, since a polynomial time solution to any of them would allow a polynomial time solution to all other #P problems.

Problems in NP not known to be in P or NP-complete

[edit | edit source]

In 1975, Richard E. Ladner showed that if P ≠ NP, then there exist problems in NP that are neither in P nor NP-complete.[20] Such problems are called NP-intermediate problems. The graph isomorphism problem, the discrete logarithm problem, and the integer factorization problem are examples of problems believed to be NP-intermediate. They are some of the very few NP problems not known to be in P or to be NP-complete.

The graph isomorphism problem is the computational problem of determining whether two finite graphs are isomorphic. An important unsolved problem in complexity theory is whether the graph isomorphism problem is in P, NP-complete, or NP-intermediate. The answer is not known, but it is believed that the problem is at least not NP-complete.[21] If graph isomorphism is NP-complete, the polynomial time hierarchy collapses to its second level.[22] Since it is widely believed that the polynomial hierarchy does not collapse to any finite level, it is believed that graph isomorphism is not NP-complete. The best algorithm for this problem, due to László Babai, runs in quasi-polynomial time.[23]

The integer factorization problem is the computational problem of determining the prime factorization of a given integer. Phrased as a decision problem, it is the problem of deciding whether the input has a factor less than k. No efficient integer factorization algorithm is known, and this fact forms the basis of several modern cryptographic systems, such as the RSA algorithm. The integer factorization problem is in NP and in co-NP (and even in UP and co-UP[24]). If the problem is NP-complete, the polynomial time hierarchy will collapse to its first level (i.e., NP = co-NP). The most efficient known algorithm for integer factorization is the general number field sieve, which takes expected time

Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle O\left (\exp \left ( \left (\tfrac{64n}{9} \log(2) \right )^{\frac{1}{3}} \left ( \log(n\log(2)) \right )^{\frac{2}{3}} \right) \right )}

to factor an n-bit integer. The best known quantum algorithm for this problem, Shor's algorithm, runs in polynomial time, although this does not indicate where the problem lies with respect to non-quantum complexity classes.

Comparison of P with "easy" problems

[edit | edit source]
File:KnapsackEmpComplexity.GIF
The graph shows the running time vs. problem size for a knapsack problem of a state-of-the-art, specialized algorithm. The quadratic fit suggests that the algorithmic complexity of the problem is O((log(n))2).[25]

All of the above discussion has assumed that P means "easy" and "not in P" means "difficult", an assumption known as Cobham's thesis. It is a common assumption in complexity theory; but there are caveats.

First, it can be false in practice. A theoretical polynomial algorithm may have extremely large constant factors or exponents, rendering it impractical. For example, the problem of deciding whether a graph G contains H as a minor, where H is fixed, can be solved in a running time of O(n2),[26] where n is the number of vertices in G. However, the big O notation hides a constant that depends superexponentially on H. The constant is greater than Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle 2 \uparrow \uparrow (2 \uparrow \uparrow (2 \uparrow \uparrow (h/2) ) ) } (using Knuth's up-arrow notation), and where h is the number of vertices in H.[27]

On the other hand, even if a problem is shown to be NP-complete, and even if P ≠ NP, there may still be effective approaches to the problem in practice. There are algorithms for many NP-complete problems, such as the knapsack problem, the traveling salesman problem, and the Boolean satisfiability problem, that can solve to optimality many real-world instances in reasonable time. The empirical average-case complexity (time vs. problem size) of such algorithms can be surprisingly low. An example is the simplex algorithm in linear programming, which works surprisingly well in practice; despite having exponential worst-case time complexity, it runs on par with the best known polynomial-time algorithms.[28]

Finally, there are types of computations which do not conform to the Turing machine model on which P and NP are defined, such as quantum computation and randomized algorithms.

Reasons to believe P ≠ NP or P = NP

[edit | edit source]

Cook provides a restatement of the problem in The P Versus NP Problem as "Does P = NP?"[29] According to polls,[9][30] most computer scientists believe that P ≠ NP. A key reason for this belief is that after decades of studying these problems no one has been able to find a polynomial-time algorithm for any of more than 3,000 important known NP-complete problems (see List of NP-complete problems). These algorithms were sought long before the concept of NP-completeness was even defined (Karp's 21 NP-complete problems, among the first found, were all well-known existing problems at the time they were shown to be NP-complete). Furthermore, the result P = NP would imply many other startling results that are currently believed to be false, such as NP = co-NP and P = PH.

It is also intuitively argued that the existence of problems that are hard to solve but whose solutions are easy to verify matches real-world experience.[31]

If P = NP, then the world would be a profoundly different place than we usually assume it to be. There would be no special value in "creative leaps", no fundamental gap between solving a problem and recognizing the solution once it's found.

On the other hand, some researchers believe that it is overconfident to believe P ≠ NP and that researchers should also explore proofs of P = NP. For example, in 2002 these statements were made:[9]

The main argument in favor of P ≠ NP is the total lack of fundamental progress in the area of exhaustive search. This is, in my opinion, a very weak argument. The space of algorithms is very large and we are only at the beginning of its exploration. [...] The resolution of Fermat's Last Theorem also shows that very simple questions may be settled only by very deep theories.

Being attached to a speculation is not a good guide to research planning. One should always try both directions of every problem. Prejudice has caused famous mathematicians to fail to solve famous problems whose solution was opposite to their expectations, even though they had developed all the methods required.

DLIN vs NLIN

[edit | edit source]

When one substitutes "linear time on a multitape Turing machine" for "polynomial time" in the definitions of P and NP, one obtains the classes DLIN and NLIN. It is known[32] that DLIN ≠ NLIN.

Consequences of solution

[edit | edit source]

One of the reasons the problem attracts so much attention is the consequences of the possible answers. Either direction of resolution would advance theory enormously, and perhaps have huge practical consequences as well.

P = NP

[edit | edit source]

A proof that P = NP could have stunning practical consequences if the proof leads to efficient methods for solving some of the important problems in NP. The potential consequences, both positive and negative, arise since various NP-complete problems are fundamental in many fields.

It is also very possible that a proof would not lead to practical algorithms for NP-complete problems. The formulation of the problem does not require that the bounding polynomial be small or even specifically known. A non-constructive proof might show a solution exists without specifying either an algorithm to obtain it or a specific bound. Even if the proof is constructive, showing an explicit bounding polynomial and algorithmic details, if the polynomial is not very low-order the algorithm might not be sufficiently efficient in practice. In this case the initial proof would be mainly of interest to theoreticians, but the knowledge that polynomial time solutions are possible would surely spur research into better (and possibly practical) methods to achieve them.

A solution showing P = NP could upend the field of cryptography, which relies on certain problems being difficult. A constructive and efficient solution[Note 3] to an NP-complete problem such as 3-SAT would break most existing cryptosystems including:

  • Existing implementations of public-key cryptography,[33] a foundation for many modern security applications such as secure financial transactions over the Internet.
  • Symmetric ciphers such as AES or 3DES,[34] used for the encryption of communications data.
  • Cryptographic hashing, which underlies blockchain cryptocurrencies such as Bitcoin, and is used to authenticate software updates. For these applications, finding a pre-image that hashes to a given value must be difficult, ideally taking exponential time. If P = NP, then this can take polynomial time, through reduction to SAT.[35]

These would need modification or replacement with information-theoretically secure solutions that do not assume P ≠ NP.

There are also enormous benefits that would follow from rendering tractable many currently mathematically intractable problems. For instance, many problems in operations research are NP-complete, such as types of integer programming and the travelling salesman problem. Efficient solutions to these problems would have enormous implications for logistics. Many other important problems, such as some problems in protein structure prediction, are also NP-complete;[36] making these problems efficiently solvable could considerably advance life sciences and biotechnology.

These changes could be insignificant compared to the revolution that efficiently solving NP-complete problems would cause in mathematics itself. Gödel, in his early thoughts on computational complexity, noted that a mechanical method that could solve any problem would revolutionize mathematics:[37][38]

If there really were a machine with φ(n) ∼ kn (or even ∼ kn2), this would have consequences of the greatest importance. Namely, it would obviously mean that in spite of the undecidability of the Entscheidungsproblem, the mental work of a mathematician concerning Yes-or-No questions could be completely replaced by a machine. After all, one would simply have to choose the natural number n so large that when the machine does not deliver a result, it makes no sense to think more about the problem.

Similarly, Stephen Cook (assuming not only a proof, but a practically efficient algorithm) says:[29]

... it would transform mathematics by allowing a computer to find a formal proof of any theorem which has a proof of a reasonable length, since formal proofs can easily be recognized in polynomial time. Example problems may well include all of the CMI prize problems.

Research mathematicians spend their careers trying to prove theorems, and some proofs have taken decades or even centuries to find after problems have been stated—for instance, Fermat's Last Theorem took over three centuries to prove. A method guaranteed to find a proof if a "reasonable" size proof exists, would essentially end this struggle.

Donald Knuth has stated that he has come to believe that P = NP, but is reserved about the impact of a possible proof:[39]

[...] if you imagine a number M that's finite but incredibly large—like say the number 10↑↑↑↑3 discussed in my paper on "coping with finiteness"—then there's a humongous number of possible algorithms that do nM bitwise or addition or shift operations on n given bits, and it's really hard to believe that all of those algorithms fail. My main point, however, is that I don't believe that the equality P = NP will turn out to be helpful even if it is proved, because such a proof will almost surely be nonconstructive.

File:Complexity classes.svg
Diagram of complexity classes provided that P  NP. The existence of problems within NP but outside both P and NP-complete, under that assumption, was established by Ladner's theorem.[20]

P ≠ NP

[edit | edit source]

A proof of P ≠ NP would lack the practical computational benefits of a proof that P = NP, but would represent a great advance in computational complexity theory and guide future research. It would demonstrate that many common problems cannot be solved efficiently, so that the attention of researchers can be focused on partial solutions or solutions to other problems. Due to widespread belief in P ≠ NP, much of this focusing of research has already taken place.[40]

P ≠ NP still leaves open the average-case complexity of hard problems in NP. For example, it is possible that SAT requires exponential time in the worst case, but that almost all randomly selected instances of it are efficiently solvable. Russell Impagliazzo has described five hypothetical "worlds" that could result from different possible resolutions to the average-case complexity question.[41] These range from "Algorithmica", where P = NP and problems like SAT can be solved efficiently in all instances, to "Cryptomania", where P ≠ NP and generating hard instances of problems outside P is easy, with three intermediate possibilities reflecting different possible distributions of difficulty over instances of NP-hard problems. The "world" where P ≠ NP but all problems in NP are tractable in the average case is called "Heuristica" in the paper. A Princeton University workshop in 2009 studied the status of the five worlds.[42]

Results about difficulty of proof

[edit | edit source]

Although the P = NP problem itself remains open despite a million-dollar prize and a huge amount of dedicated research, efforts to solve the problem have led to several new techniques. In particular, some of the most fruitful research related to the P = NP problem has been in showing that existing proof techniques are insufficient for answering the question, suggesting novel technical approaches are required.

As additional evidence for the difficulty of the problem, essentially all known proof techniques in computational complexity theory fall into one of the following classifications, all insufficient to prove P ≠ NP:

Classification Definition
Relativizing proofs Imagine a world where every algorithm is allowed to make queries to some fixed subroutine called an oracle (which can answer a fixed set of questions in constant time, such as an oracle that solves any traveling salesman problem in 1 step), and the running time of the oracle is not counted against the running time of the algorithm. Most proofs (especially classical ones) apply uniformly in a world with oracles regardless of what the oracle does. These proofs are called relativizing. In 1975, Baker, Gill, and Solovay showed that P = NP with respect to some oracles, while P ≠ NP for other oracles.[43] As relativizing proofs can only prove statements that are true for all possible oracles, these techniques cannot resolve P = NP.
Natural proofs In 1993, Alexander Razborov and Steven Rudich defined a general class of proof techniques for circuit complexity lower bounds, called natural proofs.[44] At the time, all previously known circuit lower bounds were natural, and circuit complexity was considered a very promising approach for resolving P = NP. However, Razborov and Rudich showed that if one-way functions exist, P and NP are indistinguishable to natural proof methods. Although the existence of one-way functions is unproven, most mathematicians believe that they exist, and a proof of their existence would be a much stronger statement than P ≠ NP. Thus, it is unlikely that natural proofs alone can resolve P = NP.
Algebrizing proofs After the Baker–Gill–Solovay result, new non-relativizing proof techniques were successfully used to prove that IP = PSPACE. However, in 2008, Scott Aaronson and Avi Wigderson showed that the main technical tool used in the IP = PSPACE proof, known as arithmetization, was also insufficient to resolve P = NP.[45] Arithmetization converts the operations of an algorithm to algebraic and basic arithmetic symbols and then uses those to analyze the workings. In the IP = PSPACE proof, they convert the black box and the Boolean circuits to an algebraic problem.[45] As mentioned previously, it has been proven that this method is not viable to solve P = NP and other time complexity problems.

These barriers are another reason why NP-complete problems are useful: if a polynomial-time algorithm can be demonstrated for an NP-complete problem, this would solve the P = NP problem in a way not excluded by the above results.

These barriers lead some computer scientists to suggest the P versus NP problem may be independent of standard axiom systems like ZFC (cannot be proved or disproved within them). An independence result could imply that either P ≠ NP and this is unprovable in (e.g.) ZFC, or that P = NP but it is unprovable in ZFC that any polynomial-time algorithms are correct.[46] However, if the problem is undecidable even with much weaker assumptions extending the Peano axioms for integer arithmetic, then nearly polynomial-time algorithms exist for all NP problems.[47] Therefore, assuming (as most complexity theorists do) some NP problems don't have efficient algorithms, proofs of independence with those techniques are impossible. This also implies proving independence from PA or ZFC with current techniques is no easier than proving all NP problems have efficient algorithms.

Logical characterizations

[edit | edit source]

The P = NP problem can be restated as certain classes of logical statements, as a result of work in descriptive complexity.

Consider all languages of finite structures with a fixed signature including a linear order relation. Then, all such languages in P are expressible in first-order logic with the addition of a suitable least fixed-point combinator. Recursive functions can be defined with this and the order relation. As long as the signature contains at least one predicate or function in addition to the distinguished order relation, so that the amount of space taken to store such finite structures is actually polynomial in the number of elements in the structure, this precisely characterizes P.

Similarly, NP is the set of languages expressible in existential second-order logic—that is, second-order logic restricted to exclude universal quantification over relations, functions, and subsets. The languages in the polynomial hierarchy, PH, correspond to all of second-order logic. Thus, the question "is P a proper subset of NP" can be reformulated as "is existential second-order logic able to describe languages (of finite linearly ordered structures with nontrivial signature) that first-order logic with least fixed point cannot?".[48] The word "existential" can even be dropped from the previous characterization, since P = NP if and only if P = PH (as the former would establish that NP = co-NP, which in turn implies that NP = PH).

Polynomial-time algorithms

[edit | edit source]

No known algorithm for a NP-complete problem runs in polynomial time. However, there are algorithms known for NP-complete problems that if P = NP, the algorithm runs in polynomial time on accepting instances (although with enormous constants, making the algorithm impractical). However, these algorithms do not qualify as polynomial time because their running time on rejecting instances are not polynomial. The following algorithm, due to Levin (without any citation), is such an example below. It correctly accepts the NP-complete language SUBSET-SUM. It runs in polynomial time on inputs that are in SUBSET-SUM if and only if P = NP:

// Algorithm that accepts the NP-complete language SUBSET-SUM.
//
// this is a polynomial-time algorithm if and only if P = NP.
//
// "Polynomial-time" means it returns "yes" in polynomial time when
// the answer should be "yes", and runs forever when it is "no".
//
// Input: S = a finite set of integers
// Output: "yes" if any subset of S adds up to 0.
// Runs forever with no output otherwise.
// Note: "Program number M" is the program obtained by
// writing the integer M in binary, then
// considering that string of bits to be a
// program. Every possible program can be
// generated this way, though most do nothing
// because of syntax errors.
FOR K = 1...∞
  FOR M = 1...K
    Run program number M for K steps with input S
    IF the program outputs a list of distinct integers
      AND the integers are all in S
      AND the integers sum to 0
    THEN
      OUTPUT "yes" and HALT

This is a polynomial-time algorithm accepting an NP-complete language only if P = NP. "Accepting" means it gives "yes" answers in polynomial time, but is allowed to run forever when the answer is "no" (also known as a semi-algorithm).

This algorithm is enormously impractical, even if P = NP. If the shortest program that can solve SUBSET-SUM in polynomial time is b bits long, the above algorithm will try at least 2b − 1 other programs first.

Formal definitions

[edit | edit source]

P and NP

[edit | edit source]

A decision problem is a problem that takes as input some string w over an alphabet Σ, and outputs "yes" or "no". If there is an algorithm (say a Turing machine, or a computer program with unbounded memory) that produces the correct answer for any input string of length n in at most cnk steps, where k and c are constants independent of the input string, then we say that the problem can be solved in polynomial time and we place it in the class P. Formally, P is the set of languages that can be decided by a deterministic polynomial-time Turing machine. Meaning,

Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \mathsf{P} = \{ L : L=L(M) \text{ for some deterministic polynomial-time Turing machine } M \}}

where

Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle L(M) = \{ w\in\Sigma^{*}: M \text{ accepts } w \}}

and a deterministic polynomial-time Turing machine is a deterministic Turing machine M that satisfies two conditions:

  1. M halts on all inputs w and
  2. there exists Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle k \in N} such that Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle T_M(n)\in O(n^k)} , where O refers to the big O notation and
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle T_M(n) = \max\{ t_M(w) : w\in\Sigma^{*}, |w| = n \}}
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle t_M(w) = \text{ number of steps }M\text{ takes to halt on input }w.}

NP can be defined similarly using nondeterministic Turing machines (the traditional way). However, a modern approach uses the concept of certificate and verifier. Formally, NP is the set of languages with a finite alphabet and verifier that runs in polynomial time. The following defines a "verifier":

Let L be a language over a finite alphabet, Σ.

L ∈ NP if, and only if, there exists a binary relation Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle R\subset\Sigma^{*}\times\Sigma^{*}} and a positive integer k such that the following two conditions are satisfied:

  1. For all Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle x\in\Sigma^{*}} , Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle x\in L \Leftrightarrow\exists y\in\Sigma^{*}} such that (x, y) ∈ R and Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle |y|\in O(|x|^k)} ; and
  2. the language Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle L_{R} = \{ x\# y:(x,y)\in R\}} over Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \Sigma\cup\{\#\}} is decidable by a deterministic Turing machine in polynomial time.

A Turing machine that decides LR is called a verifier for L and a y such that (x, y) ∈ R is called a certificate of membership of x in L.

Not all verifiers must be polynomial-time. However, for L to be in NP, there must be a verifier that runs in polynomial time.

Example

[edit | edit source]

Let

Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \mathrm{COMPOSITE} = \left \{x\in\mathbb{N} \mid x=pq \text{ for integers } p, q > 1 \right \}}
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle R = \left \{(x,y)\in\mathbb{N} \times\mathbb{N} \mid 1<y \leq \sqrt x \text{ and } y \text{ divides } x \right \}.}

Whether a value of x is composite is equivalent to of whether x is a member of COMPOSITE. It can be shown that COMPOSITE ∈ NP by verifying that it satisfies the above definition (if we identify natural numbers with their binary representations).

COMPOSITE also happens to be in P, a fact demonstrated by the invention of the AKS primality test.[49]

NP-completeness

[edit | edit source]

There are many equivalent ways of describing NP-completeness.

Let L be a language over a finite alphabet Σ.

L is NP-complete if, and only if, the following two conditions are satisfied:

  1. L ∈ NP; and
  2. any L′ in NP is polynomial-time-reducible to L (written as Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle L' \leq_{p} L} ), where Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle L' \leq_{p} L} if, and only if, the following two conditions are satisfied:
    1. There exists f : Σ* → Σ* such that for all w in Σ* we have: Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle (w\in L' \Leftrightarrow f(w)\in L)} ; and
    2. there exists a polynomial-time Turing machine that halts with f(w) on its tape on any input w.

Alternatively, if L ∈ NP, and there is another NP-complete problem that can be polynomial-time reduced to L, then L is NP-complete. This is a common way of proving some new problem is NP-complete.

Claimed solutions

[edit | edit source]

While the P versus NP problem is generally considered unsolved,[50] many amateur and some professional researchers have claimed solutions. Gerhard J. Woeginger compiled a list of 116 purported proofs from 1986 to 2016, of which 61 were proofs of P = NP, 49 were proofs of P ≠ NP, and 6 proved other results, e.g. that the problem is undecidable.[51] Some attempts at resolving P versus NP have received brief media attention,[52] though these attempts have been refuted.

[edit | edit source]

The film Travelling Salesman, by director Timothy Lanzone, is the story of four mathematicians hired by the US government to solve the P versus NP problem.[53]

In the sixth episode of The Simpsons' seventh season "Treehouse of Horror VI", the equation P = NP is seen shortly after Homer accidentally stumbles into the "third dimension".[54][55]

In the second episode of season 2 of Elementary, "Solve for X" Holmes and Watson investigate the murders of mathematicians who were attempting to solve P versus NP.[56][57]

Similar problems

[edit | edit source]

See also

[edit | edit source]

Notes

[edit | edit source]
  1. A nondeterministic Turing machine can move to a state that is not determined by the previous state. Such a machine could solve an NP problem in polynomial time by falling into the correct answer state (by luck), then conventionally verifying it. Such machines are not practical for solving realistic problems but can be used as theoretical models.
  2. The polls were conducted in 2001, 2011, and 2018 but published in 2002, 2012, and 2019 respectively.[11]
  3. Exactly how efficient a solution must be to pose a threat to cryptography depends on the details. A solution of Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle O(N^2)} with a reasonable constant term would be disastrous. On the other hand, a solution that is Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \Omega(N^4)} in almost all cases would not pose an immediate practical danger.

References

[edit | edit source]
  1. "Explained: P vs. NP". MIT News | Massachusetts Institute of Technology. 29 October 2009. Retrieved 6 March 2026.
  2. Fortnow, Lance (2009). "The status of the P versus NP problem" (PDF). Communications of the ACM. 52 (9): 78–86. CiteSeerX 10.1.1.156.767. doi:10.1145/1562164.1562186. S2CID 5969255. Archived from the original (PDF) on 24 February 2011. Retrieved 26 January 2010.
  3. Fortnow, Lance (2013). The Golden Ticket: P, NP, and the Search for the Impossible. Princeton, NJ: Princeton University Press. ISBN 9780691156491.
  4. Cook, Stephen (1971). "The complexity of theorem proving procedures". Proceedings of the Third Annual ACM Symposium on Theory of Computing. pp. 151–158. doi:10.1145/800157.805047. ISBN 9781450374644. S2CID 7573663.
  5. Levin, L. A. (1973). Универсальные задачи перебора [Problems of Information Transmission]. Пробл. Передачи Информ (in Russian). 9 (3): 115–116.
  6. NSA (2012). "Letters from John Nash" (PDF). Archived (PDF) from the original on 9 November 2018.
  7. Hartmanis, Juris. "Gödel, von Neumann, and the P = NP problem" (PDF). Bulletin of the European Association for Theoretical Computer Science. 38: 101–107.
  8. Sipser, Michael: Introduction to the Theory of Computation, Second Edition, International Edition, page 270. Thomson Course Technology, 2006. Definition 7.19 and Theorem 7.20.
  9. 9.0 9.1 9.2 9.3 Gasarch, William I. (June 2002). "The P=?NP poll" (PDF). SIGACT News. 33 (2): 34–47. CiteSeerX 10.1.1.172.1005. doi:10.1145/564585.564599. S2CID 36828694. Archived (PDF) from the original on 15 June 2007.
  10. Gasarch, William I. "The Second P=?NP poll" (PDF). SIGACT News. 74. Archived (PDF) from the original on 24 January 2014.
  11. 11.0 11.1 11.2 11.3 "Guest Column: The Third P =? NP Poll1" (PDF). Archived (PDF) from the original on 31 March 2019. Retrieved 25 May 2020.
  12. Aaronson, Scott. "PHYS771 Lecture 6: P, NP, and Friends". Retrieved 27 August 2007.
  13. "MSc course: Foundations of Computer Science". www.cs.ox.ac.uk. Retrieved 25 May 2020.
  14. Colbourn, Charles J. (1984). "The complexity of completing partial Latin squares". Discrete Applied Mathematics. 8 (1): 25–30. doi:10.1016/0166-218X(84)90075-1.
  15. Holyer, I. (1981). "The NP-completeness of some edge-partition problems". SIAM J. Comput. 10 (4): 713–717. doi:10.1137/0210054.
  16. Fraenkel, Aviezri; Lichtenstein, D. (1981). "Computing a perfect strategy for n × n chess requires time exponential in n". Journal of Combinatorial Theory. Series A. 31 (2): 199–214. doi:10.1016/0097-3165(81)90016-9.
  17. Eppstein, David. "Computational Complexity of Games and Puzzles".
  18. Fischer, Michael J.; Rabin, Michael O. (1974). "Super-Exponential Complexity of Presburger Arithmetic". Proceedings of the SIAM-AMS Symposium in Applied Mathematics. 7: 27–41. Archived from the original on 15 September 2006. Retrieved 15 October 2017.
  19. Valiant, Leslie G. (1979). "The complexity of enumeration and reliability problems". SIAM Journal on Computing. 8 (3): 410–421. doi:10.1137/0208032.
  20. 20.0 20.1 Ladner, R.E. (1975). "On the structure of polynomial time reducibility". Journal of the ACM. 22: 151–171 See Corollary 1.1. doi:10.1145/321864.321877. S2CID 14352974.
  21. Arvind, Vikraman; Kurur, Piyush P. (2006). "Graph isomorphism is in SPP". Information and Computation. 204 (5): 835–852. doi:10.1016/j.ic.2006.02.002.
  22. Schöning, Uwe (1988). "Graph isomorphism is in the low hierarchy". Journal of Computer and System Sciences. 37 (3): 312–323. doi:10.1016/0022-0000(88)90010-4.
  23. Babai, László (2018). "Group, graphs, algorithms: the graph isomorphism problem". Proceedings of the International Congress of Mathematicians—Rio de Janeiro 2018. Vol. IV. Invited lectures. World Sci. Publ., Hackensack, NJ. pp. 3319–3336. MR 3966534.
  24. Lance Fortnow. Computational Complexity Blog: Complexity Class of the Week: Factoring. 13 September 2002.
  25. Pisinger, D. 2003. "Where are the hard knapsack problems?" Technical Report 2003/08, Department of Computer Science, University of Copenhagen, Copenhagen, Denmark
  26. Kawarabayashi, Ken-ichi; Kobayashi, Yusuke; Reed, Bruce (2012). "The disjoint paths problem in quadratic time". Journal of Combinatorial Theory. Series B. 102 (2): 424–435. doi:10.1016/j.jctb.2011.07.004.
  27. Johnson, David S. (1987). "The NP-completeness column: An ongoing guide (edition 19)". Journal of Algorithms. 8 (2): 285–303. CiteSeerX 10.1.1.114.3864. doi:10.1016/0196-6774(87)90043-5.
  28. Gondzio, Jacek; Terlaky, Tamás (1996). "3 A computational view of interior point methods". In J. E. Beasley (ed.). Advances in linear and integer programming. Oxford Lecture Series in Mathematics and its Applications. 4. New York: Oxford University Press. pp. 103–144. MR 1438311. Postscript file at website of Gondzio and at McMaster University website of Terlaky.
  29. 29.0 29.1 Cook, Stephen (April 2000). "The P versus NP Problem" (PDF). Clay Mathematics Institute. Archived (PDF) from the original on 16 December 2013. Retrieved 18 October 2006.
  30. Rosenberger, Jack (May 2012). "P vs. NP poll results". Communications of the ACM. 55 (5): 10.
  31. Aaronson, Scott (4 September 2006). "Reasons to believe"., point 9.
  32. Balcazar, Jose Luis; Diaz, Josep; Gabarro, Joaquim (1990). Structural Complexity II. Springer Verlag. ISBN 3-540-52079-1., Theorem 3.9
  33. See Horie, S.; Watanabe, O. (1997). "Hard instance generation for SAT". Algorithms and Computation. Lecture Notes in Computer Science. 1350. Springer. pp. 22–31. arXiv:cs/9809117. Bibcode:1998cs........9117H. doi:10.1007/3-540-63890-3_4. ISBN 978-3-540-63890-2. for a reduction of factoring to SAT. A 512-bit factoring problem (8400 MIPS-years when factored) translates to a SAT problem of 63,652 variables and 406,860 clauses.
  34. See, for example, Massacci, F.; Marraro, L. (2000). "Logical cryptanalysis as a SAT problem". Journal of Automated Reasoning. 24 (1): 165–203. CiteSeerX 10.1.1.104.962. doi:10.1023/A:1006326723002. S2CID 3114247. in which an instance of DES is encoded as a SAT problem with 10336 variables and 61935 clauses. A 3DES problem instance would be about 3 times this size.
  35. De, Debapratim; Kumarasubramanian, Abishek; Venkatesan, Ramarathnam (2007). "Inversion attacks on secure hash functions using SAT solvers". Theory and Applications of Satisfiability Testing – SAT 2007. International Conference on Theory and Applications of Satisfiability Testing. Springer. pp. 377–382. doi:10.1007/978-3-540-72788-0_36.
  36. Berger, B.; Leighton, T. (1998). "Protein folding in the hydrophobic-hydrophilic (HP) model is NP-complete". Journal of Computational Biology. 5 (1): 27–40. CiteSeerX 10.1.1.139.5547. doi:10.1089/cmb.1998.5.27. PMID 9541869.
  37. History of this letter and its translation from Sipser, Michael. "The History and Status of the P versus NP question" (PDF). Archived (PDF) from the original on 2 February 2014.
  38. Johnson, David S. (August 2012). "A Brief History of NP-Completeness, 1954–2012". In Grötschel, M. (ed.). Optimization Stories (PDF). Documenta Mathematica. pp. 359–376. ISBN 978-3-936609-58-5. ISSN 1431-0643.
  39. Knuth, Donald E. (20 May 2014). Twenty Questions for Donald Knuth. InformIT. Retrieved 20 July 2014.
  40. Foulds, L. R. (October 1983). "The Heuristic Problem-Solving Approach". Journal of the Operational Research Society. 34 (10): 927–934. doi:10.2307/2580891. JSTOR 2580891.
  41. R. Impagliazzo, "A personal view of average-case complexity", p. 134, 10th Annual Structure in Complexity Theory Conference (SCT'95), 1995.
  42. "Tentative program for the workshop on "Complexity and Cryptography: Status of Impagliazzo's Worlds"". Archived from the original on 15 November 2013.
  43. Baker, T. P.; Gill, J.; Solovay, R. (1975). "Relativizations of the P =? NP Question". SIAM Journal on Computing. 4 (4): 431–442. doi:10.1137/0204037.
  44. Razborov, Alexander A.; Steven Rudich (1997). "Natural proofs". Journal of Computer and System Sciences. 55 (1): 24–35. doi:10.1006/jcss.1997.1494.
  45. 45.0 45.1 Aaronson, S.; Wigderson, A. (2008). Algebrization: A New Barrier in Complexity Theory (PDF). Proceedings of ACM STOC'2008. pp. 731–740. doi:10.1145/1374376.1374481. Archived (PDF) from the original on 21 February 2008.
  46. Aaronson, Scott. "Is P Versus NP Formally Independent?" (PDF). Archived (PDF) from the original on 16 January 2017..
  47. Template:Cite tech report.
  48. Elvira Mayordomo. "P versus NP" Archived 16 February 2012 at the Wayback Machine Monografías de la Real Academia de Ciencias de Zaragoza 26: 57–68 (2004).
  49. Agrawal, Manindra; Kayal, Neeraj; Saxena, Nitin (2004). "PRIMES is in P" (PDF). Annals of Mathematics. 160 (2): 781–793. doi:10.4007/annals.2004.160.781. JSTOR 3597229. Archived (PDF) from the original on 26 September 2006.
  50. Markoff, John (8 October 2009). "Prizes Aside, the P-NP Puzzler Has Consequences". The New York Times.
  51. Gerhard J. Woeginger. "The P-versus-NP page". Retrieved 24 June 2018.
  52. Markoff, John (16 August 2010). "Step 1: Post Elusive Proof. Step 2: Watch Fireworks". The New York Times. Retrieved 20 September 2010.
  53. Geere, Duncan (26 April 2012). "'Travelling Salesman' movie considers the repercussions if P equals NP". Wired UK. Retrieved 26 April 2012.
  54. Hardesty, Larry (29 October 2009). "Explained: P vs. NP".
  55. Shadia, Ajam (13 September 2013). "What is the P vs. NP problem? Why is it important?".
  56. Gasarch, William (7 October 2013). "P vs NP is Elementary? No— P vs NP is ON Elementary". blog.computationalcomplexity.org. Retrieved 6 July 2018.
  57. Kirkpatrick, Noel (4 October 2013). "Elementary Solve for X Review: Sines of Murder". TV.com. Retrieved 6 July 2018.
  58. 58.0 58.1 Wigderson, Avi (2019). Mathematics and Computation: A Theory Revolutionizing Technology and Science. Princeton University Press. ISBN 978-0-691-18913-0.
  59. L. G. Valiant. Completeness classes in algebra. In Proceedings of 11th ACM STOC, pp. 249–261, 1979.

Sources

[edit | edit source]

Further reading

[edit | edit source]
[edit | edit source]

Template:ComplexityClasses