Tools for Tutoring Theoretical Computer Science Topics

Total Page:16

File Type:pdf, Size:1020Kb

Tools for Tutoring Theoretical Computer Science Topics University of Massachusetts Amherst ScholarWorks@UMass Amherst Doctoral Dissertations Dissertations and Theses November 2019 Tools for Tutoring Theoretical Computer Science Topics Mark McCartin-Lim University of Massachusetts Amherst Follow this and additional works at: https://scholarworks.umass.edu/dissertations_2 Part of the Artificial Intelligence and Robotics Commons, Graphics and Human Computer Interfaces Commons, Other Computer Sciences Commons, and the Theory and Algorithms Commons Recommended Citation McCartin-Lim, Mark, "Tools for Tutoring Theoretical Computer Science Topics" (2019). Doctoral Dissertations. 1797. https://doi.org/10.7275/15233091 https://scholarworks.umass.edu/dissertations_2/1797 This Open Access Dissertation is brought to you for free and open access by the Dissertations and Theses at ScholarWorks@UMass Amherst. It has been accepted for inclusion in Doctoral Dissertations by an authorized administrator of ScholarWorks@UMass Amherst. For more information, please contact [email protected]. TOOLS FOR TUTORING THEORETICAL COMPUTER SCIENCE TOPICS A Dissertation Presented by MARK MCCARTIN-LIM Submitted to the Graduate School of the University of Massachusetts Amherst in partial fulfillment of the requirements for the degree of DOCTOR OF PHILOSOPHY September 2019 College of Information and Computer Sciences c Copyright by Mark McCartin-Lim 2019 All Rights Reserved TOOLS FOR TUTORING THEORETICAL COMPUTER SCIENCE TOPICS A Dissertation Presented by MARK MCCARTIN-LIM Approved as to style and content by: Andrew McGregor, Co-chair Beverly Woolf, Co-chair David Mix Barrington, Member Siman Wong, Member James Allan, Department Chair College of Information and Computer Sciences DEDICATION To the students who faithfully came to my office hours, whose struggles and perseverance inspired this dissertation. To my good friend Lucas, who provided much needed moral support during the hardest times, and who gave me the courage to choose this dissertation topic. To my parents, who patiently waited for me to finish my Ph.D., and supported me, often financially, during that time. To Marina, who convinced me to keep going when I was almost about to quit. ACKNOWLEDGMENTS I acknowledge my long and challenging journey to produce this dissertation re- quired assistance and encouragement from many people. I want to thank them. My sincere thanks goes to my co-advisors Beverly Woolf and Andrew McGregor for their guidance, help, and forbearance with my journey. Professor McGregor was my advisor when I started my Ph.D. program in 2009 working on research projects under his supervision. When I decided to do my own research on intelligent tutoring systems in 2012, Professor McGregor was willing to remain a co-advisor to me even though his experience with intelligent tutoring systems was limited. He always found time from his busy schedule, even during his sabbatical leave, to help me when I needed it. He generously gave his vast knowledge, wisdom, and guidance to enable me to complete my journey. My interest in intelligent tutoring systems developed with my attendance of Professor Woolf's course on the subject. Her course inspired me to create the computerized tutoring system that is in my dissertation. Professor Woolf became my co-advisor in 2012. She used her expertise to help me develop the cumbersome protocol required by the IRB (Institutional Review Board) for the experimental testing of my tutoring system. Professor Woolf also advised me how to deal with the many time consuming issues imposed by the IRB. My journey could not be completed without her help and guidance. I greatly appreciate the participation of Professors David Barrington, Robert Moll, and Simon Wong, in addition to Andrew McGregor and Beverly Woolf, as members of my review committee. Professor Barrington pointed me to the work of Gries and Schneider which I referenced in my dissertation. Professor Moll loaned me a book he co-authored which I cited in my dissertation. Professor Moll is no longer on the v committee because he has retired. The guidance provided by the committee has facilitated my journey. I thank Professors Barrington, McGregor, and Krishnamurthy for providing the opportunities and assistance for me to conduct my experimental testing in conjunction with portions of the courses they taught. The experimental testing is a critical element of my dissertation. I am grateful to Alistair Sinclair for motivating me to start my journey. Professor Sinclair took me under his wing when I was a visiting undergraduate student at the University of California, Berkeley in 2005. Professor Sinclair gave me one on one mentoring sessions every week for more than a year. He exposed me to the joys of making discoveries through research, and convinced me to pursue a Ph.D. degree in computer science. I am also grateful to many colleagues, friends, family members, and my parents for their advice and encouraging messages. They gave me the morale boosting sustenance I needed to complete my long and challenging journey. vi ABSTRACT TOOLS FOR TUTORING THEORETICAL COMPUTER SCIENCE TOPICS SEPTEMBER 2019 MARK MCCARTIN-LIM B.S., UNIVERSITY OF CALIFORNIA, SANTA BARBARA M.S., UNIVERSITY OF MASSACHUSETTS AMHERST Ph.D., UNIVERSITY OF MASSACHUSETTS AMHERST Directed by: Professor Andrew McGregor and Professor Beverly Woolf This thesis introduces Complexity Tutor, a tutoring system to assist in learn- ing abstract proof-based topics, which has been specifically targeted towards the pop- ulation of computer science students studying theoretical computer science. Existing literature has shown tremendous educational benefits produced by active learning techniques, student-centered pedagogy, gamification and intelligent tutoring systems. However, previously, there had been almost no research on adapting these ideas to the domain of theoretical computer science. As a population, computer science students receive immediate feedback from compilers and debuggers, but receive no similar level of guidance for theoretical coursework. One hypothesis of this thesis is that immediate feedback while working on theoretical problems would be particularly well-received by students, and this hypothesis has been supported by the feedback of students who used the system. vii This thesis makes several contributions to the field. It provides assistance for teaching proof construction in theoretical computer science. A second contribution is a framework that can be readily adapted to many other domains with abstract math- ematical content. Exercises can be constructed in natural language and instructors with limited programming knowledge can quickly develop new subject material for Complexity Tutor. A third contribution is a platform for writing algorithms in Python code that has been integrated into this framework, for constructive proofs in computer science. A fourth contribution is development of an interactive environment that uses a novel graphical puzzle-like platform and gamification ideas to teach proof concepts. The learning curve for students is reduced, in comparison to other systems that use a formal language or complex interface. A multi-semester evaluation of 101 computer science students using Complexity Tutor was conducted. An additional 98 students participated in the study as part of control groups. Complexity Tutor was used to help students learn the topics of NP-completeness in algorithms classes and prepositional logic proofs in discrete math classes. Since this is the first significant study of using a computerized tutoring system in theoretical computer science, results from the study not only provide evidence to support the suitability of using tutoring systems in theoretical computer science, but also provide insights for future research directions. viii TABLE OF CONTENTS Page ACKNOWLEDGMENTS ............................................. v ABSTRACT ......................................................... vii LIST OF TABLES ................................................... xv LIST OF FIGURES.................................................. xvi CHAPTER 1. INTRODUCTION ................................................. 1 1.1 Challenges in teaching theoretical topics . .3 1.1.1 Student-centered pedagogy versus traditional lecture formats . .3 1.1.2 Abstract concepts disconnected from other computer science courses . .6 1.2 Insights on meta-skills of students who successfully learn theoretical computer science concepts . .7 1.2.1 Acquiring and applying factual knowledge . .7 1.2.2 Translating informal intuition into formal reasoning . .8 1.2.3 Understanding notation and semantics . .9 1.2.4 Applying analogy / proof schema . 11 1.2.5 Generating examples / inductive reasoning . 11 1.3 Components of Complexity Tutor .............................. 14 1.4 Potential advantages of Complexity Tutor ....................... 15 2. RELATED WORK USING COMPUTERS TO AID IN TEACHING THEOREM PROVING ........................... 17 2.1 Pedagogical issues with automated proof verifiers . 17 ix 2.1.1 Formal logical systems . 18 2.1.2 Differences between proofs constructed from formal logical systems and informal narrative proofs . 20 2.1.3 Can informal narrative proofs be substituted by those constructed from a formal logical system? . 21 2.1.3.1 Assertion level reasoning . 23 2.1.4 Consideration of proof granularity . 25 2.2 A brief introduction to automated theorem proving . 27 2.2.1 Resolution-based theorem provers . 29 2.2.2 Peter B. Andrews' theory of matings . 32 2.2.3 More references on automated theorem
Recommended publications
  • Benjamin Rossman
    Benjamin Rossman 40 St George Street, Room 6214 Phone: 416-946-7825 Toronto, ON M5S 3G4 Canada E-mail: [email protected] POSITIONS University of Toronto 2016 – present Assistant Professor of Mathematics and Computer Science National Institute of Informatics (Tokyo, Japan) 2013 – 2016 Assistant Professor in the Kawarabayashi Large Graph Project Simons Institute for the Theory of Computing (Berkeley, CA) 2014 – 2015 Simons-Berkeley Research Fellow Tokyo Institute of Technology 2010 – 2013 NSF Mathematical Sciences Postdoctoral Research Fellow EDUCATION Massachusetts Institute of Technology Ph.D. in Computer Science 2010 · Advisor: Madhu Sudan · Thesis: Average-Case Complexity of Detecting Cliques University of Pennsylvania M.A. in Mathematics 2002 B.A. in Mathematics, Summa Cum Laude 2001 HONORS AND AWARDS André Aisenstadt Prize in Mathematics 2018 Invited Speaker at the International Congress of Mathematicians 2018 Alfred P. Sloan Research Fellowship 2017 Best Paper Award at FOCS (IEEE Symposium on Foundations of Computer Science) 2015 Best Paper Award at CCC (Computational Complexity Conference) 2015 Best Paper Award at CSR (International Computer Science Symposium in Russia) 2014 Ackermann Award (Outstanding Dissertation Award of the European Association for 2011 Computer Science Logic) George M. Sprowls Award (Best Doctoral Theses in Computer Science at MIT) 2010 NSF Mathematical Sciences Postdoctoral Research Fellowship 2010 National Defense Science and Engineering Graduate Fellowship 2006 1 NSF Graduate Research Fellowship 2006
    [Show full text]
  • Program Sunday Evening: Welcome Recep- Tion from 7Pm to 9Pm at the Staff Lounge of the Department of Computer Science, Ny Munkegade, Building 540, 2Nd floor
    Computational ELECTRONIC REGISTRATION Complexity The registration for CCC’03 is web based. Please register at http://www.brics.dk/Complexity2003/. Registration Fees (In Danish Kroner) Eighteenth Annual IEEE Conference Advance† Late Members‡∗ 1800 DKK 2200 DKK ∗ Sponsored by Nonmembers 2200 DKK 2800 DKK Students+ 500 DKK 600 DKK The IEEE Computer Society ∗The registration fee includes a copy of the proceedings, Technical Committee on receptions Sunday and Monday, the banquet Wednesday, and lunches Monday, Tuesday and Wednesday. Mathematical Foundations +The registration fee includes a copy of the proceedings, of Computing receptions Sunday and Monday, and lunches Monday, Tuesday and Wednesday. The banquet Wednesday is not included. †The advance registration deadline is June 15. ‡ACM, EATCS, IEEE, or SIGACT members. Extra proceedings/banquet tickets Extra proceedings are 350 DKK. Extra banquet tick- ets are 300 DKK. Both can be purchased when reg- istering and will also be available for sale on site. Alternative registration If electronic registration is not possible, please con- tact the organizers at one of the following: E-mail: [email protected] Mail: Complexity 2003 c/o Peter Bro Miltersen In cooperation with Department of Computer Science University of Aarhus ACM-SIGACT and EATCS Ny Munkegade, Building 540 DK 8000 Aarhus C, Denmark Fax: (+45) 8942 3255 July 7–10, 2003 Arhus,˚ Denmark Conference homepage Conference Information Information about this year’s conference is available Location All sessions of the conference and the on the Web at Kolmogorov workshop will be held in Auditorium http://www.brics.dk/Complexity2003/ F of the Department of Mathematical Sciences at Information about the Computational Complexity Aarhus University, Ny Munkegade, building 530, 1st conference is available at floor.
    [Show full text]
  • Four Results of Jon Kleinberg a Talk for St.Petersburg Mathematical Society
    Four Results of Jon Kleinberg A Talk for St.Petersburg Mathematical Society Yury Lifshits Steklov Institute of Mathematics at St.Petersburg May 2007 1 / 43 2 Hubs and Authorities 3 Nearest Neighbors: Faster Than Brute Force 4 Navigation in a Small World 5 Bursty Structure in Streams Outline 1 Nevanlinna Prize for Jon Kleinberg History of Nevanlinna Prize Who is Jon Kleinberg 2 / 43 3 Nearest Neighbors: Faster Than Brute Force 4 Navigation in a Small World 5 Bursty Structure in Streams Outline 1 Nevanlinna Prize for Jon Kleinberg History of Nevanlinna Prize Who is Jon Kleinberg 2 Hubs and Authorities 2 / 43 4 Navigation in a Small World 5 Bursty Structure in Streams Outline 1 Nevanlinna Prize for Jon Kleinberg History of Nevanlinna Prize Who is Jon Kleinberg 2 Hubs and Authorities 3 Nearest Neighbors: Faster Than Brute Force 2 / 43 5 Bursty Structure in Streams Outline 1 Nevanlinna Prize for Jon Kleinberg History of Nevanlinna Prize Who is Jon Kleinberg 2 Hubs and Authorities 3 Nearest Neighbors: Faster Than Brute Force 4 Navigation in a Small World 2 / 43 Outline 1 Nevanlinna Prize for Jon Kleinberg History of Nevanlinna Prize Who is Jon Kleinberg 2 Hubs and Authorities 3 Nearest Neighbors: Faster Than Brute Force 4 Navigation in a Small World 5 Bursty Structure in Streams 2 / 43 Part I History of Nevanlinna Prize Career of Jon Kleinberg 3 / 43 Nevanlinna Prize The Rolf Nevanlinna Prize is awarded once every 4 years at the International Congress of Mathematicians, for outstanding contributions in Mathematical Aspects of Information Sciences including: 1 All mathematical aspects of computer science, including complexity theory, logic of programming languages, analysis of algorithms, cryptography, computer vision, pattern recognition, information processing and modelling of intelligence.
    [Show full text]
  • Mathematisches Forschungsinstitut Oberwolfach Complexity Theory
    Mathematisches Forschungsinstitut Oberwolfach Report No. 54/2015 DOI: 10.4171/OWR/2015/54 Complexity Theory Organised by Peter B¨urgisser, Berlin Oded Goldreich, Rehovot Madhu Sudan, Cambridge MA Salil Vadhan, Cambridge MA 15 November – 21 November 2015 Abstract. Computational Complexity Theory is the mathematical study of the intrinsic power and limitations of computational resources like time, space, or randomness. The current workshop focused on recent developments in various sub-areas including arithmetic complexity, Boolean complexity, communication complexity, cryptography, probabilistic proof systems, pseu- dorandomness and randomness extraction. Many of the developments are related to diverse mathematical fields such as algebraic geometry, combinato- rial number theory, probability theory, representation theory, and the theory of error-correcting codes. Mathematics Subject Classification (2010): 68-06, 68Q01, 68Q10, 68Q15, 68Q17, 68Q25, 94B05, 94B35. Introduction by the Organisers The workshop Complexity Theory was organized by Peter B¨urgisser (TU Berlin), Oded Goldreich (Weizmann Institute), Madhu Sudan (Harvard), and Salil Vadhan (Harvard). The workshop was held on November 15th–21st 2015, and attended by approximately 50 participants spanning a wide range of interests within the field of Computational Complexity. The plenary program, attended by all participants, featured fifteen long lectures and five short (8-minute) reports by students and postdocs. In addition, intensive interaction took place in smaller groups. The Oberwolfach Meeting on Complexity Theory is marked by a long tradition and a continuous transformation. Originally starting with a focus on algebraic and Boolean complexity, the meeting has continuously evolved to cover a wide variety 3050 Oberwolfach Report 54/2015 of areas, most of which were not even in existence at the time of the first meeting (in 1972).
    [Show full text]
  • From the AMS Secretary
    From the AMS Secretary Society and delegate to such committees such powers as Bylaws of the may be necessary or convenient for the proper exercise American Mathematical of those powers. Agents appointed, or members of com- mittees designated, by the Board of Trustees need not be Society members of the Board. Nothing herein contained shall be construed to em- Article I power the Board of Trustees to divest itself of responsi- bility for, or legal control of, the investments, properties, Officers and contracts of the Society. Section 1. There shall be a president, a president elect (during the even-numbered years only), an immediate past Article III president (during the odd-numbered years only), three Committees vice presidents, a secretary, four associate secretaries, a Section 1. There shall be eight editorial committees as fol- treasurer, and an associate treasurer. lows: committees for the Bulletin, for the Proceedings, for Section 2. It shall be a duty of the president to deliver the Colloquium Publications, for the Journal, for Mathemat- an address before the Society at the close of the term of ical Surveys and Monographs, for Mathematical Reviews; office or within one year thereafter. a joint committee for the Transactions and the Memoirs; Article II and a committee for Mathematics of Computation. Section 2. The size of each committee shall be deter- Board of Trustees mined by the Council. Section 1. There shall be a Board of Trustees consisting of eight trustees, five trustees elected by the Society in Article IV accordance with Article VII, together with the president, the treasurer, and the associate treasurer of the Society Council ex officio.
    [Show full text]
  • Conference in Honor of Laci Babai's 60Th Birthday
    Combinatorics, Groups, Algorithms, and Complexity: Conference in honor of Laci Babai’s 60th birthday Akos Seress, Mario Szegedy To cite this version: Akos Seress, Mario Szegedy. Combinatorics, Groups, Algorithms, and Complexity: Conference in honor of Laci Babai’s 60th birthday. Discrete Mathematics and Theoretical Computer Science, DMTCS, 2010, special issue in honor of Laci Babai’s 60th birthday: Combinatorics, Groups, Al- gorithms, and Complexity, Vol. 13 no. 4 (4), pp.1-4. hal-00993123 HAL Id: hal-00993123 https://hal.inria.fr/hal-00993123 Submitted on 19 May 2014 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Discrete Mathematics and Theoretical Computer Science DMTCS vol. 13:4, 2011, 1–4 Combinatorics, Groups, Algorithms, and Complexity: Conference in honor of Laci Babai’s 60th birthday Akos´ Seress12† Mario Szegedy3‡ (Guest Editors) 1School of Mathematics and Statistics, University of Western Australia, Crawley, Australia 2The Ohio State Univer- sity, Dept. of Mathematics 3Rutgers University, Dept. of Computer Science Keywords: Combinatorics, Groups, Algorithms, and Complexity This special issue of Discrete Mathematics & Theoretical Computer Science is dedicated to the con- ference Combinatorics, Groups, Algorithms, and Complexity held at The Ohio State University between March 21-25, 2010.
    [Show full text]
  • Supercritical Space-Width Trade-Offs for Resolution
    Supercritical Space-Width Trade-offs for Resolution∗ Christoph Berkholz Jakob Nordstr¨om Humboldt-Universit¨at zu Berlin KTH Royal Institute of Technology August 13, 2018 Abstract We show that there are CNF formulas which can be refuted in resolution in both small space and small width, but for which any small-width proof must have space exceeding by far the linear worst- case upper bound. This significantly strengthens the space-width trade-offs in [Ben-Sasson ’09], and provides one more example of trade-offs in the “supercritical” regime above worst case recently identified by [Razborov ’16]. We obtain our results by using Razborov’s new hardness condensation technique and combining it with the space lower bounds in [Ben-Sasson and Nordstr¨om ’08]. 1 Introduction Propositional proof complexity studies the problem of how to provide concise, polynomial-time check- able certificates that formulas in conjunctive normal form (CNF) are unsatisfiable. Research in this area was initiated in [CR79] as a way of attacking the problem of showing that NP 6= coNP, and hence P 6= NP, and it is therefore natural that the main focus has been on proving upper and lower bounds on proof length/size. More recently, however, other complexity measures have also been investigated, and this study has revealed a rich and often surprising web of connections. 1.1 Resolution Length, Width, and Space Arguably the most thoroughly studied proof system in proof complexity is resolution, which appeared in [Bla37] and began to be investigated in connection with automated theorem proving in the 1960s [DLL62, DP60, Rob65].
    [Show full text]
  • 39 an Average-Case Depth Hierarchy Theorem for Boolean Circuits
    39 An average-case depth hierarchy theorem for Boolean circuits Johan Hastad˚ , KTH Stockholm Benjamin Rossman, NII and Simons Institute, UC Berkeley Rocco A. Servedio, Columbia University Li-Yang Tan, Simons Institute, UC Berkeley We prove an average-case depth hierarchy theorem for Boolean circuits over the standard basis of AND, OR, and NOT gates. Our hierarchy theorem says that for every d ≥ 2, there is an explicit n-variable Boolean function f, computed by a linear-size depth-d formula, which is such that any depth-(d − 1) circuit that Ω(1=d) agrees with f on (1=2 + on(1)) fraction of all inputs must have size exp(n ): This answers an open question posed by Hastad˚ in his Ph.D. thesis [Hastad˚ 1986b]. Our average-case depth hierarchy theorem implies that the polynomial hierarchy is infinite relative to a random oracle with probability 1, confirming a conjecture of Hastad˚ [Hastad˚ 1986a], Cai [Cai 1986], and Babai [Babai 1987]. We also use our result to show that there is no “approximate converse” to the results of Linial, Mansour, Nisan [Linial et al. 1993] and Boppana [Boppana 1997] on the total influence of bounded- depth circuits. A key ingredient in our proof is a notion of random projections which generalize random restrictions. CCS Concepts: •Theory of computation ! Circuit complexity; Additional Key Words and Phrases: Boolean circuit complexity, polynomial hierarchy, random oracles, ran- dom projections ACM Reference Format: Johan Hastad,˚ Benjamin Rossman, Rocco A. Servedio, Li-Yang Tan, 2016. An average-case depth hierarchy theorem for Boolean circuits. J. ACM 9, 4, Article 39 (March 2016), 29 pages.
    [Show full text]
  • Proof Complexity
    Report from Dagstuhl Seminar 18051 Proof Complexity Edited by Albert Atserias1, Jakob Nordström2, Pavel Pudlák3, and Rahul Santhanam4 1 UPC – Barcelona, ES, [email protected] 2 KTH Royal Institute of Technology – Stockholm, SE, [email protected] 3 The Czech Academy of Sciences – Prague, CZ, [email protected] 4 University of Oxford, GB, [email protected] Abstract The study of proof complexity was initiated in [Cook and Reckhow 1979] as a way to attack the P vs. NP problem, and in the ensuing decades many powerful techniques have been discovered for analyzing different proof systems. Proof complexity also gives a way of studying subsystems of Peano Arithmetic where the power of mathematical reasoning is restricted, and to quantify how complex different mathematical theorems are measured in terms of the strength of the methods of reasoning required to establish their validity. Moreover, it allows to analyse the power and limitations of satisfiability algorithms (SAT solvers) used in industrial applications with formulas containing up to millions of variables. During the last 10–15 years the area of proof complexity has seen a revival with many exciting results, and new connections have also been revealed with other areas such as, e.g., cryptography, algebraic complexity theory, communication complexity, and combinatorial optimization. While many longstanding open problems from the 1980s and 1990s still remain unsolved, recent progress gives hope that the area may be ripe for decisive breakthroughs. This workshop, gathering researchers from different strands of the proof complexity community, gave opportunities to take stock of where we stand and discuss the way ahead.
    [Show full text]
  • Madhu Sudan Receives Nevanlinna Prize, Volume 49, Number 10
    Madhu Sudan Receives Nevanlinna Prize On August 20, 2002, the Sudan has been a main contributor to the devel- Rolf Nevanlinna Prize was opment of the theory of probabilistically checkable awarded at the opening cer- proofs. Given a proof of a mathematical statement, emonies of the International the theory provides a way to recast the proof in a Congress of Mathematicians form where its fundamental logic is encoded as a (ICM) in Beijing, China. The sequence of computer bits. A “verifier” can, by prizewinner is MADHU SUDAN. checking only some of the bits, determine with In 1982 the University high probability whether the proof is correct. What of Helsinki granted funds is extremely surprising, and quite counterintuitive, to award the Nevanlinna is that the number of bits the verifier needs to Prize, which honors the examine can be made extremely small. The theory work of a young mathe- was developed in papers by Sudan, S. Arora, U. Feige, matician (less than 40 years S. Goldwasser, C. Lund, L. Lovász, R. Motwani, of age) in the mathematical S. Safra, and M. Szegedy. For this work, these authors aspects of information sci- jointly received the 2001 Gödel Prize of the Associ- Madhu Sudan ence. The prize is pre- ation for Computing Machinery. sented every four years in Also together with other researchers, Sudan has conjunction with the ICM. Previous recipients of the made fundamental contributions to understanding Nevanlinna Prize are: Robert Tarjan (1982), Leslie the nonapproximability of solutions to combina- Valiant (1986), Alexander Razborov (1990), Avi torial optimization problems. This work connects Wigderson (1994), and Peter Shor (1998).
    [Show full text]
  • Salil P. Vadhan
    Harvard University John A. Paulson School of Engineering and Applied Sciences Maxwell Dworkin 337 Salil Vadhan 33 Oxford Street Vicky Joseph Professor Cambridge, MA 02138 USA of Computer Science salil [email protected] & Applied Mathematics http://salil.seas.harvard.edu/ Harvard College Professor Salil P. Vadhan Curriculum Vitae April 2020 Contents Research Interests . 2 Current Positions . 2 Previous Positions . 2 Education . 3 Honors . 3 Professional Activities . 6 Doctoral Advisees . 8 Other Graduate Research Advising . 10 Undergraduate Research Advising . 11 Postdoctoral Fellows . 15 Visitors Hosted . 17 University and Departmental Service . 17 Teaching . 19 External Funding . 21 Chronological List of Research Papers . 22 Theses, Surveys, Books, and Policy Commentary . 32 Other Work from Research Group . 34 Invited Talks at Workshops and Conferences . 42 Departmental Seminars and Colloquia . 46 1 Research Interests • Computational Complexity, Data Privacy, Randomness in Computation, Cryptography. Current Positions Harvard University Cambridge, MA • Vicky Joseph Professor of Computer Science and Applied Mathematics (with tenure), Harvard John A. Paulson School of Engineering and Applied Sciences, July 2009{present. • Harvard College Professor, 2016{2021 Previous Positions National Chiao-Tung University Hsinchu, Taiwan • Visiting Chair Professor, Department of Applied Mathematics and Shing-Tung Yau Center, August 2015{July 2016. Stanford University Stanford, CA • Visiting Scholar, August 2011{July 2012. Microsoft Research Silicon Valley Mountain View, CA • Consultant, June 2008{July 2008 and in June 2010. • Visiting Researcher, August 2011{July 2012. University of California, Berkeley Berkeley, CA • Miller Visiting Professor, September 2007{June 2008. Harvard University Cambridge, MA • Area Chair for Computer Science, July 2017{June 2019. (Co-chair with Michael Mitzen- macher from July 2018-June 2019.) • Director, Harvard Center for Research on Computation and Society (CRCS), August 2008{ July 2011, January 2014{April 2015.
    [Show full text]
  • Exponential Resolution Lower Bounds for Weak Pigeonhole Principle and Perfect Matching Formulas Over Sparse Graphs
    Exponential Resolution Lower Bounds for Weak Pigeonhole Principle and Perfect Matching Formulas over Sparse Graphs Susanna F. de Rezende Institute of Mathematics of the Czech Academy of Sciences, Prague, Czech Republic Jakob Nordström University of Copenhagen, Denmark Lund University, Sweden Kilian Risse KTH Royal Institute of Technology, Stockholm, Sweden Dmitry Sokolov St. Petersburg State University, Russia St. Petersburg Department of Steklov Mathematical Institute of Russian Academy of Sciences, Russia Abstract We show exponential lower bounds on resolution proof length for pigeonhole principle (PHP) formulas and perfect matching formulas over highly unbalanced, sparse expander graphs, thus answering the challenge to establish strong lower bounds in the regime between balanced constant-degree expanders as in [Ben-Sasson and Wigderson ’01] and highly unbalanced, dense graphs as in [Raz ’04] and [Razborov ’03, ’04]. We obtain our results by revisiting Razborov’s pseudo-width method for PHP formulas over dense graphs and extending it to sparse graphs. This further demonstrates the power of the pseudo-width method, and we believe it could potentially be useful for attacking also other longstanding open problems for resolution and other proof systems. 2012 ACM Subject Classification Theory of computation → Proof complexity Keywords and phrases proof complexity, resolution, weak pigeonhole principle, perfect matching, sparse graphs Digital Object Identifier 10.4230/LIPIcs.CCC.2020.28 Related Version A full version of the paper is available at https://arxiv.org/abs/1912.00534 and https://eccc.weizmann.ac.il/report/2019/174/. Funding The authors were funded by the Knut and Alice Wallenberg grant KAW 2016.0066. In addition, the second author was supported by the Swedish Research Council grant 2016-00782 and the Independent Research Fund Denmark (DFF) grant 9040-00389B, and the fourth author by the Knut and Alice Wallenberg grant KAW 2016.0433.
    [Show full text]