0% found this document useful (0 votes)
33 views

Input: A 0 0 1 1 Meaning B 0 1 0 1

The document defines various Boolean logic gates and their truth tables including: 1) AND returns 1 only if both inputs are 1, OR returns 1 if either or both inputs are 1, NOT inverts the input. 2) NAND returns 0 if both inputs are 1, otherwise 1. NOR returns 0 if either or both inputs are 1, otherwise 1. 3) XOR (exclusive or) returns 1 if only one input is 1, otherwise 0. XNOR (exclusive nor) returns 1 only if both inputs are the same.

Uploaded by

Thaanesh Manivel
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
33 views

Input: A 0 0 1 1 Meaning B 0 1 0 1

The document defines various Boolean logic gates and their truth tables including: 1) AND returns 1 only if both inputs are 1, OR returns 1 if either or both inputs are 1, NOT inverts the input. 2) NAND returns 0 if both inputs are 1, otherwise 1. NOR returns 0 if either or both inputs are 1, otherwise 1. 3) XOR (exclusive or) returns 1 if only one input is 1, otherwise 0. XNOR (exclusive nor) returns 1 only if both inputs are the same.

Uploaded by

Thaanesh Manivel
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

A 0 0 1 1

INPUT Meaning

B 0 1 0 1

OUTPU FALSE 0 0 0 0 Whatever A and B, the output is false. Contradiction.


T

A AND B 0 0 0 1 Output is true if and only if (iff) both A and B are true.

A   B 0 0 1 0 A doesn't imply B. True iff A but not B.

A 0 0 1 1 True whenever A is true.

A   B 0 1 0 0 A is not implied by B. True iff not A but B.

B 0 1 0 1 True whenever B is true.

A XOR B 0 1 1 0 True iff A is not equal to B.

A OR B 0 1 1 1 True iff A is true, or B is true, or both.

A NOR B 1 0 0 0 True iff neither A nor B.

A XNOR B 1 0 0 1 True iff A is equal to B.

NOT B 1 0 1 0 True iff B is false.

A   B 1 0 1 1 A is implied by B. False if not A but B, otherwise true.

NOT A 1 1 0 0 True iff A is false.

A   B 1 1 0 1 A implies B. False if A but not B, otherwise true.


A NAND B 1 1 1 0 A and B are not both true.

TRUE 1 1 1 1 Whatever A and B, the output is true. Tautology.

Typ Boolean algebra between A &


Distinctive shape Rectangular shape Truth table
e B

INPUT OUTPUT
A B A AND B
AN 0 0 0
D 0 1 0
1 0 0
1 1 1

INPUT OUTPUT
A B A OR B
0 0 0
OR A + B
0 1 1
1 0 1
1 1 1

INPUT OUTPUT
A NOT A
NOT
0 1
1 0
INPUT OUTPUT
A B A NAND B
0 0 1
ND
0 1 1
1 0 1
1 1 0

INPUT OUTPUT
A B A NOR B
0 0 1
NOR
0 1 0
1 0 0
1 1 0

INPUT OUTPUT
A B A XOR B
0 0 0
XOR
0 1 1
1 0 1
1 1 0

INPUT OUTPUT
A B A XNOR B
XNO 0 0 1
R  or 
0 1 0
1 0 0
1 1 1

You might also like