Fundamental Hardware Elements of Computers: Logic Gates

From Wikibooks, open books for an open world
Jump to navigation Jump to search

PAPER 2 - ⇑ Fundamentals of computer systems ⇑

← Types of program translator Logic gates Boolean gate combinations →


In 1854 a British mathematician, George Boole, developed Boolean Algebra. Instead of an algebra that uses numbers, boolean algebra uses truth values, true(1) and false(0). By defining sentences using truth values and performing operations on these truth values you can work out the overall conclusion of complex statements. Boolean Algebra has had a massive impact on Computer Science and the language that computers understand is a language of 1s and 0s, boolean.

0 0 0 0
1 0 0 1
0 1 0 1
1 1 1 1
0 1
1 0
Examples of Boolean Algebra shown in a truth table

Logic gates are pieces of hardware that perform operations on boolean inputs, allowing us to create complex devices out of abstract boolean algebra. Logic gates are the fundamental building blocks of hardware and processors will be made out of billions of them. A logic gate will typically have one or two inputs, in the examples here defined by A and B, There are six types of gate that you need to know:

NOT[edit | edit source]

A NOT gate takes only one input and gives one output

A NOT gate will always give an output opposite to what the input is e.g. 1 (not gate) 0. A NOT gate takes one boolean input and flips it. It is possible to have a double NOT. This will reverse the original NOT. The symbol would have an extra bar over it.

In Boolean Algebra we write a NOT symbol by placing a bar on top of a letter() or letters ().

Examples of a NOT gate at work are as follows:
  • NOT(It is not raining) = It is raining

To summarise here is a truth table showing the relationship between A and

A
0 1
1 0

AND (.)[edit | edit source]

An AND gate takes two inputs and combines them to form one output

An AND gate will combine the boolean values of two inputs (you can get more than two inputs but we don't need to know about that type of gate here). If and only if both inputs are true will it output true. If any of the inputs are false it will out put false.

In Boolean Algebra we write an AND symbol by placing a bullet point between two () or more () values.

Examples of an AND gate at work are as follows:
  • Six is bigger than four AND Cats are bigger than gerbils = TRUE

An easy way to remember how an AND gate works is thinking about a circuit to turn a light bulb on. If both switches are on then the bulb will light up, if any switch is off then the bulb won't light.

a circuit diagram equivalent to an AND gate

To summarise here is a truth table showing all the different values for two inputs A and B and the result of ANDing those values together

A B A.B
0 0
0
0 1
0
1 0
0
1 1
1

OR (+)[edit | edit source]

An OR gate takes two inputs and combines them to form one output

An OR gate will combine the boolean values of two inputs. If one or more inputs are true then the output will be true. If both the inputs are false then the output will be false.

In Boolean Algebra we write an OR symbol by placing a plus symbol between two () or more () values.

Examples of an OR gate at work are as follows:
  • humans have two legs OR Elephants have 8 legs = TRUE

An easy way to remember how an OR gate works is thinking about a circuit to turn a light bulb on. If one or more switches are on then the bulb will light up, if both switch are off then the bulb won't light.

a circuit diagram equivalent to an OR gate

To summarise here is a truth table showing all the different values for two inputs A and B and the result of ORing those values together

A B A+B
0 0
0
0 1
1
1 0
1
1 1
1

XOR ()[edit | edit source]

A XOR gate takes two inputs and combines them to form one output

An exclusive- OR, XOR, gate will combine the boolean values of two inputs. If exactly one input is true then the output will be true. If both the inputs are false or both the inputs are true then the output will be false.

In Boolean Algebra we write an XOR symbol by placing a plus symbol surrounded by a circle between two () or more () values.

Examples of an XOR gate at work are as follows:
  • it is raining XOR it is not raining = TRUE

To summarise here is a truth table showing all the different values for two inputs A and B and the result of XORing those values together

A B
0 0
0
0 1
1
1 0
1
1 1
0

NAND[edit | edit source]

A NAND gate takes two inputs and combines them to form one output

A NAND gate will combine the boolean values of two inputs, AND them together, and NOT the result. If one or less input is true then the output will be true. If both the inputs are true then the output will be false. To draw a NAND gate you draw an AND gate and add a circle to the front, as you can see above.

In Boolean Algebra we write an NAND symbol by taking an AND equation and NOTing the result ().

Examples of an NAND gate at work are as follows:
  • (A=A) NAND (A<>B) = TRUE

To summarise here is a truth table showing all the different values for two inputs A and B and the result of NANDing those values together

A B
0 0 0
1
0 1 0
1
1 0 0
1
1 1 1
0

NOR[edit | edit source]

A NOR gate takes two inputs and combines them to form one output

A NOR gate will combine the boolean values of two inputs, OR them together, and NOT the result. If no input is true then the output will be true. If either or both inputs are true then the result will be false. To draw a NOR gate you draw an OR gate and add a circle to the front, as you can see above.

In Boolean Algebra we write an NOR symbol by taking an OR equation and NOTing the result ().

Examples of an NOR gate at work are as follows:
  • (A=A) NOR (A<>B) = FALSE
A B
0 0 0
1
0 1 1
0
1 0 1
0
1 1 1
0


Exercise: Logic Gates

Give the symbol and gate diagram for an OR statement

Answer:

+

Give the symbol and gate diagram for an AND statement

Answer:

.

Give the symbol and gate diagram for a XOR statement

Answer:

Give answers to the following equations:

TRUE AND TRUE

Answer:

TRUE

TRUE + FALSE

Answer:

TRUE

TRUE + TRUE

Answer:

TRUE

TRUE TRUE

Answer:

FALSE

NOT(TRUE) . TRUE

Answer:

FALSE

Answer:

TRUE

Draw a NAND gate and truth table

Answer:

A B
0 0 0
1
0 1 0
1
1 0 0
1
1 1 1
0

Complete the following table:

Name NAND NOR AND NOT OR XOR
Gate
Symbol
Truth Table

Answer:

Name NAND NOR AND NOT OR XOR
Gate
Symbol
Truth Table
A B
0 0 0
1
0 1 0
1
1 0 0
1
1 1 1
0
A B
0 0 0
1
0 1 1
0
1 0 1
0
1 1 1
0
A B A.B
0 0
0
0 1
0
1 0
0
1 1
1
A
0 1
1 0
A B A+B
0 0
0
0 1
1
1 0
1
1 1
1
A B
0 0
0
0 1
1
1 0
1
1 1
0