
This article is a list of notable unsolved problems in computer science. A problem in computer science is considered unsolved when no solution is known or when experts in the field disagree about proposed solutions.
Computational complexity
- P versus NP problem
- What is the relationship between BQP and NP?
- NC = P problem The P vs NP problem is a major unsolved question in computer science that asks whether every problem whose solution can be quickly verified by a computer (NP) can also be quickly solved by a computer (P). This question has profound implications for fields such as cryptography, algorithm design, and computational theory.
- NP = co-NP problem
- P = BPP problem
- P = PSPACE problem
- L = NL problem
- PH = PSPACE problem
- L = P problem
- L = RL problem
- Unique games conjecture
- Is the exponential time hypothesis true?
- Is the strong exponential time hypothesis (SETH) true?
- Do one-way functions exist?
- Is public-key cryptography possible?
- Log-rank conjecture
Polynomial versus nondeterministic-polynomial time for specific algorithmic problems
- Can integer factorization be done in polynomial time on a classical (non-quantum) computer?
- Can the discrete logarithm be computed in polynomial time on a classical (non-quantum) computer?
- Can the shortest vector of a lattice be computed in polynomial time on a classical or quantum computer?
- Can the graph isomorphism problem be solved in polynomial time on a classical computer?
The graph isomorphism problem involves determining whether two finite graphs are isomorphic, meaning there is a one-to-one correspondence between their vertices and edges that preserves adjacency. While the problem is known to be in NP, it is not known whether it is NP-complete or solvable in polynomial time. This uncertainty places it in a unique complexity class, making it a significant open problem in computer science.
- Is graph canonization polynomial time equivalent to the graph isomorphism problem?
- Can leaf powers and k-leaf powers be recognized in polynomial time?
- Can parity games be solved in polynomial time?
- Can the rotation distance between two binary trees be computed in polynomial time?
- Can graphs of bounded clique-width be recognized in polynomial time?
- Can one find a simple closed quasigeodesic on a convex polyhedron in polynomial time?
- Can a simultaneous embedding with fixed edges for two given graphs be found in polynomial time?
- Can the square-root sum problem be solved in polynomial time in the Turing machine model?
Other algorithmic problems
- The dynamic optimality conjecture: Do splay trees have a bounded competitive ratio?
- Can a depth-first search tree be constructed in NC?
- Can the fast Fourier transform be computed in o(n log n) time?
- What is the fastest algorithm for multiplication of two n-digit numbers?
- What is the lowest possible average-case time complexity of Shellsort with a deterministic fixed gap sequence?
- Can 3SUM be solved in strongly sub-quadratic time, that is, in time O(n2−ϵ) for some ϵ>0?
- Can the edit distance between two strings of length n be computed in strongly sub-quadratic time? (This is only possible if the strong exponential time hypothesis is false.)
- Can X + Y sorting be done in o(n2 log n) time?
- What is the fastest algorithm for matrix multiplication?
- Can all-pairs shortest paths be computed in strongly sub-cubic time, that is, in time O(V3−ϵ) for some ϵ>0?
- Can the Schwartz–Zippel lemma for polynomial identity testing be derandomized?
- Does linear programming admit a strongly polynomial-time algorithm? (This is problem #9 in Smale's list of problems.)
- How many queries are required for envy-free cake-cutting?
- What is the algorithmic complexity of the minimum spanning tree problem? Equivalently, what is the decision tree complexity of the MST problem? The optimal algorithm to compute MSTs is known, but it relies on decision trees, so its complexity is unknown.
- Gilbert–Pollak conjecture: Is the Steiner ratio of the Euclidean plane equal to
?
Programming language theory
- Barendregt–Geuvers–Klop conjecture
Other problems
- Is the Aanderaa–Karp–Rosenberg conjecture true?
- Černý Conjecture: If a deterministic finite automaton with
states has a synchronizing word, must it have one of length at most
?
- Generalized star-height problem: Can all regular languages be expressed using generalized regular expressions with a limited nesting depth of Kleene stars?
- Separating words problem: How many states are needed in a deterministic finite automaton that behaves differently on two given strings of length
?
- What is the Turing completeness status of all unique elementary cellular automata?
- The problem (still open as of 2018) to determine whether the length of the minimal uncompletable word of
is polynomial in
, nor even whether it's polynomial in
. It's said that
is a variable-length code for all
, if
then
and for all
,
. In such case, we don't know if it's polynomial in
. It's one of possible weakenings of the Restivo's conjecture (which is already disproven in general, we just don't know the upper bounds).
- The problem to determine all positive integers
such that the concatenation of
and
in base
uses at most
distinct characters for
and
fixed[citation needed] and many other problems in the coding theory are also the unsolved problems in mathematics.
References
- "P vs. NP – The Greatest Unsolved Problem in Computer Science". Quanta Magazine. 2023-12-01. Retrieved 2025-03-11.
- Klarreich, Erica (2015-12-14). "Landmark Algorithm Breaks 30-Year Impasse". Quanta Magazine. Retrieved 2025-03-11.
- Fellows, Michael R.; Rosamond, Frances A.; Rotics, Udi; Szeider, Stefan (2009). "Clique-width is NP-complete" (PDF). SIAM Journal on Discrete Mathematics. 23 (2): 909–939. doi:10.1137/070687256. MR 2519936. S2CID 18055798. Archived from the original (PDF) on 2019-02-27.
- Demaine, Erik D.; O'Rourke, Joseph (2007). "24 Geodesics: Lyusternik–Schnirelmann". Geometric folding algorithms: Linkages, origami, polyhedra. Cambridge: Cambridge University Press. pp. 372–375. doi:10.1017/CBO9780511735172. ISBN 978-0-521-71522-5. MR 2354878.
- Gassner, Elisabeth; Jünger, Michael; Percan, Merijam; Schaefer, Marcus; Schulz, Michael (2006). "Simultaneous graph embeddings with fixed edges" (PDF). Graph-Theoretic Concepts in Computer Science: 32nd International Workshop, WG 2006, Bergen, Norway, June 22–24, 2006, Revised Papers (PDF). Lecture Notes in Computer Science. Vol. 4271. Berlin: Springer. pp. 325–335. doi:10.1007/11917496_29. ISBN 978-3-540-48381-6. MR 2290741..
External links
- Open problems around exact algorithms by Gerhard J. Woeginger, Discrete Applied Mathematics 156 (2008) 397–405.
- The RTA list of open problems – open problems in rewriting.
- The TLCA List of Open Problems – open problems in area typed lambda calculus.
This article is a list of notable unsolved problems in computer science A problem in computer science is considered unsolved when no solution is known or when experts in the field disagree about proposed solutions Computational complexityP versus NP problem What is the relationship between BQP and NP NC P problem The P vs NP problem is a major unsolved question in computer science that asks whether every problem whose solution can be quickly verified by a computer NP can also be quickly solved by a computer P This question has profound implications for fields such as cryptography algorithm design and computational theory NP co NP problem P BPP problem P PSPACE problem L NL problem PH PSPACE problem L P problem L RL problem Unique games conjecture Is the exponential time hypothesis true Is the strong exponential time hypothesis SETH true Do one way functions exist Is public key cryptography possible Log rank conjecturePolynomial versus nondeterministic polynomial time for specific algorithmic problemsCan integer factorization be done in polynomial time on a classical non quantum computer Can the discrete logarithm be computed in polynomial time on a classical non quantum computer Can the shortest vector of a lattice be computed in polynomial time on a classical or quantum computer Can the graph isomorphism problem be solved in polynomial time on a classical computer The graph isomorphism problem involves determining whether two finite graphs are isomorphic meaning there is a one to one correspondence between their vertices and edges that preserves adjacency While the problem is known to be in NP it is not known whether it is NP complete or solvable in polynomial time This uncertainty places it in a unique complexity class making it a significant open problem in computer science Is graph canonization polynomial time equivalent to the graph isomorphism problem Can leaf powers and k leaf powers be recognized in polynomial time Can parity games be solved in polynomial time Can the rotation distance between two binary trees be computed in polynomial time Can graphs of bounded clique width be recognized in polynomial time Can one find a simple closed quasigeodesic on a convex polyhedron in polynomial time Can a simultaneous embedding with fixed edges for two given graphs be found in polynomial time Can the square root sum problem be solved in polynomial time in the Turing machine model Other algorithmic problemsThe dynamic optimality conjecture Do splay trees have a bounded competitive ratio Can a depth first search tree be constructed in NC Can the fast Fourier transform be computed in o n log n time What is the fastest algorithm for multiplication of two n digit numbers What is the lowest possible average case time complexity of Shellsort with a deterministic fixed gap sequence Can 3SUM be solved in strongly sub quadratic time that is in time O n2 ϵ for some ϵ gt 0 Can the edit distance between two strings of length n be computed in strongly sub quadratic time This is only possible if the strong exponential time hypothesis is false Can X Y sorting be done in o n2 log n time What is the fastest algorithm for matrix multiplication Can all pairs shortest paths be computed in strongly sub cubic time that is in time O V3 ϵ for some ϵ gt 0 Can the Schwartz Zippel lemma for polynomial identity testing be derandomized Does linear programming admit a strongly polynomial time algorithm This is problem 9 in Smale s list of problems How many queries are required for envy free cake cutting What is the algorithmic complexity of the minimum spanning tree problem Equivalently what is the decision tree complexity of the MST problem The optimal algorithm to compute MSTs is known but it relies on decision trees so its complexity is unknown Gilbert Pollak conjecture Is the Steiner ratio of the Euclidean plane equal to 2 3 displaystyle 2 sqrt 3 Programming language theoryBarendregt Geuvers Klop conjectureOther problemsIs the Aanderaa Karp Rosenberg conjecture true Cerny Conjecture If a deterministic finite automaton with n displaystyle n states has a synchronizing word must it have one of length at most n 1 2 displaystyle n 1 2 Generalized star height problem Can all regular languages be expressed using generalized regular expressions with a limited nesting depth of Kleene stars Separating words problem How many states are needed in a deterministic finite automaton that behaves differently on two given strings of length n displaystyle n What is the Turing completeness status of all unique elementary cellular automata The problem still open as of 2018 to determine whether the length of the minimal uncompletable word of M displaystyle M is polynomial in l M displaystyle l M nor even whether it s polynomial in sl M displaystyle sl M It s said that M displaystyle M is a variable length code for all u1 un v1 vm M displaystyle u 1 u n v 1 v m in M if u1 un v1 vm displaystyle u 1 u n v 1 v m then n m displaystyle n m and for all 0 lt i n displaystyle 0 lt i leq n ui vi displaystyle u i v i In such case we don t know if it s polynomial in l M displaystyle l M It s one of possible weakenings of the Restivo s conjecture which is already disproven in general we just don t know the upper bounds The problem to determine all positive integers n displaystyle n such that the concatenation of n displaystyle n and n2 displaystyle n 2 in base b displaystyle b uses at most k displaystyle k distinct characters for b displaystyle b and k displaystyle k fixed citation needed and many other problems in the coding theory are also the unsolved problems in mathematics References P vs NP The Greatest Unsolved Problem in Computer Science Quanta Magazine 2023 12 01 Retrieved 2025 03 11 Klarreich Erica 2015 12 14 Landmark Algorithm Breaks 30 Year Impasse Quanta Magazine Retrieved 2025 03 11 Fellows Michael R Rosamond Frances A Rotics Udi Szeider Stefan 2009 Clique width is NP complete PDF SIAM Journal on Discrete Mathematics 23 2 909 939 doi 10 1137 070687256 MR 2519936 S2CID 18055798 Archived from the original PDF on 2019 02 27 Demaine Erik D O Rourke Joseph 2007 24 Geodesics Lyusternik Schnirelmann Geometric folding algorithms Linkages origami polyhedra Cambridge Cambridge University Press pp 372 375 doi 10 1017 CBO9780511735172 ISBN 978 0 521 71522 5 MR 2354878 Gassner Elisabeth Junger Michael Percan Merijam Schaefer Marcus Schulz Michael 2006 Simultaneous graph embeddings with fixed edges PDF Graph Theoretic Concepts in Computer Science 32nd International Workshop WG 2006 Bergen Norway June 22 24 2006 Revised Papers PDF Lecture Notes in Computer Science Vol 4271 Berlin Springer pp 325 335 doi 10 1007 11917496 29 ISBN 978 3 540 48381 6 MR 2290741 External linksOpen problems around exact algorithms by Gerhard J Woeginger Discrete Applied Mathematics 156 2008 397 405 The RTA list of open problems open problems in rewriting The TLCA List of Open Problems open problems in area typed lambda calculus