Property Testing on Boolean Functions Thesis Proposal

Total Page:16

File Type:pdf, Size:1020Kb

Property Testing on Boolean Functions Thesis Proposal Property testing on boolean functions Thesis proposal Eric Blais Computer Science Department Carnegie Mellon University Pittsburgh, PA [email protected] May 20, 2010 Abstract Property testing deals with the following general question: given query access to some combinatorial object, what properties of the ob- ject can one test with only a small number of queries? In this thesis, we will study property testing on boolean functions. Specifically, we will focus on two basic questions in the field: Can we characterize the set of properties on boolean functions that can be tested with a constant number of queries? And can we determine the exact number of queries needed to test some fundamental properties of boolean functions? 1 Contents 1 Introduction 3 2 Definitions and notation 4 2.1 Boolean functions . 4 2.2 Property testing . 5 3 Characterization of testable properties 5 3.1 Related work . 6 3.2 Testing function isomorphism . 7 3.3 Completed work on testing function isomorphism . 7 3.4 Proposed research . 8 4 Exact query complexity bounds 10 4.1 Related work . 10 4.2 Completed work on testing juntas . 11 4.3 Proposed research . 11 5 Other proposed research 12 5.1 Alternative models of property testing . 13 5.2 Application of property testing ideas to other domains . 14 6 Suggested timeline 14 2 1 Introduction This thesis is primarily concerned with the study of boolean functions. Boolean functions play a central role in many areas of computer science: complexity theory [44], machine learning [19], coding theory [43], cryptog- raphy [18], circuit design [34], data structures [30], and combinatorics [16]. Boolean functions have also become an important subject in the field of property testing; it is this last topic that I propose to study in this thesis. Property testing deals with the following general question: for which properties of combinatorial objects (such as boolean functions) can we dis- tinguish between objects that have the property and objects that are \far" from having the property while making only a small number of local queries to the object? The field of property testing is very young, but it has already generated a large body of research (see, e.g., the recent surveys [24, 36, 37]) and has led to notable insights into sub-linear time algorithms [38] and learning theory [36]. Much of the research in property testing has focused on characterizing the set of necessary and sufficient conditions for a property to be testable with only a constant number of queries.1 This line of research has been very successful in characterizing testable graph properties and algebraic prop- erties, but there has been comparatively little progress in characterizing testable properties of boolean functions. The first goal of this thesis is to make some progress in characterizing testable properties of boolean functions. I aim to do so through the study of function isomorphism properties. These properties, their relation to the characterization project, and my plan for this part of the thesis are presented in Section 3. The second goal of this thesis is to go beyond the characterization project and obtain precise bounds on the number of queries required to test certain fundamental properties of boolean functions. Some of this research has already been carried out, and has resulted in nearly tight bounds on the query complexity required to test juntas. These results and other properties that I plan to study as part of this goal are presented in Section 4. The above two goals form the principal line of inquiry that I plan to pursue in the completion of this thesis. There are, however, many other 1I.e., a number of queries that is independent of the size of the object. Precise defini- tions are for all the concepts discussed in this introduction are presented in Section 2. 3 interesting questions related to property testing on boolean functions. Sec- tion 5 contains a brief description of some of the questions that I may also pursue in the course of completing this thesis. 2 Definitions and notation This section introduces the definitions and notation that we use in the rest of the document. All our definitions and notation choices are standard; we include them here for completeness. 2.1 Boolean functions A boolean function f : f0; 1gn ! f0; 1g is a function that takes in n boolean variables or, equivalently, an n-dimensional boolean vector, and outputs a boolean value. We write Bn to represent the set of boolean functions n S n f0; 1g ! f0; 1g, and let B = n≥1 B . A coordinate i 2 [n] is relevant to the function f : f0; 1gn ! f0; 1g if there are is an input x 2 f0; 1gn such that f(x) 6= f(x(i)), where x(i) 2 f0; 1gn is the input obtained by flipping the value of the ith coordinate of x. The influence of i in f is the probability that f(x) 6= f(x(i)) when x is chosen uniformly at random from f0; 1gn; the coordinate i is relevant iff it has nonzero influence. A function that has at most k relevant coordinates is called a k-junta. For any function f : f0; 1gn ! f0; 1g and permutation π on [n], we π n π let f : f0; 1g ! f0; 1g be the function defined by f (x1; : : : ; xn) = n f(xπ(1); : : : ; xπ(n)) for every input x = (x1; : : : ; xn) 2 f0; 1g . When a func- tion g : f0; 1gn ! f0; 1g satisfies g = f π for some permutation π, we say that f and g are isomorphic. The distance between two boolean functions f; g : f0; 1gn ! f0; 1g is the probability that they disagree on an input chosen uniformly at random from f0; 1gn: ∆(f; g) := Pr [f(x) 6= g(x)]: x2f0;1gn 4 2.2 Property testing A property of boolean functions is a subset P ⊆ B of all boolean functions that is closed under permutation of the coordinates. That is, if P is a property of boolean functions and f : f0; 1gn ! f0; 1g is in P, then for every permutation π on [n] the function f π is also in P. The distance between a function f : f0; 1gn ! f0; 1g and a property P is the minimum distance between f and any function in P\Bn: ∆(f; P) := min ∆(f; g): g2P\Bn For any > 0, when ∆(f; P) ≥ we say that f is -far from P; when ∆(f; P) ≤ we say that f is -close to P. The central notion in property testing is, not surprisingly, that of a tester: Definition 1 (Tester). Fix q : N ! N and > 0. A randomized algorithm A with oracle access to an unknown function f : f0; 1gn ! f0; 1g is a (q; )- tester for the property P if it queries f on at most q(n) inputs and 2 • Accepts f with probability at least 3 when f 2 P; and 2 • Rejects f with probability at least 3 when f is -far from P. A tester that accepts functions in P with probability 1 has one-sided er- ror. A tester that fixes all of its queries in advance is non-adaptive; otherwise it is adaptive. The query complexity of the task of -testing the property P is the func- tion QP, : N ! N where QP,(n) is the minimal value of q(n) for which there is a (q; )-tester for P. A property P is efficiently testable, or simply testable, when for every > 0, there exists a constant c = c() such that QP, is bounded above by c. When this is not the case, P is considered not (efficiently) testable. 3 Characterization of testable properties In this section, we discuss the first goal mentioned in the introduction: to make some progress on the project of characterizing the testable properties of boolean functions. 5 We begin the section with a survey of related work. We then introduce the function isomorphism testing problem and review the results that I have recently obtained on this problem. Finally, we discuss the ways in which I plan to apply the results on testing function isomorphism to obtain new characterizations of testable properties of boolean functions. 3.1 Related work The problem of characterizing the set of testable properties was first raised by Goldreich, Goldwasser, and Ron [27] in the context of testing graph properties. The problem has been largely solved in this context [2, 3, 4, 6], and much progress has also been made on the characterization of testable algebraic properties [12, 29, 40]. (See also [41] and the references therein.) The progress on characterizing testable properties on boolean functions is more limited. Many properties of boolean functions have been studied: monotonicity [21, 23, 26], being a dictator function [11, 35] or a junta [17, 22], being representable by a conjunction or a DNF with few terms [35], being a halfspace [32, 33], having a low-dimensional or sparse Fourier representa- tion [28], etc. But these results remain largely isolated by the specificity of the proof techniques that are used. A more general result was obtained by Diakonikolas et al. [20] who showed that many properties related to the concise representation of boolean functions (e.g., being representable by a DNF with few terms, by a small decision list, by a small decision tree, or by a small boolean circuit) are efficiently testable using the method of \testing by implicit learning". Their result implies the following partial characterization of testable properties on boolean functions. Theorem 1 (Diakonikolas et al. [20]). Let P be a property on boolean func- tions for which there exists a constant k = k() such that for every f 2 P, f is -close to a k-junta.
Recommended publications
  • FOCS 2005 Program SUNDAY October 23, 2005
    FOCS 2005 Program SUNDAY October 23, 2005 Talks in Grand Ballroom, 17th floor Session 1: 8:50am – 10:10am Chair: Eva´ Tardos 8:50 Agnostically Learning Halfspaces Adam Kalai, Adam Klivans, Yishay Mansour and Rocco Servedio 9:10 Noise stability of functions with low influences: invari- ance and optimality The 46th Annual IEEE Symposium on Elchanan Mossel, Ryan O’Donnell and Krzysztof Foundations of Computer Science Oleszkiewicz October 22-25, 2005 Omni William Penn Hotel, 9:30 Every decision tree has an influential variable Pittsburgh, PA Ryan O’Donnell, Michael Saks, Oded Schramm and Rocco Servedio Sponsored by the IEEE Computer Society Technical Committee on Mathematical Foundations of Computing 9:50 Lower Bounds for the Noisy Broadcast Problem In cooperation with ACM SIGACT Navin Goyal, Guy Kindler and Michael Saks Break 10:10am – 10:30am FOCS ’05 gratefully acknowledges financial support from Microsoft Research, Yahoo! Research, and the CMU Aladdin center Session 2: 10:30am – 12:10pm Chair: Satish Rao SATURDAY October 22, 2005 10:30 The Unique Games Conjecture, Integrality Gap for Cut Problems and Embeddability of Negative Type Metrics Tutorials held at CMU University Center into `1 [Best paper award] Reception at Omni William Penn Hotel, Monongahela Room, Subhash Khot and Nisheeth Vishnoi 17th floor 10:50 The Closest Substring problem with small distances Tutorial 1: 1:30pm – 3:30pm Daniel Marx (McConomy Auditorium) Chair: Irit Dinur 11:10 Fitting tree metrics: Hierarchical clustering and Phy- logeny Subhash Khot Nir Ailon and Moses Charikar On the Unique Games Conjecture 11:30 Metric Embeddings with Relaxed Guarantees Break 3:30pm – 4:00pm Ittai Abraham, Yair Bartal, T-H.
    [Show full text]
  • 2021 Leroy P. Steele Prizes
    FROM THE AMS SECRETARY 2021 Leroy P. Steele Prizes The 2021 Leroy P. Steele Prizes were presented at the Annual Meeting of the AMS, held virtually January 6–9, 2021. Noga Alon and Joel Spencer received the Steele Prize for Mathematical Exposition. Murray Gerstenhaber was awarded the Prize for Seminal Contribution to Research. Spencer Bloch was honored with the Prize for Lifetime Achievement. Citation for Mathematical Biographical Sketch: Noga Alon Exposition: Noga Alon Noga Alon is a Professor of Mathematics at Princeton and Joel Spencer University and a Professor Emeritus of Mathematics and The 2021 Steele Prize for Math- Computer Science at Tel Aviv University, Israel. He received ematical Exposition is awarded his PhD in Mathematics at the Hebrew University of Jeru- to Noga Alon and Joel Spencer salem in 1983 and had visiting and part-time positions in for the book The Probabilistic various research institutes, including the Massachusetts Method, published by Wiley Institute of Technology, Harvard University, the Institute and Sons, Inc., in 1992. for Advanced Study in Princeton, IBM Almaden Research Now in its fourth edition, Center, Bell Laboratories, Bellcore, and Microsoft Research The Probabilistic Method is an (Redmond and Israel). He joined Tel Aviv University in invaluable toolbox for both 1985, served as the head of the School of Mathematical Noga Alon the beginner and the experi- Sciences in 1999–2001, and moved to Princeton in 2018. enced researcher in discrete He supervised more than twenty PhD students. He serves probability. It brings together on the editorial boards of more than a dozen international through one unifying perspec- technical journals and has given invited lectures in numer- tive a head-spinning variety of ous conferences, including plenary addresses in the 1996 results and methods, linked to European Congress of Mathematics and in the 2002 Inter- applications in graph theory, national Congress of Mathematicians.
    [Show full text]
  • CURRICULUM VITAE Rafail Ostrovsky
    last updated: December 26, 2020 CURRICULUM VITAE Rafail Ostrovsky Distinguished Professor of Computer Science and Mathematics, UCLA http://www.cs.ucla.edu/∼rafail/ mailing address: Contact information: UCLA Computer Science Department Phone: (310) 206-5283 475 ENGINEERING VI, E-mail: [email protected] Los Angeles, CA, 90095-1596 Research • Cryptography and Computer Security; Interests • Streaming Algorithms; Routing and Network Algorithms; • Search and Classification Problems on High-Dimensional Data. Education NSF Mathematical Sciences Postdoctoral Research Fellow Conducted at U.C. Berkeley 1992-95. Host: Prof. Manuel Blum. Ph.D. in Computer Science, Massachusetts Institute of Technology, 1989-92. • Thesis titled: \Software Protection and Simulation on Oblivious RAMs", Ph.D. advisor: Prof. Silvio Micali. Final version appeared in Journal of ACM, 1996. Practical applications of thesis work appeared in U.S. Patent No.5,123,045. • Minor: \Management and Technology", M.I.T. Sloan School of Management. M.S. in Computer Science, Boston University, 1985-87. B.A. Magna Cum Laude in Mathematics, State University of New York at Buffalo, 1980-84. Department of Mathematics Graduation Honors: With highest distinction. Personal • U.S. citizen, naturalized in Boston, MA, 1986. Data Appointments UCLA Computer Science Department (2003 { present): Distinguished Professor of Computer Science. Recruited in 2003 as a Full Professor with Tenure. UCLA School of Engineering (2003 { present): Director, Center for Information and Computation Security. (See http://www.cs.ucla.edu/security/.) UCLA Department of Mathematics (2006 { present): Distinguished Professor of Mathematics (by courtesy). 1 Appointments Bell Communications Research (Bellcore) (cont.) (1999 { 2003): Senior Research Scientist; (1995 { 1999): Research Scientist, Mathematics and Cryptography Research Group, Applied Research.
    [Show full text]
  • Derandomized Graph Products
    Derandomized Graph Products Noga Alon ∗ Uriel Feigey Avi Wigderson z David Zuckermanx February 22, 2002 Abstract Berman and Schnitger [10] gave a randomized reduction from approximating MAX- SNP problems [24] within constant factors arbitrarily close to 1 to approximating clique within a factor of n (for some ). This reduction was further studied by Blum [11], who gave it the name randomized graph products. We show that this reduction can be made deterministic (derandomized), using random walks on expander graphs [1]. The main technical contribution of this paper is in lower bounding the probability that all steps of a random walk stay within a specified set of vertices of a graph. (Previous work was mainly concerned with upper bounding this probability.) This lower bound extends also to the case that different sets of vertices are specified for different time steps of the walk. 1 Introduction We present lower bounds on the probability that all steps of a random walk stay within a specified set of vertices of a graph. We then apply these lower bounds to amplify unapprox- imability results about certain NP-hard optimization problems. Our work was motivated by the problem of approximating the size of the maximum clique in graphs. This motivat- ing problem, which serves also as an example of how our lower bounds can be applied, is described in section 1.1. ∗Department of Mathematics, Raymond and Beverly Sackler Faculty of Exact Sciences, Tel Aviv Uni- versity, Tel Aviv, Israel and AT & T Bell Labs, Murray Hill, NJ, 07974, USA. Email: [email protected].
    [Show full text]
  • Discrete Mathematics: Methods and Challenges 121 Ous Interesting Applications
    ICM 2002 Vol. I 119–135 · · Discrete Mathematics: Methods and Challenges Noga Alon∗ Abstract Combinatorics is a fundamental mathematical discipline as well as an es- sential component of many mathematical areas, and its study has experienced an impressive growth in recent years. One of the main reasons for this growth is the tight connection between Discrete Mathematics and Theoretical Com- puter Science, and the rapid development of the latter. While in the past many of the basic combinatorial results were obtained mainly by ingenuity and detailed reasoning, the modern theory has grown out of this early stage, and often relies on deep, well developed tools. This is a survey of two of the main general techniques that played a crucial role in the development of mod- ern combinatorics; algebraic methods and probabilistic methods. Both will be illustrated by examples, focusing on the basic ideas and the connection to other areas. 2000 Mathematics Subject Classification: 05-02. Keywords and Phrases: Combinatorial nullstellensatz, Shannon capacity, Additive number theory, List coloring, The probabilistic method, Ramsey theory, Extremal graph theory. 1. Introduction The originators of the basic concepts of Discrete Mathematics, the mathemat- ics of finite structures, were the Hindus, who knew the formulas for the number of arXiv:math/0212390v1 [math.CO] 1 Dec 2002 permutations of a set of n elements, and for the number of subsets of cardinality k in a set of n elements, already in the sixth century. The beginning of Combinatorics as we know it today started with the work of Pascal and De Moivre in the 17th century, and continued in the 18th century with the seminal ideas of Euler in Graph Theory, with his work on partitions and their enumeration, and with his interest in latin squares.
    [Show full text]
  • Self-Sorting SSD: Producing Sorted Data Inside Active Ssds
    Foreword This volume contains the papers presentedat the Third Israel Symposium on the Theory of Computing and Systems (ISTCS), held in Tel Aviv, Israel, on January 4-6, 1995. Fifty five papers were submitted in response to the Call for Papers, and twenty seven of them were selected for presentation. The selection was based on originality, quality and relevance to the field. The program committee is pleased with the overall quality of the acceptedpapers and, furthermore, feels that many of the papers not used were also of fine quality. The papers included in this proceedings are preliminary reports on recent research and it is expected that most of these papers will appear in a more complete and polished form in scientific journals. The proceedings also contains one invited paper by Pave1Pevzner and Michael Waterman. The program committee thanks our invited speakers,Robert J. Aumann, Wolfgang Paul, Abe Peled, and Avi Wigderson, for contributing their time and knowledge. We also wish to thank all who submitted papers for consideration, as well as the many colleagues who contributed to the evaluation of the submitted papers. The latter include: Noga Alon Alon Itai Eric Schenk Hagit Attiya Roni Kay Baruch Schieber Yossi Azar Evsey Kosman Assaf Schuster Ayal Bar-David Ami Litman Nir Shavit Reuven Bar-Yehuda Johan Makowsky Richard Statman Shai Ben-David Yishay Mansour Ray Strong Allan Borodin Alain Mayer Eli Upfal Dorit Dor Mike Molloy Moshe Vardi Alon Efrat Yoram Moses Orli Waarts Jack Feldman Dalit Naor Ed Wimmers Nissim Francez Seffl Naor Shmuel Zaks Nita Goyal Noam Nisan Uri Zwick Vassos Hadzilacos Yuri Rabinovich Johan Hastad Giinter Rote The work of the program committee has been facilitated thanks to software developed by Rob Schapire and FOCS/STOC program chairs.
    [Show full text]
  • Problems and Results in Extremal Combinatorics, Part I
    Problems and results in Extremal Combinatorics, Part I Noga Alon ∗ Abstract Extremal Combinatorics is an area in Discrete Mathematics that has developed spectacularly during the last decades. This paper contains a collection of problems and results in the area, including solutions or partial solutions to open problems suggested by various researchers in Extremal Graph Theory, Extremal Finite Set Theory and Combinatorial Geometry. This is not meant to be a comprehensive survey of the area, it is merely a collection of various extremal problems, which are hopefully interesting. The choice of the problems is inevitably somewhat biased, and as the title of the paper suggests I hope to write a related paper in the future. Each section of this paper is essentially self contained, and can be read separately. 1 Introduction Extremal Combinatorics deals with the problem of determining or estimating the maximum or min- imum possible cardinality of a collection of finite objects that satisfies certain requirements. Such problems are often related to other areas including Computer Science, Information Theory, Number Theory and Geometry. This branch of Combinatorics has developed spectacularly over the last few decades, see, e.g., [10], [29], and their many references. This paper contains a collection of problems and results in the area, including solutions or partial solutions to open problems suggested by various researchers in Extremal Graph Theory, Extremal Finite Set Theory and Combinatorial Geometry. This is not meant to be a comprehensive survey of the area, but rather a collection of several extremal problems, which are hopefully interesting. The techniques used include combinatorial, probabilistic and algebraic tools.
    [Show full text]
  • Arxiv:2012.06421V2 [Cs.LG] 21 Jul 2021
    When is Memorization of Irrelevant Training Data Necessary for High-Accuracy Learning? Gavin Brown∗ Mark Bun∗ Vitaly Feldman† Adam Smith∗ Kunal Talwar† July 23, 2021 Abstract Modern machine learning models are complex and frequently encode surprising amounts of information about individual inputs. In extreme cases, complex models appear to memorize entire input examples, including seemingly irrelevant information (social secu- rity numbers from text, for example). In this paper, we aim to understand whether this sort of memorization is necessary for accurate learning. We describe natural prediction problems in which every sufficiently accurate training algorithm must encode, in the pre- diction model, essentially all the information about a large subset of its training examples. This remains true even when the examples are high-dimensional and have entropy much higher than the sample size, and even when most of that information is ultimately irrel- evant to the task at hand. Further, our results do not depend on the training algorithm or the class of models used for learning. Our problems are simple and fairly natural variants of the next-symbol prediction and the cluster labeling tasks. These tasks can be seen as abstractions of text- and image- related prediction problems. To establish our results, we reduce from a family of one-way communication problems for which we prove new information complexity lower bounds. Additionally, we present synthetic-data experiments demonstrating successful attacks on logistic regression and neural network classifiers. arXiv:2012.06421v2 [cs.LG] 21 Jul 2021 ∗Computer Science Department, Boston University. {grbrown,mbun,ads22}@bu.edu. GB and AS are supported in part by NSF award CCF-1763786 as well as a Sloan Foundation research award.
    [Show full text]
  • The Shannon Capacity of a Union
    The Shannon Capacity of a union Noga Alon ∗ To the memory of Paul Erd}os Abstract For an undirected graph G = (V; E), let Gn denote the graph whose vertex set is V n in which two distinct vertices (u1; u2; : : : ; un) and (v1; v2; : : : ; vn) are adjacent iff for all i between 1 and n 1=n n either ui = vi or uivi E. The Shannon capacity c(G) of G is the limit limn (α(G )) , 2 !1 where α(Gn) is the maximum size of an independent set of vertices in Gn. We show that there are graphs G and H such that the Shannon capacity of their disjoint union is (much) bigger than the sum of their capacities. This disproves a conjecture of Shannon raised in 1956. 1 Introduction For an undirected graph G = (V; E), let Gn denote the graph whose vertex set is V n in which two distinct vertices (u1; u2; : : : ; un) and (v1; v2; : : : ; vn) are adjacent iff for all i between 1 and n either n 1=n n ui = vi or uivi E. The Shannon capacity c(G) of G is the limit limn (α(G )) , where α(G ) is 2 !1 the maximum size of an independent set of vertices in Gn. This limit exists, by super-multiplicativity, and it is always at least α(G). (It is worth noting that it is sometimes customary to call log c(G) the Shannon capacity of G, but we prefer to use here the above definition, following Lov´asz[12].) The study of this parameter was introduced by Shannon in [14], motivated by a question in Information Theory.
    [Show full text]
  • Large Networks and Graph Limits
    American Mathematical Society Colloquium Publications Volume 60 Large Networks and Graph Limits László Lovász Large Networks and Graph Limits http://dx.doi.org/10.1090/coll/060 American Mathematical Society Colloquium Publications Volume 60 Large Networks and Graph Limits László Lovász American Mathematical Society Providence, Rhode Island Editorial Board Lawrence C. Evans Yuri Manin Peter Sarnak (Chair) 2010 Mathematics Subject Classification. Primary 58J35, 58D17, 58B25, 19L64, 81R60, 19K56, 22E67, 32L25, 46L80, 17B69. For additional information and updates on this book, visit www.ams.org/bookpages/coll-60 ISBN-13: 978-0-8218-9085-1 Copying and reprinting. Individual readers of this publication, and nonprofit libraries acting for them, are permitted to make fair use of the material, such as to copy a chapter for use in teaching or research. Permission is granted to quote brief passages from this publication in reviews, provided the customary acknowledgment of the source is given. Republication, systematic copying, or multiple reproduction of any material in this publication is permitted only under license from the American Mathematical Society. Requests for such permission should be addressed to the Acquisitions Department, American Mathematical Society, 201 Charles Street, Providence, Rhode Island 02904-2294 USA. Requests can also be made by e-mail to [email protected]. c 2012 by the author. All rights reserved. Printed in the United States of America. ∞ The paper used in this book is acid-free and falls within the guidelines established to ensure permanence and durability. Visit the AMS home page at http://www.ams.org/ 10987654321 171615141312 To Kati as all my books Contents Preface xi Part 1.
    [Show full text]
  • Finding a Large Hidden Clique in a Random Graph ∗
    Finding a large hidden clique in a random graph ∗ Noga Alon y Michael Krivelevich z Benny Sudakov x Abstract We consider the following probabilistic model of a graph on n labeled vertices. First choose a random graph G(n; 1=2) and then choose randomly a subset Q of vertices of size k and force it to be a clique by joining every pair of vertices of Q by an edge. The problem is to give a polynomial time algorithm for finding this hidden clique almost surely for various values of k. This question was posed independently, in various variants, by Jerrum and by Kuˇcera. In this paper we present an efficient algorithm for all k > cn0:5, for any fixed c > 0, thus improving the trivial case k > cn0:5(log n)0:5. The algorithm is based on the spectral properties of the graph. 1 Introduction A clique in a graph G is a set of vertices any two of which are connected by an edge. Let w(G) denote the maximum number of vertices in a clique of G. The problem of determining or estimating w(G) and that of finding a clique of maximum size in G are fundamental problems in Theoretical Computer Science. The problem of computing w(G) is well known to be NP-hard [16]. The best known approximation algorithm for this quantity, designed by Boppana and Halld´orsson[8], has a performance guarantee of O(n=(log n)2), where n is the number of vertices in the graph. When the graph contains a large clique, there are better algorithms, and the best one, given in [3], shows that if w(G) exceeds n=k +m, where k is a fixed integer and m > 0, then one can find a clique of size Ω(~ m3=(k+1)) in polynomial time, where here the notation g(n) = Ω(~ f(n)) means, as usual, that g(n) Ω(f(n)=(log n)c) for some constant c independent of n.
    [Show full text]
  • Lovász, Vectors, Graphs and Codes
    Lov´asz,vectors, graphs and codes Dedicated to L´aszl´oLov´asz,for his seventieth birthday Noga Alon ∗ Abstract A family of high-degree triangle-free pseudo-random Cayley graphs has been con- structed in [2], motivated by a geometric question of Lov´asz.These graphs turned out to be useful in tackling a variety of additional extremal problems in Graph Theory and Coding Theory. Here we describe the graphs and their applications, and mention several intriguing related open problems. This is mainly a survey, but it contains several new results as well. One of these is a construction showing that the Lov´asz θ-function of a graph cannot be bounded by any function of its Shannon capacity. 1 Introduction • What is the maximum possible (Euclidean) norm of a sum of n unit vectors so that any 3 of them contain 2 which are orthogonal ? • What is the minimum possible size of the maxcut of a triangle-free graph with m edges ? • What is the maximum possible number of words in a binary code of length n so that there is no Hamming ball of radius (1=4 + ")n containing more than two words ? The first question is geometric, and was posed by Lov´aszmotivated by the study of the θ-function of a graph. The second question is in Extremal Graph Theory, it was first considered by Erd}osand Lov´asz. The third question is in Coding theory, and was first studied by Blinovskii, extending earlier results of Plotkin and Levenshtein. Somewhat surprisingly it turns out that all three questions, and several related ones, can be solved ∗Department of Mathematics, Princeton University, Princeton, NJ 08544, USA and Schools of Math- ematics and Computer Science, Tel Aviv University, Tel Aviv 69978, Israel.
    [Show full text]