Digital Logic Design and Computer Architecture

Total Page:16

File Type:pdf, Size:1020Kb

Digital Logic Design and Computer Architecture Digital Logic Design and Computer Architecture Teacher: Archit Verma Department :Computer Applications Course: B.Sc Semester: Second Semester Paper-1(Digital Logic Design and Computer Architecture) Units:1,2,3,4 References: Books • M. M. Mano, Digital Logic and Computer Design. • M. M. Mano, Computer System Architecture. UNIT-1 Boolean algebra and Logic Gates Boolean Algebra Boolean Algebra is an algebra that deals with binary variables and logic operations. The variables are designated by letters such as A , B, x and y. The three logic operations are AND(.),OR(+) and NOT(‘). A boolean function can be expressed algebraically with binary variables ,that logic operation symbols , parenthesis and equal sign. For a given value of the variables , the boolean function can be either 1 or 0. eg. F = x+ y’z ‘AND’ Logic Operation AND is denoted by . Eg. F=x.y In AND logic operation, the result is 1 if and only if both operands are 1, otherwise the result is 0 x y x.y 0 0 0 0 1 0 1 0 0 1 1 1 ‘OR’ Logic Operation OR is denoted by . Eg. F=x+y In OR binary operation; the result is 1 if at least one of the two operands are 1, otherwise the result is 0. x y x+y 0 0 0 0 1 1 1 0 1 1 1 1 ‘NOT’ Logic Operation NOT is denoted by ‘ Eg. F=x’ NOT is an unary operator; the result is 1 if the operand is 0 or 0 if the operand is 1. x x’ 0 1 1 0 The operator precedence for evaluating Boolean expression is (1)parentheses (2)NOT (3)AND (4)OR Laws in boolean algebra Identity law x+0=x x.1=x Idempotent law x+x=x x.x=x Cumulative law x+y=y+x x.y=y.x Absorption law x+xy=x x(x+y)=x De-Morgan law (x+y)’=x’.y’ (x.y)’=x’+y’ Domination law x+1=1 x.0=0 Associative law (x+y)+z=x+(y+z) (x.y).z=x.(y.z) Distributive law x.(y+z)=x.y+x.z x+y.z=(x+y).(x+z) Involution law (x’)’=x Complement law x + x’=1 x.x’=0 Truth table of function x y Z F=x+y’z 0 0 0 0 0 0 1 1 0 1 0 0 0 1 1 0 1 0 0 1 1 0 1 1 1 1 0 1 1 1 1 1 Simplification of boolean functions to minimum number of literals Find the complement of the following functions by applying De-morgan law More Logic Operations NAND (↑) : x↑y = (x.y)’ NOR(↓): x↓y=(x+y)’ XOR(⊕): x ⊕y=x’.y+x.y’ ( XOR is pronounced as Exclusive OR) is a logic operation that gives HIGH output when the number of HIGH inputs is odd.) XNOR(⊙): (X⊙Y)=(x⊕y)’=(x’.y+x.y’)’=(x’.y’+x.y) Logic Gates Universal Gates A universal gate is a gate which can implement any Boolean function without need to use any other gate type. The NAND and NOR gates are universal gates. In practice, this is advantageous since NAND and NOR gates are economical and easier to fabricate and are the basic gates used in all IC digital logic families. Implementation using NAND gate Implementation using NOR gate XNOR Implementation of Expression Using NAND Gate Implementation of Boolean Expression Using NOR Gate only Minterm and Maxterm Definition: a minterm of n variables is a product of the variables in which each appears exactly once in true or complemented form. Definition: a maxterm of n variables is a sum of the variables in which each appears exactly once in true or complemented form. Canonical SOP x y Z F=x+y’z Minterm Canonical SOP: Canonical s Sum of products , also called as 0 0 0 0 sum of minterms. Any boolean 0 0 1 1 m1=x’y’z function and by expresses as 0 1 0 0 sum of minterms. For the 0 1 1 0 1 0 0 1 m =x.y.’z’ function table, the minterms 4 1 0 1 1 m =x.y’z used are the terms 5 1 1 0 1 m =x.y.z’ corresponding to the 1's. 6 1 1 1 1 m7=x.y.z Representation : F=x’y’z+x.y.’z’+x.y’z+x.y.z’+x.y.z F=∑(1,4,5,6,7) Canonical POS Canonical POS: Canonical x y z F=x+y’z Maxterms Product of sums, also called as 0 0 0 0 M0=x+y+z Product of maxterms. Any 0 0 1 1 boolean function and by 0 1 0 0 M2=x+y’+z expresses as Product of 0 1 1 0 M3=x+y’+z’ maxterms. For the function 1 0 0 1 table, the maxterms used are the 1 0 1 1 terms corresponding to the 0's. 1 1 0 1 1 1 1 1 Representation : F=(x+y+z).(x+y’+z).(x+y’+z’) F=∏(0,2,3) Express the following boolean function as (sum of minterms) and (product of maxterms) F=x.y+x’.z x y z F=x.y+x’.z minterms maxterms F=∑(1,3,6,7) F=∏(0,2,4,5) 0 0 0 0 M0=x+y+z 0 0 1 1 m1=x’y’z 0 1 0 0 M2=x+y’+z 0 1 1 1 m3=x’yz 1 0 0 0 M4=x’+y+z 1 0 1 0 M5=x’+y+z’ 1 1 0 1 m6=xyz’ 1 1 1 1 m7=xyz Algebraic Method of converting to SOP Simplification of Boolean Functions: Two Methods ▪ The algebraic method by using Identities ▪ The graphical method by using Karnaugh Map method ▪ The K-map method is easy and straightforward. ▪ A K-map for a function of n variables ▪ consists of 2n cells, and, ▪ in every row and column, two adjacent cells should differ in the value of only one of the logic variables. Further, each cell within a K-map has a definite place-value which is obtained by using an encoding technique known as Gray code. • Examples: Cell numbers are written in the cells. • 2-variable K-map 3-variables K-map 4-variable K-map Steps to solve expression using K-map 1. Select K-map according to the number of variables. 2. Identify minterms or maxterms as given in problem. 3. For SOP put 1’s in blocks of K-map respective to the minterms (0’s elsewhere). 4. For POS put 0’s in blocks of K-map respective to the maxterms(1’s elsewhere). 5. Make rectangular groups containing total terms in power of two like 2,4,8 ..(except 1) and try to cover as many elements as you can in one group. 6. From the groups made in step 5 find the product terms and sum them up for SOP form Or find the sum terms and multiply them up for POS form F(A,B,C)= ∑(1,3,6,7) From red group we get product term: A’C From green group we get product term: AB So, Final expression: F= A’C+AB F(P,Q,R,S)=∑(0,2,5,7,8,10,13,15) From red group we get product term: QS From green group we get product term: Q’S’ Final expression: F(P,Q,R,S)= QS+ Q’S’ F(W,X,Y,Z) = ∑(0,1,2,4,5,7,10,15) F = Σ (0, 4, 6, 8, 10, 15) F = A’C'D’ + A’BD’ + AB’D’ + ABCD F(P,Q,R,S) = ∑(0,3,5,7,10,11,12,13,14,15) F=P’Q’R’S’+RS+PQ+QS+PR F = Σ (0, 3, 4, 6, 7, 9, 12, 14, 15) F = BD’ + BC + A’C'D’ + A’CD + AB’C'D Example: F(A,B,C,D)= ∏(3,5,7,8,11,10,12,13) Green : (C+D’+B’) Red : (C’+D’+A) Blue: (A’+C+D) Brown: (A’+B+C’) F=(C+D’+B’).(C’+D’+A).(A’+C+D).(A’+B+C’) F= ∏(4,5,7,13,14,15) F= (W+X’+Y). (W’+X’+Y’).(X’+Z’) F= ∏(3,4,6,7,11,12,13,14,15) F= ∏(1,3,5,7,8,9,10,11,12,13,14,15)) F=(A’).(D’) F (A, B, C, D) = Σ (1, 4, 6, 7, 8, 9, 10, 11, 15). Final Answere: F = AB′ + B′C′D + A′BD′ + BCD UNIT-2 Combinational Circuits Sequential Circuits Combinational Logic Circuit and Sequential Logic Circuits Combinational Logic Circuits are memory less digital logic circuits whose output at any instant in time depends only on the combination of its inputs, unlike Sequential Logic Circuits whose outputs are dependant on both their present inputs and their previous output state giving them some form of Memory. Design of combinational Logic circuit Adders Half Adder The addition of 2 bits is called Half adder the input variables are augend and addend bits and output variables are sum and carry bits. x and y are the two input bits. x y sum carry Sum = x ⊕ y 0 0 0 0 Carry = x. y 0 1 1 0 1 0 1 0 1 1 0 1 Full Adder Creating Full Adder Using two Half Adders Half Subtractor A half-subtractor is a combinational circuit that subtract two bits and produces their difference .It also has an output to specify if a 1 had being borrowed.
Recommended publications
  • A Combinatorial Analysis of Finite Boolean Algebras
    A Combinatorial Analysis of Finite Boolean Algebras Kevin Halasz [email protected] May 1, 2013 Copyright c Kevin Halasz. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html. 1 Contents 1 Introduction 3 2 Basic Concepts 3 2.1 Chains . .3 2.2 Antichains . .6 3 Dilworth's Chain Decomposition Theorem 6 4 Boolean Algebras 8 5 Sperner's Theorem 9 5.1 The Sperner Property . .9 5.2 Sperner's Theorem . 10 6 Extensions 12 6.1 Maximally Sized Antichains . 12 6.2 The Erdos-Ko-Rado Theorem . 13 7 Conclusion 14 2 1 Introduction Boolean algebras serve an important purpose in the study of algebraic systems, providing algebraic structure to the notions of order, inequality, and inclusion. The algebraist is always trying to understand some structured set using symbol manipulation. Boolean algebras are then used to study the relationships that hold between such algebraic structures while still using basic techniques of symbol manipulation. In this paper we will take a step back from the standard algebraic practices, and analyze these fascinating algebraic structures from a different point of view. Using combinatorial tools, we will provide an in-depth analysis of the structure of finite Boolean algebras. We will start by introducing several ways of analyzing poset substructure from a com- binatorial point of view.
    [Show full text]
  • A Boolean Algebra and K-Map Approach
    Proceedings of the International Conference on Industrial Engineering and Operations Management Washington DC, USA, September 27-29, 2018 Reliability Assessment of Bufferless Production System: A Boolean Algebra and K-Map Approach Firas Sallumi ([email protected]) and Walid Abdul-Kader ([email protected]) Industrial and Manufacturing Systems Engineering University of Windsor, Windsor (ON) Canada Abstract In this paper, system reliability is determined based on a K-map (Karnaugh map) and the Boolean algebra theory. The proposed methodology incorporates the K-map technique for system level reliability, and Boolean analysis for interactions. It considers not only the configuration of the production line, but also effectively incorporates the interactions between the machines composing the line. Through the K-map, a binary argument is used for considering the interactions between the machines and a probability expression is found to assess the reliability of a bufferless production system. The paper covers three main system design configurations: series, parallel and hybrid (mix of series and parallel). In the parallel production system section, three strategies or methods are presented to find the system reliability. These are the Split, the Overlap, and the Zeros methods. A real-world case study from the automotive industry is presented to demonstrate the applicability of the approach used in this research work. Keywords: Series, Series-Parallel, Hybrid, Bufferless, Production Line, Reliability, K-Map, Boolean algebra 1. Introduction Presently, the global economy is forcing companies to have their production systems maintain low inventory and provide short delivery times. Therefore, production systems are required to be reliable and productive to make products at rates which are changing with the demand.
    [Show full text]
  • Sets and Boolean Algebra
    MATHEMATICAL THEORY FOR SOCIAL SCIENTISTS SETS AND SUBSETS Denitions (1) A set A in any collection of objects which have a common characteristic. If an object x has the characteristic, then we say that it is an element or a member of the set and we write x ∈ A.Ifxis not a member of the set A, then we write x/∈A. It may be possible to specify a set by writing down all of its elements. If x, y, z are the only elements of the set A, then the set can be written as (2) A = {x, y, z}. Similarly, if A is a nite set comprising n elements, then it can be denoted by (3) A = {x1,x2,...,xn}. The three dots, which stand for the phase “and so on”, are called an ellipsis. The subscripts which are applied to the x’s place them in a one-to-one cor- respondence with set of integers {1, 2,...,n} which constitutes the so-called index set. However, this indexing imposes no necessary order on the elements of the set; and its only pupose is to make it easier to reference the elements. Sometimes we write an expression in the form of (4) A = {x1,x2,...}. Here the implication is that the set A may have an innite number of elements; in which case a correspondence is indicated between the elements of the set and the set of natural numbers or positive integers which we shall denote by (5) Z = {1, 2,...}. (Here the letter Z, which denotes the set of natural numbers, derives from the German verb zahlen: to count) An alternative way of denoting a set is to specify the characteristic which is common to its elements.
    [Show full text]
  • Boolean Algebras
    CHAPTER 8 Boolean Algebras 8.1. Combinatorial Circuits 8.1.1. Introduction. At their lowest level digital computers han- dle only binary signals, represented with the symbols 0 and 1. The most elementary circuits that combine those signals are called gates. Figure 8.1 shows three gates: OR, AND and NOT. x1 OR GATE x1 x2 x2 x1 AND GATE x1 x2 x2 NOT GATE x x Figure 8.1. Gates. Their outputs can be expressed as a function of their inputs by the following logic tables: x1 x2 x1 x2 1 1 ∨1 1 0 1 0 1 1 0 0 0 OR GATE 118 8.1. COMBINATORIAL CIRCUITS 119 x1 x2 x1 x2 1 1 ∧1 1 0 0 0 1 0 0 0 0 AND GATE x x¯ 1 0 0 1 NOT GATE These are examples of combinatorial circuits. A combinatorial cir- cuit is a circuit whose output is uniquely defined by its inputs. They do not have memory, previous inputs do not affect their outputs. Some combinations of gates can be used to make more complicated combi- natorial circuits. For instance figure 8.2 is combinatorial circuit with the logic table shown below, representing the values of the Boolean expression y = (x x ) x . 1 ∨ 2 ∧ 3 x1 x2 y x3 Figure 8.2. A combinatorial circuit. x1 x2 x3 y = (x1 x2) x3 1 1 1 ∨0 ∧ 1 1 0 1 1 0 1 0 1 0 0 1 0 1 1 0 0 1 0 1 0 0 1 1 0 0 0 1 However the circuit in figure 8.3 is not a combinatorial circuit.
    [Show full text]
  • Boolean Algebra.Pdf
    Section 3 Boolean Algebra The Building Blocks of Digital Logic Design Section Overview Binary Operations (AND, OR, NOT), Basic laws, Proof by Perfect Induction, De Morgan’s Theorem, Canonical and Standard Forms (SOP, POS), Gates as SSI Building Blocks (Buffer, NAND, NOR, XOR) Source: UCI Lecture Series on Computer Design — Gates as Building Blocks, Digital Design Sections 1-9 and 2-1 to 2-7, Digital Logic Design CECS 201 Lecture Notes by Professor Allison Section II — Boolean Algebra and Logic Gates, Digital Computer Fundamentals Chapter 4 — Boolean Algebra and Gate Networks, Principles of Digital Computer Design Chapter 5 — Switching Algebra and Logic Gates, Computer Hardware Theory Section 6.3 — Remarks about Boolean Algebra, An Introduction To Microcomputers pp. 2-7 to 2-10 — Boolean Algebra and Computer Logic. Sessions: Four(4) Topics: 1) Binary Operations and Their Representation 2) Basic Laws and Theorems of Boolean Algebra 3) Derivation of Boolean Expressions (Sum-of-products and Product-of-sums) 4) Reducing Algebraic Expressions 5) Converting an Algebraic Expression into Logic Gates 6) From Logic Gates to SSI Circuits Binary Operations and Their Representation The Problem Modern digital computers are designed using techniques and symbology from a field of mathematics called modern algebra. Algebraists have studied for a period of over a hundred years mathematical systems called Boolean algebras. Nothing could be more simple and normal to human reasoning than the rules of a Boolean algebra, for these originated in studies of how we reason, what lines of reasoning are valid, what constitutes proof, and other allied subjects. The name Boolean algebra honors a fascinating English mathematician, George Boole, who in 1854 published a classic book, "An Investigation of the Laws of Thought, on Which Are Founded the Mathematical Theories of Logic and Probabilities." Boole's stated intention was to perform a mathematical analysis of logic.
    [Show full text]
  • Boolean Algebra
    Boolean Algebra ECE 152A – Winter 2012 Reading Assignment Brown and Vranesic 2 Introduction to Logic Circuits 2.5 Boolean Algebra 2.5.1 The Venn Diagram 2.5.2 Notation and Terminology 2.5.3 Precedence of Operations 2.6 Synthesis Using AND, OR and NOT Gates 2.6.1 Sum-of-Products and Product of Sums Forms January 11, 2012 ECE 152A - Digital Design Principles 2 Reading Assignment Brown and Vranesic (cont) 2 Introduction to Logic Circuits (cont) 2.7 NAND and NOR Logic Networks 2.8 Design Examples 2.8.1 Three-Way Light Control 2.8.2 Multiplexer Circuit January 11, 2012 ECE 152A - Digital Design Principles 3 Reading Assignment Roth 2 Boolean Algebra 2.3 Boolean Expressions and Truth Tables 2.4 Basic Theorems 2.5 Commutative, Associative, and Distributive Laws 2.6 Simplification Theorems 2.7 Multiplying Out and Factoring 2.8 DeMorgan’s Laws January 11, 2012 ECE 152A - Digital Design Principles 4 Reading Assignment Roth (cont) 3 Boolean Algebra (Continued) 3.1 Multiplying Out and Factoring Expressions 3.2 Exclusive-OR and Equivalence Operation 3.3 The Consensus Theorem 3.4 Algebraic Simplification of Switching Expressions January 11, 2012 ECE 152A - Digital Design Principles 5 Reading Assignment Roth (cont) 4 Applications of Boolean Algebra Minterm and Maxterm Expressions 4.3 Minterm and Maxterm Expansions 7 Multi-Level Gate Circuits NAND and NOR Gates 7.2 NAND and NOR Gates 7.3 Design of Two-Level Circuits Using NAND and NOR Gates 7.5 Circuit Conversion Using Alternative Gate Symbols January 11, 2012 ECE 152A - Digital Design Principles 6 Boolean Algebra Axioms of Boolean Algebra Axioms generally presented without proof 0 · 0 = 0 1 + 1 = 1 1 · 1 = 1 0 + 0 = 0 0 · 1 = 1 · 0 = 0 1 + 0 = 0 + 1 = 1 if X = 0, then X’ = 1 if X = 1, then X’ = 0 January 11, 2012 ECE 152A - Digital Design Principles 7 Boolean Algebra The Principle of Duality from Zvi Kohavi, Switching and Finite Automata Theory “We observe that all the preceding properties are grouped in pairs.
    [Show full text]
  • Boolean Algebra Computer Fundamentals
    CCoommppuutterer FFununddaammenenttaallss:: PPrradadeeepep KK.. SSiinhanha && PPrriititi SSiinhanha Ref. Page Chapter 6: Boolean Algebra and Logic Circuits Slide 1/78 CCoommppuutterer FFununddaammenenttaallss:: PPrradadeeepep KK.. SSiinhanha && PPrriititi SSiinhanha LLeeararnniinngg ObObjjeeccttiivveses In this chapter you will learn about: § Boolean algebra § Fundamental concepts and basic laws of Boolean algebra § Boolean function and minimization § Logic gates § Logic circuits and Boolean expressions § Combinational circuits and design Ref. Page 60 Chapter 6: Boolean Algebra and Logic Circuits Slide 2/78 CCoommppuutterer FFununddaammenenttaallss:: PPrradadeeepep KK.. SSiinhanha && PPrriititi SSiinhanha BBooooleleaann AAllggeebrabra § An algebra that deals with binary number system § George Boole (1815-1864), an English mathematician, developed it for: § Simplifying representation § Manipulation of propositional logic § In 1938, Claude E. Shannon proposed using Boolean algebra in design of relay switching circuits § Provides economical and straightforward approach § Used extensively in designing electronic circuits used in computers Ref. Page 60 Chapter 6: Boolean Algebra and Logic Circuits Slide 3/78 CCoommppuutterer FFununddaammenenttaallss:: PPrradadeeepep KK.. SSiinhanha && PPrriititi SSiinhanha FundamFundameennttalal CCoonncceeppttss ooffBBoooolleeaann AAlglgeebbrara § Use of Binary Digit § Boolean equations can have either of two possible values, 0 and 1 § Logical Addition § Symbol ‘+’, also known as ‘OR’operator, used for logical
    [Show full text]
  • 'Chapter ~ Irltr&I'uctf Yoll'to'the Use of Boblean Cilgebra"And
    / . '. " . .... -: ... '; , " . ! :. " This chapter explores Boolean Algebra and the logic gateS used 3.0 INTRODUCTION to implement Boolean equations. Boolean Algebra is an area of mathematiciinvolVing ' opetations' ontwo-state «true-false) variAbles. "'thls 'type' df 'algebra .' was first formulated by the Eng~h Mathefnafidah 'GeorgeBoolein 1854. ' Boolean" Algebra is based· on the assUII\ptionthat any proposition can be proven with correct answers' to a specific ntlmber Of ·, tnie-false "" qu~t16ns . " Further~ Boolean algebra " provides a means ;whereby true-faIselogic can be 'handled in the form' ofAlgJbralC"eQuationS With the' qUeStioriSas independent variables and the conciu51on Yexpressed as a ' dependent variable (recall that in'" the' equationl" y ' :; A+Bthat A and B are independent vimables and 'Y ' is ' a dependent' variable). This 'chapter ~ irltr&i'uctf YOll 'to'the use of Boblean Cilgebra "and the use of electroruc logic gateS (citcuits) to implement Boolean . ~ ~ equations. ' 21 ., Upon completion of this chapter you should be able to: :' ~~i ' ,- .:. ~. ; ~' : ,;i . >. ~~; . ~~).~( . .'} '.. • Explain the basic operations of Boolean Algebra. , " . : ;:/~ ' .' . ' ,l . •1 . · !• .·i I' f ' ,;,:~ ~ ; •...wr\~~ ~lean~ua.tiol\$~ , " 4' , '. ~ ,' . .~- ',~ : , • .. , .. ~ ' ~ ' . f<-:-; '. ' ~ , ,' ~ 'use logic cirCuits t() implement Boolean equations. _ .;( " '.i;~ ..... ( , -. ~ 'f~>. 3.2DISCtJSSIO.N ',.Boolean algebra is the :. lmn~of mathematics which studies operations ontW~tate variables. For the purposes of this book, an algebra is a system of mathematics where the operations of addition and multiplication can be performed with the results of the operation remaining within the system. In Boolean algebra, addition and multiplication' are the only binary (two-variable) operations which are defined. These two operations also may be performed on more than two independent variables.
    [Show full text]
  • Context-Aware Middleware: an Overview Daniel Romero
    Context-Aware Middleware: An overview Daniel Romero To cite this version: Daniel Romero. Context-Aware Middleware: An overview. Paradigma, Le Lettere, 2008, 2 (3), pp.1- 11. inria-00481818 HAL Id: inria-00481818 https://hal.inria.fr/inria-00481818 Submitted on 7 May 2010 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. Context-Aware Middleware: An overview Daniel Romero University of Lille 1, INRIA Lille, Nord Europe, Laboratoire LIFL UMR CNRS 8022 Parc Scientifique de la Haute-Borne 40, Avenue Halley 59650 Villeneuve D’Ascq- France [email protected] Abstract. In this paper we give an overview of context-aware middleware plat- forms. They are characterized in terms of properties such as communication, con- text management and adaptation. We present a description of different platforms and their properties. key words: context-awareness, middleware platform, pervasive computing. 1 Introduction Today is normal to find different computational entities that are part of environments where people develop their daily activities such as home, office and malls. These entities provide services that can help users in their activities. The entities are also characterized by their heterogeneity. This means that they use different communication mechanisms, connection technologies and data representations, and that they provide information with different processing levels.
    [Show full text]
  • Foundations of Computation, Version 2.3.2 (Summer 2011)
    Foundations of Computation Second Edition (Version 2.3.2, Summer 2011) Carol Critchlow and David Eck Department of Mathematics and Computer Science Hobart and William Smith Colleges Geneva, New York 14456 ii c 2011, Carol Critchlow and David Eck. Foundations of Computation is a textbook for a one semester introductory course in theoretical computer science. It includes topics from discrete mathematics, automata the- ory, formal language theory, and the theory of computation, along with practical applications to computer science. It has no prerequisites other than a general familiarity with com- puter programming. Version 2.3, Summer 2010, was a minor update from Version 2.2, which was published in Fall 2006. Version 2.3.1 is an even smaller update of Version 2.3. Ver- sion 2.3.2 is identical to Version 2.3.1 except for a change in the license under which the book is released. This book can be redistributed in unmodified form, or in mod- ified form with proper attribution and under the same license as the original, for non-commercial uses only, as specified by the Creative Commons Attribution-Noncommercial-ShareAlike 4.0 Li- cense. (See http://creativecommons.org/licenses/by-nc-sa/4.0/) This textbook is available for on-line use and for free download in PDF form at http://math.hws.edu/FoundationsOfComputation/ and it can be purchased in print form for the cost of reproduction plus shipping at http://www.lulu.com Contents Table of Contents iii 1 Logic and Proof 1 1.1 Propositional Logic ....................... 2 1.2 Boolean Algebra .......................
    [Show full text]
  • Laws of Boolean Algebra and Boolean Algebra Rules
    4/10/2020 Laws of Boolean Algebra and Boolean Algebra Rules Home / Boolean Algebra / Laws of Boolean Algebra Laws of Boolean Algebra Boolean Algebra uses a set of Laws and Rules to define the operation of a digital logic circuit As well as the logic symbols “0” and “1” being used to represent a digital input or output, we can also use them as constants for a permanently “Open” or “Closed” circuit or contact respectively. A set of rules or Laws of Boolean Algebra expressions have been invented to help reduce the number of logic gates needed to perform a particular logic operation resulting in a list of functions or theorems known commonly as the Laws of Boolean Algebra. Boolean Algebra is the mathematics we use to analyse digital gates and circuits. We can use these “Laws of Boolean” to both reduce and simplify a complex Boolean expression in an attempt to reduce the number of logic gates required. Boolean Algebra is therefore a system of mathematics based on logic that has its own set of rules or laws which are used to define and reduce Boolean expressions. The variables used in Boolean Algebra only have one of two possible values, a logic “0” and a logic “1” but an expression can have an infinite number of variables all labelled individually to represent inputs to the expression, For example, variables A, B, C etc, giving us a logical expression of A + B = C, but each variable can ONLY be a 0 or a 1. Examples of these individual laws of Boolean, rules and theorems for Boolean Algebra are given in the following table.
    [Show full text]
  • Renesas General-Purpose Microcontrollers/Microprocessors Lineup Catalog
    Renesas General-Purpose Microcontrollers/Microprocessors Lineup Catalog Notes: Renesas General-Purpose Microcontrollers/Microprocessors 1. Descriptions of circuits, software and other related information in this document are provided only to illustrate the operation of semiconductor products and application examples. You are fully responsible for the incorporation of these circuits, software, and information in the design of your equipment. Renesas Electronics assumes no responsibility for any losses incurred by you or third parties arising from the use of these circuits, software, or information. 2. Renesas Electronics has used reasonable care in preparing the information included in this document, but Renesas Electronics does not warrant that such information is error free. Renesas Electronics assumes no liability whatsoever for any damages incurred by you resulting from errors in or omissions from the information included herein. 3. Renesas Electronics does not assume any liability for infringement of patents, copyrights, or other intellectual property rights of third parties by or arising from the use of Renesas Electronics products or technical information described in this document. No license, express, implied or otherwise, is granted hereby under any patents, copyrights or other intellectual property rights of Renesas Electronics or Lineup Catalog others. 4. You should not alter, modify, copy, or otherwise misappropriate any Renesas Electronics product, whether in whole or in part. Renesas Electronics assumes no responsibility for any losses incurred by you or third parties arising from such alteration, modification, copy or otherwise misappropriation of Renesas Electronics product. 5. Renesas Electronics products are classified according to the following two quality grades: "Standard" and "High Quality". The recommended applications for each Renesas Electronics product depends on the product's quality grade, as indicated below.
    [Show full text]