UNIT 2 - ⇑ Fundamental Hardware Elements of Computers ⇑

Logic Gates Boolean gate combinations →


In 1854, British mathematician George Boole developed Boolean algebra. Instead of using 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 substantial impact on computer science, with low-level hardware heavily relying on it. Boolean algebra equations are often expressed using truth tables, which are tables that show every possible output of an equation.

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 small pieces of hardware that perform operations on boolean inputs. They are one of the fundamental building blocks of computers, with computers typically requiring billions of them. A logic gate will usually have only one or two inputs, which will be referred to as A and B in the passages below. There are six main types of logic gates:

NOT edit

 
A NOT gate takes only one input and gives one output

The NOT gate, also known as the disjunction operation, will output the opposite of its input. (i.e. if the input is 1, the NOT gate will output 0; if the input is 0, the NOT gate will output 1)

In Boolean algebra, the NOT operation is expressed by placing a bar on top of a truth value( ) or multiple truth values ( ).

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

To summarize, here is the truth table showing the relationship between A and  .

A  
0 1
1 0

AND (.) edit

 
An AND gate takes two inputs and gives one output.

The AND gate, also known as the conjunction operation, will output true if all of its inputs are true; otherwise, it will output false.

In Boolean algebra, the AND operation is expressed by placing a bullet point between two ( ) or more ( ) truth 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

 
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

 
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

 
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

 
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