Boolean Logic An Introduction to Programming Using Alice
Boolean Logic An Introduction to Programming Using Alice
George Boole In 1854, George Boole published “An investigation into the Laws of Thought, on which are founded the Mathematical Theories of Logic and Probabilities. ” Boole outlined a system of logic and a corresponding algebraic language dealing with true and false values. 100 th Anniverary Edition An Introduction to Programming Using Alice
Boolean Logic Boolean logic is a form of mathematics in which the only values used are true and false. Boolean logic is the basis of all modern computing. There are three basic operations in Boolean logic – AND, OR, and NOT. 100 th Anniverary Edition An Introduction to Programming Using Alice
The AND Operation The AND operation is a binary operation, meaning that it needs two operands. c = a AND b Both a and b must be true for the result to be true. AND b a T F T T F F 100 th Anniverary Edition An Introduction to Programming Using Alice
The OR Operation The OR operation is also a binary operation with two operands. c = a OR b If either a OR b is true, then the result is true. OR B a T F T T T F 100 th Anniverary Edition An Introduction to Programming Using Alice
The NOT Operation The NOT operation is a unary operation with only one operand. c = NOT (a) It simply reverses the true or false value of the operand. NOT a T F F T 100 th Anniverary Edition An Introduction to Programming Using Alice
- Slides: 6