
Classifying bent functions by their Cayley graphs Paul Leopardi ∗ 11 December 2018 Abstract In 1999 Bernasconi and Codenotti noted that the Cayley graph of a bent function is strongly regular. This paper describes the con- cept of extended Cayley equivalence of bent functions, discusses some connections between bent functions, designs, and codes, and explores the relationship between extended Cayley equivalence and extended affine equivalence. SageMath scripts and CoCalc worksheets are used to compute and display some of these relationships, for bent functions up to dimension 8. 1 Introduction Binary bent functions are important combinatorial objects. Besides the well-known application of bent functions and their generalizations to cryp- tography [2][65, 4.1-4.6], bent functions have well-studied connections to Hadamard difference sets [21], symmetric designs with the symmetric dif- ference property [22, 33], projective two-weight codes [11, 23] and strongly regular graphs. In two papers, Bernasconi and Codenotti [3], and then Bernasconi, Co- denotti and Vanderkam [4] explored some of the connections between bent arXiv:1705.04507v6 [math.CO] 12 Dec 2018 functions and strongly regular graphs. While these papers established that the Cayley graph of a binary bent function (whose value at 0 is 0) is a strongly regular graph with certain parameters, they leave open the question of which strongly regular graphs with these parameters are so obtained. ∗University of Melbourne; Australian Government { Bureau of Meteorology mailto: [email protected] 1 In a recent paper [44], the author found an example of two infinite series of bent functions whose Cayley graphs have the same strongly regular pa- rameters at each dimension, but are not isomorphic if the dimension is 8 or more. Kantor, in 1983 [34], showed that the numbers of non-isomorphic projec- tive linear two weight codes with certain parameters, Hadamard difference sets, and symmetric designs with certain properties, grow at least expo- nentially with dimension. This result suggests that the number of strongly regular graphs obtained as Cayley graphs of bent functions also increases at least exponentially with dimension. A 2003 paper by Cameron [12] considers random strongly regular graphs with given parameters, and outlines some prerequisites for a theory of random strongly regular graphs, including that \the number of non-isomorphic graphs is superexponential in the number of vertices." The goal of the current paper is to further explore the connections between bent functions, their Cayley graphs, and related combinatorial objects, and in particular to examine the relationship between various equivalence classes of bent functions, in particular, the relationship between the extended affine equivalence classes and equivalence classes defined by isomorphism of Cayley graphs. As well as a theoretical study of bent functions of all dimensions, a computational study is conducted into bent functions of dimension at most 8, using SageMath [63] and CoCalc [58]. The methodology for this study is modelled on experimental mathematics. As stated by Borwein and Devlin [5, pp. 4-5]: What makes experimental mathematics different (as an enter- prise) from the classical conception and practice of mathematics is that the experimental process is regarded not as a precursor to a proof, to be relegated to private notebooks and perhaps stud- ied for historical purposes only after a proof has been obtained. Rather, experimentation is viewed as a significant part of math- ematics in its own right, to be published, considered by others, and (of particular importance) contributing to our overall math- ematical knowledge. The theoretical results listed this paper serve a few purposes. First, in order to classify bent functions by their Cayley graphs, it helps to understand the relationship between Cayley equivalence and other concepts of equiva- lence of bent functions, especially if this helps to cut down the search space needed for the classification. A similar consideration applies to the duals of bent functions. Second, some of the empirical observations made in the classification of bent functions in small dimensions can be explained by these 2 theoretical results. Third, these theoretical results can improve our under- standing of the relationships between bent functions, projective two-weight codes, strongly regular graphs, and symmetric block designs with the sym- metric difference property. In what follows, known results with references are presented as propositions, or sometimes as remarks; and results where the statement or the proof seems to be missing or obscure within the existing literature are presented as lemmas or theorems, with proofs. This paper makes no pretence at being an exhaustive survey, neither should it be construed that the lemmas and theorems listed here make any claim to originality. Even given the current excellent electronic search capa- bilities available, it would be folly to do so given the extensive literature that has been generated on the study of bent functions since the 1960s. Some recent surveys include books by Cusick and Stanica [19], Mesnager [50] and Tokareva [65], and the article by Carlet and Mesnager [16]. The remainder of the paper is organized as follows. Section2 covers the concepts, definitions and known results used later in the paper. Section3 dis- cusses the relationship between bent functions and strongly regular graphs. Section4 introduces various concepts of equivalence of bent functions. Sec- tion5 discusses the relationship between bent functions and block designs. Section6 describes the SageMath and CoCalc code that has been used to obtain the computational results of this paper. Section7 puts the results of this paper in the context of questions that are still open. The appendices contain the proof of one of the properties of quadratic bent functions, and list some of the properties of the equivalence classes of bent functions for dimension up to 8. 2 Preliminaries This section presents some of the key concepts used in the remainder of the paper. We first examine Boolean functions, then define bent Boolean functions, and finally explore the relationships between bent functions and Hamming weights. 2.1 Boolean functions Here and in the remainder of the paper, F2 denotes the field of two elements, also known as GF (2). Models of F2 include integer arithmetic modulo 2 (Z=2Z also known as Z2) and Boolean algebra with \exclusive or" as addition and \and" as multiplication. 3 Boolean functions and Reed-Muller codes. Any Boolean function f : n F2 ! F2 can be represented as a reduced polynomial in at most n variables over F2 [51, 55][21, Ch. III, Section 2]. This is called the algebraic normal form of f [57, Chapter 5]. Example. In Sage, using sage.crypto.boolean_function, define: from sage.crypto.boolean_function import BooleanFunction f = BooleanFunction([1,1,1,0]) a = f.algebraic_normal_form() 2 The algebraic normal form of the Boolean function f on F2 with variables x0 and x1 and truth table [1; 1; 1; 0] (in lexicographic order) is then a = x0x1 +1 [64, Boolean Functions]. Definition 1. [51][45, Ch. 13, Section 3] [62, 10.5.2] The Reed-Muller code n RM(r; n) consists of those Boolean functions f : F2 ! F2 whose algebraic normal form has degree r. Remark. Some texts use the notation R(r; n) or RM(r; 2n) for RM(r; n). Each Reed-Muller code RM(r; n) is a linear subspace of the vector space n of Boolean functions f : F2 ! F2. The Reed-Muller code RM(1; n) consists of the 2n+1 affine functions n f(x) = hc; xi + δ for c 2 F2 ; δ 2 F2 [45, Ch 14, Section 3] [62, 10.5.2]. Bent Boolean functions. Bent Boolean functions can be defined in a number of equivalent ways. The definition used here involves the Walsh Hadamard Transform. Definition 2. [21, Ch. III, Section 2] [45, Ch. 2, Section 3] The Walsh n Hadamard transform of a Boolean function f : F2 ! F2 is X f(y)+hx;yi Wf (x) := (−1) n y2F2 where n−1 X hx; yi := xiyi: i=0 Example. Using sage.crypto.boolean_function in Sage, define: from sage.crypto.boolean_function import BooleanFunction f = BooleanFunction([1,1,1,0]) w = f.walsh_hadamard_transform() 4 2 The Walsh Hadamard transform of the Boolean function f on F2 is then w = (−2; −2; −2; 2) as a truth table in lexicographic order [64, Boolean Func- tions]. Remarks. 1. In versions of Sage before 8.2 the walsh_hadamard_transform method has an incorrect sign [Sage trac ticket #23931]. n 2. For Boolean functions f : F2n ! F2, where F2n is the finite field on 2 elements, the trace form [29, 3.1] is used to define the Walsh Hadamard transform. 2m Definition 3. A Boolean function f : F2 ! F2 is bent if and only if its Walsh Hadamard transform has constant absolute value 2m [21, p. 74] [55, p. 300]. Example. The Boolean function f in the previous example is bent, since its Walsh Hadamard transform has constant absolute value 2. The remainder of this paper refers to bent Boolean functions simply as bent functions. Remarks. 1. Bent functions can also be characterized as those Boolean functions whose Hamming distance from any affine Boolean function is the max- imum possible [45, Ch. 14 Theorem 6] [49, Theorem 3.3]. 2. The property of being a bent function is invariant with respect to the non-degenerate symmetric bilinear form used to define the Walsh Hada- mard transform. That is, for a non-degenerate symmetric bilinear form n×n hx; Syi, where S is a non-degenerate symmetric matrix in F2 , and a Boolean function f : F2n ! F2, the Walsh Hadamard transform X f(y)+hx;Syi W [S]f (x) := (−1) n y2F2 has constant absolute value 2m if and only if f is bent as per Definition 2m 3[24].
Details
-
File Typepdf
-
Upload Time-
-
Content LanguagesEnglish
-
Upload UserAnonymous/Not logged-in
-
File Pages69 Page
-
File Size-