Parallel Computation of Boolean Gr Obner Bases 1 Introduction

Total Page:16

File Type:pdf, Size:1020Kb

Parallel Computation of Boolean Gr Obner Bases 1 Introduction Parallel computation of Bo olean Grobner bases y z Y. Sato and A. Suzuki Department of Computer Science Ritsumeikan University y [email protected] z [email protected] Abstract Bo olean rings are isomorphic to direct pro ducts of a Galois eld GF 2. Using these structures, b o olean Grobner bases can b e constructed by a parallel computation algorithm. We implemented this metho d using a parallel logic programming language KLIC. In this pap er, we rep ort on this work. 1 Intro duction In p olynomial rings over commutative Von Neumann regular rings, we can construct Grobner bases using sp ecial kinds of monomial reductions[W 89]. This metho d is implemented as a Grobner bases computation algorithm in \SET CONSTRAINT SOLVER Version 1.0"[Sa 97, Sb 97]. Meanwhile any commutative Von Neumann regular ring is known to be iso- morphic to a sub-ring of a direct pro duct of elds [SW 75], and a Grobner basis of its p olynomial ring can be characterized in terms of a Grobner ba- sis of a p olynomial ring over each eld. See Theorem 4.1 for more detailed description. With this prop erty, we can also construct a Grobner basis of a p olynomial ring over a commutativeVon Neumann regular ring by computing a Grobner basis in a p olynomial ring over each eld indep endently. When the structures of direct pro ducts are simple, this metho d seems more ecient, esp ecially under the environment we can use parallel computations. Finite b o olean rings are among the simplest examples of commutative Von Neumann regular rings. They are isomorphic to nite direct pro ducts of a Galois eld GF 2. Polynomial rings we are handling in [Sa 97] are essentially p olynomial rings over nite b o olean rings. So, the ab ove metho d is exp ected to b e more ecient than the original one. We implemented this metho d as a parallel computation algorithm of Grobner bases in \SET CONSTRAINT SOLVER Version 2.0" [S 99]. In this pap er, we intro duce this parallel computation algorithm, and rep ort on exp erimental results we got through the actual parallel computations. In section 2, we give a short description of the theory of Grobner bases in p olynomial rings over commutative Von Neumann regular rings with mini- mum results for understanding our work. The reader is referred to [W 89] or [S 98] for more detailed comprehensive description. In section 3, we give a quick review for our set constraint solver based on Grobner bases. In section 4, we describ e our parallel computation algorithm. In section 5, we give several data we got through our exp eriments. 2 Grobner bases A commutative ring R with identity 1 is called a Von Neumann regular ring if it has the following prop erty: 2 8a 2 R 9b 2 Ra b = a: 1 2 For such b, a = ab and a = ab are uniquely determined and satisfy 1 2 aa = a, aa = a and a = a . Note that every direct pro duct of elds is Von Neumann regular ring. Con- versely, any Von Neumann regular ring is known to be isomorphic to a sub- ring of a direct pro duct of elds[SW 75]. We assume R is a Von Neumann regular ring in this section. Note that any sub-ring of R generated by a nite subset of R b ecomes a No etherean ring, although R is not generally a No etherean ring. Therefore there exists a Grobner basis for any nitely generated ideal in p olynomial rings over R . We can even have an algorithm to construct a Grobner basis of the ideal gener- ated by a given nite set of p olynomials. This algorithm is essentially same as Buchb erger's algorithm except that we have to de ne sp ecial monomial reductions in our p olynomial rings. In the following unless mentioned, Greek letters , , are used for terms, Roman letters a, b, c for elements of R and f , g , h for p olynomials over R . Throughout this section wework in a p olynomial ring over R and assume that some total admissible order on the set of terms is given. The largest term of f is denoted by ltf and its co ecient by lcf . The largest monomial of f i.e. lcf ltf is denoted by lmf , the rest of f i.e. f lmf is denoted by rmf . De nition 2.1 For a p olynomial f = a + g with lmf =a , a monomial reduction ! is f de ned as follows: 1 b + h ! b + h ba a + g f where ab 6= 0 and b need not b e the largest monomial of b + h. A monomial reduction ! by a set F of p olynomials is also de ned naturally. F Using this monomial reduction, we can construct a Grobner basis of the ideal generated by a given nite set of p olynomials. Though the algorithm is al- most same as the Buchb erger's algorithm for p olynomial rings over elds, we have to take account of the following observation. In a p olynomial ring over a eld, the equivalence relation $ induced by the F monomial reduction ! for a set F of p olynomials coincides with the equiv- F alence relation induced by the ideal F generated by F . In our p olynomial ring, however, these two equivalence relations are in general not equal. De nition 2.2 A p olynomial f is called boolean closed if lcf f = f . lcf f is called a boolean closure of f and denoted by bcf . Note that the b o olean closure of any p olynomial is b o olean closed. Theorem 2.1 Let F be a set of b o olean closed p olynomials. Then the equivalence relation $ coincides with the equivalence relation induced by the ideal F . F Since lmf =lmbcf , we can construct a set of b o olean closed p olynomials H from any given set of p olynomials F such that F =H. H is also called a boolean closure of F . Though such H is not determined uniquely,we abuse the notation bcF to denote one of such H . Using our monomial reductions, Grobner bases are de ned as follows. De nition 2.3 A nite set G of p olynomials is called a Grobner basis, if it satis es the fol- lowing two prop erties. f $ g i f g 2 G for each p olynomial f and g . G ! has aChurch Rosser prop erty, G i.e. for each p olynomial f and g , f $ g i there exists G a p olynomial h such that f ! h and g ! h. G G De nition 2.4 0 0 For each pair of p olynomials f = a + f and g = b + g , where lmf = a , lmg = b and GC D ; = 1, the p olynomial b f a g = 0 0 b f a g is called the S-p olynomial of f and g and denoted by SP f; g. We can also characterize Grobner bases in terms of S-p olynomials as in p oly- nomial rings over elds. Theorem 2.2 Let G be a nite set of b o olean closed p olynomials. Then G is a Grobner basis i SP f; g ! 0 for any pair f and g of p olynomials G in G. It is crucial that each p olynomial of G is b o olean closed. The theorem do es not hold otherwise. This theorem enables us to construct a Grobner basis G for a given nite set F of p olynomials such that G= F. Algorithm Let F = bcF . 0 while there exist f; g 2 F such that SP f; g 6=0 i F i F = bcF [fSP f; g g i+1 i F i otherwise G = F i Reduced Grobner bases are de ned naturally and can be constructed from any Grobner bases immediately. We have the following prop erty. Theorem 2.3 Let G be a reduced Grobner basis; then any element of G is b o olean closed. In p olynomial rings over elds, reduced Grobner bases serve us as canonical forms of Grobner bases, however we have to be careful in our p olynomial rings. De nition 2.5 A p olynomial f is called monic if it satis es lcf =lcf . De nition 2.6 A reduced Grobner basis G is called a strati ed Grobner basis, when it satis- es the following two prop erties. Ever element of G is monic. ltf 6= ltg for any distinct element f and g of G. Theorem 2.4 A strati ed Grobner basis is determined uniquely. That is two strati ed 0 0 Grobner bases G and G such that G= Gmust be identical. Let us conclude this section with showing that there exist another typ es of canonical forms of Grobner bases. De nition 2.7 A Grobner basis G each element of which is monic and b o olean closed is called an optimal Grobner basis if it has the following three prop erties. 1 G is a minimal Grobner basis, i.e. G ffg is not a Grobner basis of the ideal G for any element f of G. 2 For any element f of G, rmf is not reducible by ! . G 3 For each element f and g of G,ifltf jltg i.e.
Recommended publications
  • Boolean Like Semirings
    Int. J. Contemp. Math. Sciences, Vol. 6, 2011, no. 13, 619 - 635 Boolean Like Semirings K. Venkateswarlu Department of Mathematics, P.O. Box. 1176 Addis Ababa University, Addis Ababa, Ethiopia [email protected] B. V. N. Murthy Department of Mathematics Simhadri Educational Society group of institutions Sabbavaram Mandal, Visakhapatnam, AP, India [email protected] N. Amarnath Department of Mathematics Praveenya Institute of Marine Engineering and Maritime Studies Modavalasa, Vizianagaram, AP, India [email protected] Abstract In this paper we introduce the concept of Boolean like semiring and study some of its properties. Also we prove that the set of all nilpotent elements of a Boolean like semiring forms an ideal. Further we prove that Nil radical is equal to Jacobson radical in a Boolean like semi ring with right unity. Mathematics Subject Classification: 16Y30,16Y60 Keywords: Boolean like semi rings, Boolean near rings, prime ideal , Jacobson radical, Nil radical 1 Introduction Many ring theoretic generalizations of Boolean rings namely , regular rings of von- neumann[13], p- rings of N.H,Macoy and D.Montgomery [6 ] ,Assoicate rings of I.Sussman k [9], p -rings of Mc-coy and A.L.Foster [1 ] , p1, p2 – rings and Boolean semi rings of N.V.Subrahmanyam[7] have come into light. Among these, Boolean like rings of A.L.Foster [1] arise naturally from general ring dulity considerations and preserve many of the formal 620 K. Venkateswarlu et al properties of Boolean ring. A Boolean like ring is a commutative ring with unity and is of characteristic 2 with ab (1+a) (1+b) = 0.
    [Show full text]
  • Ring (Mathematics) 1 Ring (Mathematics)
    Ring (mathematics) 1 Ring (mathematics) In mathematics, a ring is an algebraic structure consisting of a set together with two binary operations usually called addition and multiplication, where the set is an abelian group under addition (called the additive group of the ring) and a monoid under multiplication such that multiplication distributes over addition.a[›] In other words the ring axioms require that addition is commutative, addition and multiplication are associative, multiplication distributes over addition, each element in the set has an additive inverse, and there exists an additive identity. One of the most common examples of a ring is the set of integers endowed with its natural operations of addition and multiplication. Certain variations of the definition of a ring are sometimes employed, and these are outlined later in the article. Polynomials, represented here by curves, form a ring under addition The branch of mathematics that studies rings is known and multiplication. as ring theory. Ring theorists study properties common to both familiar mathematical structures such as integers and polynomials, and to the many less well-known mathematical structures that also satisfy the axioms of ring theory. The ubiquity of rings makes them a central organizing principle of contemporary mathematics.[1] Ring theory may be used to understand fundamental physical laws, such as those underlying special relativity and symmetry phenomena in molecular chemistry. The concept of a ring first arose from attempts to prove Fermat's last theorem, starting with Richard Dedekind in the 1880s. After contributions from other fields, mainly number theory, the ring notion was generalized and firmly established during the 1920s by Emmy Noether and Wolfgang Krull.[2] Modern ring theory—a very active mathematical discipline—studies rings in their own right.
    [Show full text]
  • Problems and Comments on Boolean Algebras Rosen, Fifth Edition: Chapter 10; Sixth Edition: Chapter 11 Boolean Functions
    Problems and Comments on Boolean Algebras Rosen, Fifth Edition: Chapter 10; Sixth Edition: Chapter 11 Boolean Functions Section 10. 1, Problems: 1, 2, 3, 4, 10, 11, 29, 36, 37 (fifth edition); Section 11.1, Problems: 1, 2, 5, 6, 12, 13, 31, 40, 41 (sixth edition) The notation ""forOR is bad and misleading. Just think that in the context of boolean functions, the author uses instead of ∨.The integers modulo 2, that is ℤ2 0,1, have an addition where 1 1 0 while 1 ∨ 1 1. AsetA is partially ordered by a binary relation ≤, if this relation is reflexive, that is a ≤ a holds for every element a ∈ S,it is transitive, that is if a ≤ b and b ≤ c hold for elements a,b,c ∈ S, then one also has that a ≤ c, and ≤ is anti-symmetric, that is a ≤ b and b ≤ a can hold for elements a,b ∈ S only if a b. The subsets of any set S are partially ordered by set inclusion. that is the power set PS,⊆ is a partially ordered set. A partial ordering on S is a total ordering if for any two elements a,b of S one has that a ≤ b or b ≤ a. The natural numbers ℕ,≤ with their ordinary ordering are totally ordered. A bounded lattice L is a partially ordered set where every finite subset has a least upper bound and a greatest lower bound.The least upper bound of the empty subset is defined as 0, it is the smallest element of L.
    [Show full text]
  • Mathematics 721 Fall 2016 on Dynkin Systems Definition. a Dynkin
    Mathematics 721 Fall 2016 On Dynkin systems Definition. A Dynkin-system D on X is a collection of subsets of X which has the following properties. (i) X 2 D. (ii) If A 2 D then its complement Ac := X n A belong to D. 1 (iii) If An is a sequence of mutually disjoint sets in D then [n=1An 2 D. Observe that every σ-algebra is a Dynkin system. A1. In the literature one can also find a definition with alternative axioms (i), (ii)*, (iii)* where again (i) X 2 D, and (ii)* If A; B are in D and A ⊂ B then B n A 2 D. 1 (iii)* If An 2 D, An ⊂ An+1 for all n = 1; 2; 3;::: then also [n=1An 2 D. Prove that the definition with (i), (ii), (iii) is equivalent with the definition with (i), (ii)*, (iii)*. A2. Verify: If E is any collection of subsets of X then the intersection of all Dynkin-systems containing E is a Dynkin system containing E. It is the smallest Dynkin system containing E. We call it the Dynkin-system generated by E, and denote it by D(E). Definition: A collection A of subsets of X is \-stable if for A 2 A and B 2 A we also have A \ B 2 A. Observe that a \-stable system is stable under finite intersections. A3. (i) Show that if D is a \-stable Dynkin system, then the union of two sets in D is again in D. (ii) Prove: A Dynkin-system is a σ-algebra if and only if it is \-stable.
    [Show full text]
  • Proto-Boolean Rings
    An. S¸t. Univ. Ovidius Constant¸a Vol. 19(3), 2011, 175{194 Proto-Boolean rings Sergiu Rudeanu Abstract We introduce the family of R-based proto-Boolean rings associated with an arbitrary commutative ring R. They generalize the proto- Boolean algebra devised by Brown [4] as a tool for expressing in modern language Boole's research in The Laws of Thought. In fact the algebraic results from [4] are recaptured within the framework of proto-Boolean rings, along with other theorems. The free Boolean algebras with a fi- nite or countable set of free generators, and the ring of pseudo-Boolean functions, used in operations research for problems of 0{1 optimization, are also particular cases of proto-Boolean rings. The deductive system in Boole's Laws of Thought [3] involves both an alge- braic calculus and a \general method in Logic" making use of this calculus. Of course, Boole's treatises do not conform to contemporary standards of rigour; for instance, the modern concept of Boolean algebra was in fact introduced by Whitehead [12] in 1898; see e.g. [9]. Several authors have addressed the problem of presenting Boole's creation in modern terms. Thus Beth [1], Section 25 summarizes the approach of Hoff- Hansen and Skolem, who describe the algebra devised by Boole as the quotient of an algebra of polynomial functions by the ideal generated by x2 − x; y2 − y; z2 − z; : : : . Undoubtedly the most comprehensive analysis of the Laws of Thought is that offered by Hailperin [5] in terms of multisets. Quite recently, Brown [4], taking for granted the existence of formal entities described as polynomials with integer coefficients, subject to the usual computation rules 2 except that the indeterminates are idempotent (xi = xi), analyses Chapters V-X of [3] within this elementary framework, which he calls proto-Boolean algebra.
    [Show full text]
  • On Ring-Like Structures of Lattice-Ordered Numerical Events
    On ring-like structures of lattice-ordered numerical events Dietmar Dorninger and Helmut L¨anger Abstract Let S be a set of states of a physical system. The probabilities p(s) of the oc- currence of an event when the system is in different states s ∈ S define a function from S to [0, 1] called a numerical event or, more accurately, an S-probability. Sets of S-probabilities ordered by the partial order of functions give rise to so called al- gebras of S-probabilities, in particular to the ones that are lattice-ordered. Among these there are the σ-algebras known from probability theory and the Hilbert-space logics which are important in quantum-mechanics. Any algebra of S-probabilities can serve as a quantum-logic, and it is of special interest when this logic turns out to be a Boolean algebra because then the observed physical system will be classical. Boolean algebras are in one-to-one correspondence to Boolean rings, and the question arises to find an analogue correspondence for lattice-ordered algebras of S-probabilities generalizing the correspondence between Boolean algebras and Boolean rings. We answer this question by defining ring-like structures of events (RLSEs). First, the structure of RLSEs is revealed and Boolean rings among RLSEs are characterized. Then we establish how RLSEs correspond to lattice-ordered alge- bras of numerical events. Further, functions for associating lattice-ordered algebras of S-probabilities to RLSEs are studied. It is shown that there are only two ways to assign lattice-ordered algebras of S-probabilities to RLSEs if one restricts the corresponding mappings to term functions over the underlying orthomodular lat- tice.
    [Show full text]
  • MULTIPLICATIVELY IDEMPOTENT SEMIRINGS 1. Introduction
    140 (2015) MATHEMATICA BOHEMICA No. 1, 35–42 MULTIPLICATIVELY IDEMPOTENT SEMIRINGS Ivan Chajda, Olomouc, Helmut Länger, Wien, Filip Švrček, Olomouc (Received December 11, 2012) Abstract. Semirings are modifications of unitary rings where the additive reduct does not form a group in general, but only a monoid. We characterize multiplicatively idempotent semirings and Boolean rings as semirings satisfying particular identities. Further, we work with varieties of enriched semirings. We show that the variety of enriched multiplicatively idempotent semirings differs from the join of the variety of enriched unitary Boolean rings and the variety of enriched bounded distributive lattices. We get a characterization of this join. Keywords: semiring; commutative semiring; multiplicatively idempotent semiring; semir- ing of characteristic 2; simple semiring; unitary Boolean ring; bounded distributive lattice MSC 2010 : 16Y60, 06E20 1. Introduction Boolean rings are important algebras used both in mathematics and applications. Several characterizations of Boolean rings were settled in [1], [2] and [8]. However, in some considerations in Computer Science as well as in Propositional Calculus we need to work with similar algebras which need not be rings. In particular, we often use semirings satisfying the condition xx = x and hence forming a certain generalization of Boolean rings. Of course, every unitary Boolean ring is a semiring satisfying this condition. However, also every bounded distributive lattice can be considered as a semiring satisfying xx = x. Hence, our class of semirings under consideration is broad enough to be treated from several points of view. We recall the definition of a semiring from [5]. Support of the research of the first two authors by the Austrian Science Fund (FWF) and the Czech Science Foundation (GAČR), Project I 1923-N25, and by AKTION Austria– Czech Republic, Grant No.
    [Show full text]
  • Some Fundamental Properties of Boolean Ring Normal Forms
    Series Logo Volume 00 xx Some Fundamental Prop erties of Bo olean Ring Normal Forms Jieh Hsiang and Guan Shieng Huang Abstract Bo olean ring is an algebraic structure which uses exclusiv e or instead of the usual or It yields a unique normal form for every Bo olean function In this pap er we present several fundamental prop erties concerning Bo olean rings We present a simple metho d for deriving the Bo olean ring nor mal form directly from a truth table We also describ e a notion of normal form of a Bo olean function with a dontcare condition and show an algorithm for generating such a normal form We then discuss two Bo olean ring based theo rem proving metho ds for prop ositional logic Finally we give some arguments on why the Bo olean ring representation had not b een used more extensively and how it can b e used in computing Intro duction Bo olean ring is an algebraic structure which is equivalent to Bo olean algebra The ma jor representational dierences are that Bo olean ring uses exclusiveor instead of or to represent Bo olean functions and that there is no need for negation in Bo olean ring Furthermore there is a unique Bo olean ring normal form for every Bo olean function It is curious however that in spite of its long history and elegant algebraic prop erties the Bo olean ring representation has rarely b een used in the computational context In this pap er we present several fundamental results concerning Bo olean rings Some of the results are so elementary and simple that they can and should b e taught in a rstyear logic
    [Show full text]
  • 807 the Representation of Boolean Algebras
    193*1 BOOLEAN ALGEBRAS 807 THE REPRESENTATION OF BOOLEAN ALGEBRAS M. H. STONE 1. Introduction. In this brief address I shall set myself a twofold aim: to review the theory of Boolean algebras, as we understand it today, and to sketch certain historical phases of its development. Al­ though I am in no sense prepared to offer the fruits of painstaking historical research, I believe that by a few pertinent historical ob­ servations I shall be able to bring out the underlying evolutionary pattern, which, in fact, is a quite familiar one. 2. Motivation and essential features of the theory. More than ninety years have passed since the publication of George Boole's first contribution towards an algebra of logic [5].* While Boole was by no means the first to attempt a symbolic method in logic (among his precursors we find Leibniz, Jacques and Jean Bernoulli, J. H. Lambert, and Gergonne [ó]) it is a just and proper tribute to his genius that we commonly call this algebra by his name. I believe it would be accurate to say that of the many books, memoirs, notes, and reviews (more than one hundred seventy-five in number [6]) which deal with Boolean algebras the great majority draw their in­ spiration directly or indirectly from the work of Boole. The orienta­ tion of these studies toward symbolic logic is apparent in their preoccupation with algorithms, identities, and equations, or with the logical interrelations of the formal properties of the various Boolean operations. Recently there has emerged a different tendency, namely, to view Boolean algebras structurally, as organic systems, rather than algorithmically.
    [Show full text]
  • Representing Quantum Structures As Near Semirings 3
    REPRESENTING QUANTUM STRUCTURES AS NEAR SEMIRINGS S. BONZIO, I. CHAJDA, AND A. LEDDA Abstract. In this paper we introduce the notion of near semir- ing with involution. Generalizing the theory of semirings we aim at represent quantum structures, such as basic algebras and ortho- modular lattices, in terms of near semirings with involution. In particular, after discussing several properties of near semirings, we introduce the so-calledLukasiewicz near semirings, as a particular case of near semirings, and we show that every basic algebra is representable as (precisely, it is term equivalent to) a near semir- ing. In the particular case in which aLukasiewicz near semiring is also a semiring, we obtain as a corollary a representation of MV- algebras as semirings. Analogously, by introducing a particular subclass ofLukasiewicz near semirings, that we termed orthomod- ular near semirings, we obtain a representation of orthomodular lattices. In the second part of the paper, we discuss several univer- sal algebraic properties ofLukasiewicz near semirings and we show that the variety of involutive integral near semirings is a Church variety. This yields a neat equational characterization of central elements of this variety. As a byproduct of such, we obtain several direct decomposition theorems for this class of algebras. 1. Introduction It is a long-dated result, due to Marshall Stone [19], that the theory of Boolean algebras (the algebraic counterpart of classical logic) can be framed within the theory of rigs, through the concept of Boolean ring. arXiv:1810.09345v1 [math.LO] 22 Oct 2018 More recently, in the last decade, the relations between prominent al- gebraic structures from many-valued logics and (semi)ring theory have stirred a renewed attention (see, e.g., [13, 1]).
    [Show full text]
  • Neutrosophic Boolean Rings
    Neutrosophic Sets and Systems Volume 33 Article 3 5-1-2020 Neutrosophic Boolean Rings T. Chalapathi L. Madhavi Follow this and additional works at: https://digitalrepository.unm.edu/nss_journal Recommended Citation Chalapathi, T. and L. Madhavi. "Neutrosophic Boolean Rings." Neutrosophic Sets and Systems 33, 1 (2020). https://digitalrepository.unm.edu/nss_journal/vol33/iss1/3 This Article is brought to you for free and open access by UNM Digital Repository. It has been accepted for inclusion in Neutrosophic Sets and Systems by an authorized editor of UNM Digital Repository. For more information, please contact [email protected], [email protected], [email protected]. Neutrosophic Sets and Systems, Vol. 33, 2020 University of New Mexico Neutrosophic Boolean Rings T.Chalapathi 1,* and L. Madhavi 2 1 Department of Mathematics, Sree Vidyanikethan Engg. College, Tirupati-517 102, Andhra Pradesh, India. [email protected] 2 Department of Applied Mathematics, Yogi Vemana University, Kadapa-516 003, Andhra Pradesh, India. [email protected] * Correspondence: [email protected]; Tel.: (+91 9542865332) Abstract: In this paper, we are going to define Neutrosophic Boolean rings and study their algebraic structure. A finite Boolean ring R satisfies the identity aa2 for all aR , which implies the identity aan for each positive integer n 1. With this as motivation, we consider a Neutrosophic Boolean ring NRI(,) which fulfils the identity ()a bI 2 a bI for all a bI N(,) R I and describes several Neutrosophic rings which are Neutrosophic Boolean rings with various algebraic personalities. First, we show a necessary and sufficient condition for a Neutrosophic ring of a classical ring to be a Neutrosophic Boolean ring.
    [Show full text]
  • An Introduction to Boolean Algebras
    California State University, San Bernardino CSUSB ScholarWorks Electronic Theses, Projects, and Dissertations Office of aduateGr Studies 12-2016 AN INTRODUCTION TO BOOLEAN ALGEBRAS Amy Schardijn California State University - San Bernardino Follow this and additional works at: https://scholarworks.lib.csusb.edu/etd Part of the Algebra Commons Recommended Citation Schardijn, Amy, "AN INTRODUCTION TO BOOLEAN ALGEBRAS" (2016). Electronic Theses, Projects, and Dissertations. 421. https://scholarworks.lib.csusb.edu/etd/421 This Thesis is brought to you for free and open access by the Office of aduateGr Studies at CSUSB ScholarWorks. It has been accepted for inclusion in Electronic Theses, Projects, and Dissertations by an authorized administrator of CSUSB ScholarWorks. For more information, please contact [email protected]. An Introduction to Boolean Algebras A Thesis Presented to the Faculty of California State University, San Bernardino In Partial Fulfillment of the Requirements for the Degree Master of Arts in Mathematics by Amy Michiel Schardijn December 2016 An Introduction to Boolean Algebras A Thesis Presented to the Faculty of California State University, San Bernardino by Amy Michiel Schardijn December 2016 Approved by: Dr. Giovanna Llosent, Committee Chair Date Dr. Jeremy Aikin, Committee Member Dr. Corey Dunn, Committee Member Dr. Charles Stanton, Chair, Dr. Corey Dunn Department of Mathematics Graduate Coordinator, Department of Mathematics iii Abstract This thesis discusses the topic of Boolean algebras. In order to build intuitive understanding of the topic, research began with the investigation of Boolean algebras in the area of Abstract Algebra. The content of this initial research used a particular nota- tion. The ideas of partially ordered sets, lattices, least upper bounds, and greatest lower bounds were used to define the structure of a Boolean algebra.
    [Show full text]