Binary Number Operation
Binary Number Operation
Binary Addition
What is RULE of Binary Addition Operation??
Binary Rule 0+0=0 0+1=1 1+0=1 1+1=0 Sum 0 1 1 0 Carry 0 0 0 1
How to do Binary Addition Step by Step instruction :=? Step 1: First of all, we need to add binary number so we need to change writing form like below:
Step 2: We start our addition from right to left, and add it using (Binary Operation Rule) .Based on table above 1 + 0 = 1 :
Step 3: Continue with second part, 1 + 1 = 0 and carry 1 to next number just like in picture below:
Step 4: At this point we need to add three number 1 (carry from previous step) + 0 + 1. Based in table we know 1 + 0 = 1 and 1 + 1 = 0 with carry of 1.
We know that
Binary Subtraction
What is RULE of Binary Subtraction Operation??
Binary Rule 0-0=0 0-1=1 1-0=1 1-1=0 Sum 0 1 1 0 Borrow 0 10 0 0
How to do Binary Subtraction Step by Step instruction :=? Step 1: The first step same as addition operation change writing form like below:
Step 2: We start our subtraction from right to left, and minus it using (Binary Operation Rule) .Based on table above 0 - 0 = 0 :
Step 3: Continue with second part, 0 - 1 = 1 (based on table above) and borrow 1 from next number just like in picture below:
We know that
Binary Multiplication
How to do Binary Multiplication Step by Step instruction :=? Step 1: The first step same as both operation above, change writing form like below:
Step 4: Same as step 2 and 3, we need to 1010 x 1 (in second line where 1 in left side) .As show in below picture.
Step 5: Finally we need to add all of 3 line answer we get from multiply 1010 x 111 using Addition Operation Rule.
We know that
Binary Division
What is RULE of Binary Division Operation??
Binary Rule 0 0=0 0 1=0 1 0=0 1 1=1 Divide 0 0 0 1
How to do Binary Division Step by Step instruction :=? Step 1: The first step same as other operation above, change writing form like below:
Step 3: Base on picture below, 1 (from right) in 1010 bring down and minus by 0 since 1 cant divide by 10, and is continue by Bring down 0.
We know that