¿Problemas de suma de raíces cuadradas difíciles?


37

El problema de la suma de las raíces cuadradas pregunta, dadas dos secuencias y b 1 , b 2 , ... , b n de enteros positivos, si la suma i a1,a2,,anb1,b2,,bn menor que, igual o mayor que la sumaiiai . El estado de complejidad de este problema es abierto; Veaesta publicaciónpara más detalles. Este problema surge naturalmente en la geometría computacional, especialmente en problemas que involucran caminos más cortos euclidianos, y es un obstáculo significativo en la transferencia de algoritmos para esos problemas desde la RAM real a la RAM entera estándar.ibi

Llame a un problema Π suma-de-raíces-cuadradas-duro (abreviado Σ√-duro?) Si hay una reducción del tiempo polinómico de la suma del problema de raíces cuadradas a Π. No es difícil demostrar que el siguiente problema es la suma de las raíces cuadradas:

Trayectos más cortos en gráficos geométricos euclidianos 4d

Instance: A graph G=(V,E) whose vertices are points in Z4, with edges weighted by Euclidean distane; two vertices s and t

Output: The shortest path from s to t in G.

Of course this problem can be solved in polynomial-time on the real RAM using Dijkstra's algorithm, but each comparison in that algorithm requires solving a sum-of-square-roots problem. The reduction uses the fact that any integer can be written as the sum of four perfect squares; the output of the reduction is actually a cycle on 2n+2 vertices.

¿Qué otros problemas son la suma de las raíces cuadradas difíciles? Estoy particularmente interesado en los problemas para los que hay una solución de tiempo polinómico en la RAM real. Vea mi pregunta anterior para una posibilidad.

Como Robin sugiere, las respuestas aburridas son aburridas. Para cualquier clase de complejidad X que contenga la suma de las raíces cuadradas (por ejemplo, PSPACE o EXPTIME), cada problema de X-hard es aburridamente la suma de las raíces cuadradas.


1
Thanks to Suresh and Peter for suggesting this question.
Jeffε

8
Perhaps you could also rule out trivial answers by insisting that the answers shouldn't just be problems that are hard for a class that's known to contain the Sum-of-square-roots problem. For example, any PSPACE-hard problem would be Sum-of-square-roots-hard, but that's probably not interesting.
Robin Kothari

Do you really mean R4 in your shortest-paths problem statement, or Z4? The former doesn't seem like it could use an integer RAM at all, and presumably the problem is still Σ√-hard restricting to integer points...
Steven Stadnicki

@Steven: Yup, you're right. Edited.
Jeffε

Respuestas:



21

This should be a comment, as it is a mostly boring answer, but I don´t have enough reputation.

The sum of square roots problem is in PPPPPPP from [ABKM98], so any problem hard for this class has the required property. This is done by reducing the sum-of-square-roots problem to a problem called PosSLP, defined as deciding whether a straight-line problem represents a positive integer, so that problem is sum-of-square-roots hard.

[ABKM98]: On the Complexity of Numerical analysis, by Allender, Burgisser, Kjeldgaard-Pedersen and Miltersen.


9
There is also this improvement [mpi-inf.mpg.de/~csaha/Sum_sqrroot.pdf] that puts the problem in CoRPPP and also proves that a restricted version of the problem needs a polynomial number of bits.
Elias

1
@Elias: Can you elaborate? From a cursory look, Kayal and Saha seem to be discussing the “polynomial version” of the sum of square roots problem, which is related to but different from the usual sum of square roots problem.
Tsuyoshi Ito

1
@Abel: (1) Hi Abel, glad to see your post! (2) For what it’s worth, [ABKM98] was actually presented at CCC 2006 and published in 2009. (3) A boring answer should not be a comment but should be kept to yourself. But I do not think that this is a boring answer. :)
Tsuyoshi Ito

1
@Tsuyoshi: They solved completely the polynomial version of the problem. Based on this they prove that if ai are of special form, i.e. ai=ibijXdij where X>(B+1)(nd)O(1), B=max{bij} and d=max{di}, then we need a polynomial number of bits to decide the problem.
Elias

3
@Tsuyoshi: I completely misunderstood your question. I am sorry for this. What Kayal and Saha prove is that DegSLP is in CoRPPP. I should be more careful. Thank you for this.
Elias
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.