P/poly algorithm for polynomial identity testing - MathOverflow most recent 30 from http://mathoverflow.net2013-05-21T06:25:43Zhttp://mathoverflow.net/feeds/question/35301http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://mathoverflow.net/questions/35301/p-poly-algorithm-for-polynomial-identity-testingP/poly algorithm for polynomial identity testingRicky Demer2010-08-12T00:37:21Z2010-08-12T08:13:45Z
<p>By the Schwartz–Zippel lemma, "Is this arithmetic formula identically zero?" is in coRP $\subseteq$ BPP $\subset$ P/poly, with the second inclusion by Adleman's theorem. By basically following the proof, but using the improved error bound that comes from the original algorithm only having one-sided error, one gets an algorithm that computes suitable advice. (equivalently, a suitable circuit)</p>
<p>Is there any known P/poly algorithm for this problem with advice that can be computed faster?</p>
<p>(I already know about www.cs.sfu.ca/~kabanets/Research/poly.html)</p>
http://mathoverflow.net/questions/35301/p-poly-algorithm-for-polynomial-identity-testing/35324#35324Answer by Ryan Williams for P/poly algorithm for polynomial identity testingRyan Williams2010-08-12T08:13:45Z2010-08-12T08:13:45Z<p>The Schwartz-Zippel lemma is very fast, only one evaluation of the formula at one random point. There's nothing better known that minimizes time and error as well as Schwartz-Zippel. But Schwartz-Zippel requires a lot of randomness in each repetition: a fresh new point of n elements.</p>
<p>Have you tried some of the polynomial identity tests with better tradeoffs between randomness and error? Their running time (and the running time dependence on the error) is a bit worse than Schwartz-Zippel, but the number of random bits needed is much less than Schwartz-Zippel. So in the application of Adleman's theorem, the <em>sizes</em> of the witnesses you need to hard-code in the non-uniform circuit will shrink, but the time dependence on error increases, potentially making the <em>number</em> of necessary witnesses increase. Given these complex tradeoffs, I'm not sure which of them would work best for obtaining small circuits.</p>
<p>For a quick overview of these alternative identity tests and their tradeoffs, see the table on p.3 in Agrawal and Biswas: <a href="http://www.cse.iitk.ac.in/users/manindra/algebra/identity.pdf" rel="nofollow">http://www.cse.iitk.ac.in/users/manindra/algebra/identity.pdf</a></p>