answersLogoWhite

0


Best Answer

Boolean algebra doesn't exactly work with numbers. It defines operations on a set that contains only two elements, commonly called "true" and "false", or alternately "1" and "0".

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Boolean algebra uses which number system?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the uses of Boolean algebra?

One use of Boolean algebra is to minimize any function or logic gate.


What numbers are used in Boolean algebra?

Boolean algebra uses the numbers 0 and 1 to represent statements which are False and True respectively.


Why do you think that the word algebra is in the phrase Boolean Algebra?

Although it is more logical and closer to science than maths, boolean algebra can be used with normal algebra on planes, and it uses variables.


Uses of Boolean Algebra?

Boolean Algebra is a type of math in which the values of the variables are true and false. The algebra is the basis for digital logic, computer programming and mathematical logic.


What has the author G F South written?

G. F. South has written: 'Boolean algebra and its uses' -- subject(s): Boolean Algebra, Switching theory


Boolean algebra deals with what?

Boolean algebra deals with logic and truth as it pertains to sets and possibilities. It uses the and, or and not operators to set up truth tables to define if a statement is true or not.


What is the difference between elementary algebra and Boolean algebra?

Here are the basic differences:elementary algebra:- Domain is the real numbers- Uses the operations of addition, subtraction, and multiplication- Uses the laws of associativity, commutativity, and distributivityBoolean algebra:- Domain is only two numbers- Uses the operations of conjunction, disjunction, and negation (AND, OR, NOT)- Uses the laws of associativity, commutativity, distributivity, absorption, and complements


Which form of logic did George Boole introduce in the 19th century?

George Boole saw logic as a discipline of mathematics, not as a philosophy. He authored The Laws of Thought and is the inventor of Boolean Logic. Boolean logic was later used in the development of the structure for computer science and how the digital computer came to be formed. Boolean Logic is different from Algebra because it uses true and false variables as opposed to number variables.


What are the laws and rules of Boolean algebra?

boolean algebra is a type of algebra which only uses two numbers 0 and 1 (true and false) it only has two operations "and":* and "or":+ a+b=1 if a=1 or b=1 a+b=0 if a=0 and b=0 a*b=0 if a=0 or b=0 a*b=1 if a=1 and b=1 also a line above a variable means "not". (not)a=1 if a=0 (not)a=0 if a=1 one of the great things about boolean algebra is that almost any equation can be solved by testing since each variable can only take one of the two values. Read more:


Is there a form of algebra that begins with b?

"Boolean Algebra" is a branch of mathematics that, instead of whole numbers or real numbers, uses a set with only two elements, usually called "true" and "false" (or "one" and "zero"). It has important applications in logic, computer programming, and circuit designs.


What is boolean alegbra?

boolean algebra is a type of algebra which only uses two numbers 0 and 1 (true and false) it only has two operations "and":* and "or":+ a+b=1 if a=1 or b=1 a+b=0 if a=0 and b=0 a*b=0 if a=0 or b=0 a*b=1 if a=1 and b=1 also a line above a variable means "not". (not)a=1 if a=0 (not)a=0 if a=1 one of the great things about boolean algebra is that almost any equation can be solved by testing since each variable can only take one of the two values.


What is a Boolean condition?

A boolean is a value which can either be true or false. A boolean condition is mathematical equation where the result is a boolean (either true or false). Often used in programming.A boolean condition consists of some varibles, and boolean operations that can be carried out using them. Here are some boolean operations. The sybols are those used in Java and C++.> Greater Than. Returns true when the number before > is greater than the number after< Less Than. The opposite of Greater than== Equals. If the values are equal returns trueOR Returns true if the boolean before and/or the boolean after is true&& AND Returns true only if the boolean before AND after the && are true! NOT Inverts/NOT's a boolean. True becomes false. False becomes trueMost programming languages have booleans as a type of variable and if statements as control flow.An if statement uses a boolean to decide whether or not something is run eg.if(someBoolean){// If some boolean is true this peice of code will be run}A an example of a boolean condition could use a less than or greater than symbolif( someNumber > 9000 ) {print( "The number... it's.... OVER 9000!!" );}