FileBucks - Make Hot Money
Home » » Primary Ideas Behind the Binary System

Primary Ideas Behind the Binary System

To comprehend binary figures, begin by remembering university mathematical. When we first discovered about figures, we were trained that, in the decimal program, factors are structured into columns:
    H | T | O
    1 | 9 | 3
such that "H" is the thousands line, "T" is the 10's line, and "O" is the ones line. So the variety "193" is 1-hundreds plus 9-tens plus 3-ones.
Years later, we discovered that the ones line intended 10^0, the 10's line intended 10^1, the thousands line 10^2 and so on, such that
      10^2|10^1|10^0
        1 |  9 |  3
the variety 193 is really {(1*10^2)+(9*10^1)+(3*10^0)}.


As you know, the decimal program uses the numbers 0-9 to signify figures. If we desired to put a bigger variety in line 10^n (e.g., 10), we would have to increase 10*10^n, which will provide 10^(n+1), and be taken a line to the staying. For example, putting ten in the 10^0 line is challenging, so we put a 1 in the 10^1 line, and a 0 in the 10^0 line, thus using two content. 12 would be 12*10^0, or 10^0(10+2), or 10^1+2*10^0, which also uses an additional line to the staying (12).
The binary program performs under the identical concepts as the decimal program, only it functions in platform 2 rather than platform 10. In other terms, instead of content being

       10^2|10^1|10^0
they are
        2^2|2^1|2^0


Instead of using the numbers 0-9, we only use 0-1 (again, if we used anything bigger it would be like growing 2*2^n and getting 2^n+1, which would not fit in the 2^n line. Therefore, it would move you one line to the staying. For example, "3" in binary cannot be put into one line. The first line we complete is the right-most line, which is 2^0, or 1. Since 3>1, we need to use an additional line to the staying, and indicate it as "11" in binary (1*2^1) + (1*2^0).
Examples: What would the binary variety 1011 be in decimal notation?

Try transforming these figures from binary to decimal:
•    10
•    111
•    10101
•    11110
Remember:
      2^4| 2^3| 2^2| 2^1| 2^0
         |    |    |  1  |  0
         |    | 1  |  1  |  1
      1  | 0  | 1  |  0  |  1
      1  | 1  | 1  |  1  |  0

Return to Desk of Material
Binary Addition
Consider the inclusion of decimal numbers:
     23
    +48
    ___
We begin by including 3+8=11. Since 11 is greater than 10, a one is put into the 10's line (carried), and a 1 is documented in the one's line of the sum. Next, add {(2+4) +1} (the one is from the carry)=7, which is put in the 10's line of the sum. Thus, the response is 71.
Binary inclusion performs on the same concept, but the numbers are different. Begin with one-bit binary addition:
    0    0    1
   +0   +1   +0
  ___  ___  ___ 
    0    1    1
1+1 provides us into the next line. In decimal type, 1+1=2. In binary, any number greater than 1 places us a line to the staying (as would 10 in decimal notation). The decimal variety "2" is published in binary observe as "10" (1*2^1)+(0*2^0). History the 0 in the ones line, and bring the 1 to the couples line to get an response of "10." In our straight observe,
    1
   +1
  ___
   10
The procedure is the same for multiple-bit binary numbers:
         1010
        +1111
       ______
•    Step one:
Column 2^0: 0+1=1.
Record the 1.
Temporary Result: 1; Carry: 0
•    Step two:
Column 2^1: 1+1=10.
Record the 0, bring the 1.
Temporary Result: 01; Carry: 1
•    Step three:
Column 2^2: 1+0=1 Add 1 from carry: 1+1=10.
Record the 0, bring the 1.
Temporary Result: 001; Carry: 1
•    Step four:
Column 2^3: 1+1=10. Add 1 from carry: 10+1=11.
Record the 11.
Final result: 11001
Alternately:
    11   (carry)
    1010
   +1111
  ______
   11001
Always keep in mind
•    0+0=0
•    1+0=1
•    1+1=10
Try a few illustrations of binary addition:
       111      101      111
      +110     +111     +111
    ______    _____    _____

Return to Desk of Contents
Binary Multiplication
Multiplication in the binary program performs the same way as in the decimal system:
•    1*1=1
•    1*0=0
•    0*1=0
   101                     
  * 11
  ____
   101
  1010
 _____
  1111
Note that growing by two is incredibly simple. To increase by two, just add a 0 on the end.
Return to Desk of Material
Binary Division
Follow the same guidelines as in decimal department. For the benefit of convenience, toss away the rest.
For Example: 111011/11

      10011 r 10
    _______
  11)111011
    -11
     ______
       101
       -11
     ______
        101
         11
     ______
         10
Return to Desk of Contents
Decimal to Binary
Converting from decimal to binary observe is a little bit more challenging conceptually, but can quickly be done once you know how through the use of methods. Begin with considering a few illustrations. You can see that the variety 3= 2+1. and that this is comparative to (1*2^1)+(1*2^0). This results in putting a "1" in the 2^1 line and a "1" in the 2^0 line, to get "11". Almost as user-friendly is the variety 5: it is obviously 4+1, which is the same as saying [(2*2) +1], or 2^2+1. This can also be published as [(1*2^2)+(1*2^0)]. Looking at this in content,
        2^2 | 2^1 | 2^0
         1     0     1
or 101.
What we're doing here is discovering the biggest energy of two within the variety (2^2=4 is the biggest energy of 2 in 5), subtracting that from the variety (5-4=1), and discovering the biggest energy of 2 in the rest (2^0=1 is the biggest energy of 2 in 1). Then we just put this into content. This procedure carries on until we have a rest of 0. Let's take a look at how it performs. We know that:
   2^0=1
   2^1=2
   2^2=4
   2^3=8
   2^4=16
   2^5=32
   2^6=64
   2^7=128
and so on. To turn the decimal variety 75 to binary, we would look for the biggest energy of 2 less than 75, which is 64. Thus, we would put a 1 in the 2^6 line, and deduct 64 from 75, providing us 11. The biggest energy of 2 in 11 is 8, or 2^3. Put 1 in the 2^3 line, and 0 in 2^4 and 2^5. Subtract 8 from 11 to get 3. Put 1 in the 2^1 line, 0 in 2^2, and deduct 2 from 3. We're staying with 1, which goes in 2^0, and we deduct one to get zero. Thus, our variety is 1001011.
Making this criteria a bit more official gives us:
1.    Let D=number we wish to turn from decimal to binary
2.    Repeat until D=0
o    a. Discover the biggest energy of two in D. Let this comparative P.
o    b. Put a 1 in binary line P.
o    c. Subtract P from D.
3.    Put 0's in all content which don't have ones.
This criteria is a bit uncomfortable. Particularly phase 3, "filling in the 0's." Therefore, we should reword it such that we determine the value of each line independently, putting in 0's and 1's as we go:
1.    Let D= the variety we wish to turn from decimal to binary
2.    Find P, such that 2^P is the biggest energy of two more compact than D.
3.    Repeat until P<0
o    If 2^P<=D then
    put 1 into line P
    subtract 2^P from D
o    Else
    put 0 into line P
o    End if
o    Subtract 1 from P
Now that we have an criteria, we can use it to turn figures from decimal to binary relatively effortlessly. Let's try the variety D=55.
•    Our first phase is to discover P. We know that 2^4=16, 2^5=32, and 2^6=64. Therefore, P=5.
•    2^5<=55, so we put a 1 in the 2^5 column: 1-----.
•    Subtracting 55-32 simply leaves us with 23. Subtracting 1 from P gives us 4.
•    Following phase 3 again, 2^4<=23, so we put a 1 in the 2^4 column: 11----.
•    Next, deduct 16 from 23, to get 7. Subtract 1 from P gives us 3.
•    2^3>7, so we put a 0 in the 2^3 column: 110---
•    Next, deduct 1 from P, which gives us 2.
•    2^2<=7, so we put a 1 in the 2^2 column: 1101--
•    Subtract 4 from 7 to get 3. Subtract 1 from P to get 1.
•    2^1<=3, so we put a 1 in the 2^1 column: 11011-
•    Subtract 2 from 3 to get 1. Subtract 1 from P to get 0.
•    2^0<=1, so we put a 1 in the 2^0 column: 110111
•    Subtract 1 from 1 to get 0. Subtract 1 from P to get -1.
•    P is now less than zero, so we quit.
Another criteria for transforming decimal to binary
However, this is not the only strategy possible. We can begin at the right, rather than the staying.
All binary figures are in the type
a[n]*2^n + a[n-1]*2^(n-1)+...+a[1]*2^1 + a[0]*2^0
where each a[i] is either a 1 or a 0 (the only possible numbers for the binary system). The only way a variety can be odd is if it has a 1 in the 2^0 line, because all abilities of two greater than 0 are even figures (2, 4, 8, 16...). This gives us the rightmost number as a position to begin.
Now we need to do the staying numbers. One concept is to "shift" them. It is also simple to see that growing and splitting by 2 changes everything by one column: two in binary is 10, or (1*2^1). Dividing (1*2^1) by 2 gives us (1*2^0), or just a 1 in binary. In the same way, growing by 2 changes in the other direction: (1*2^1)*2=(1*2^2) or 10 in binary. Therefore
{a[n]*2^n + a[n-1]*2^(n-1) + ... + a[1]*2^1 + a[0]*2^0}/2
is similar to
a[n]*2^(n-1) + a[n-1]*2^(n-2) + ... + a[1]2^0
Let's look at how this can help us turn from decimal to binary. Take the variety 163. We know that since it is odd, there must be a 1 in the 2^0 line (a[0]=1). We also know that it is equal to 162+1. If we put the 1 in the 2^0 line, we have 162 staying, and have to choose how to convert the staying numbers.
Two's column: Dividing 162 by 2 gives 81. The variety 81 in binary would also have a 1 in the 2^0 line. Since we separated the variety by two, we "took out" one energy of two. In the same way, the declaration a[n-1]*2^(n-1) + a[n-2]*2^(n-2) + ... + a[1]*2^0 has a energy of two eliminated. Our "new" 2^0 line now contains a1. We discovered previously that there is a 1 in the 2^0 line if the variety is odd. Since 81 is odd, a[1]=1. Essentially, we can basically keep a "running total", which now appears at 11 (a[1]=1 and a[0]=1). Also observe that a1 is basically "remultiplied" by two just by putting it at the front side of a[0], so it is instantly fit into the appropriate line.
Four's column: Now we can deduct 1 from 81 to see what rest we still must position (80). Dividing 80 by 2 gives 40. Therefore, there must be a 0 in the 4's line, (because what we are actually putting is a 2^0 line, and the variety is not odd).
Eight's column: We can split by two again to get 20. This is even, so we put a 0 in the 8's line. Our operating complete now appears at a[3]=0, a[2]=0, a[1]=1, and a[0]=1.
We can proceed in this way until there is no rest to position.
  Let's formalize this algorithm:
1.  Let D= the variety we wish to turn from decimal to binary.
2.  Do it again until D=0:
    a) If D is odd, put "1" in the leftmost begin line, and deduct 1 from D.
    b) If D is even, put "0" in the leftmost begin line.
    c) Divide D by 2.
    End Repeat
For the variety 163, this performs as follows:
1.  Let D=163
2.  b) D is odd, put a 1 in the 2^0 line.
  Subtract 1 from D to get 162.
    c) Divide D=162 by 2.
Temporary Result: 01     New D=81
D does not comparative 0, so we repeat phase 2.

2.  b) D is odd, put a 1 in the 2^1 line.
  Subtract 1 from D to get 80.
     c) Divide D=80 by 2.
Temporary Result: 11     New D=40
D does not comparative 0, so we repeat phase 2.

2.  b) D is even, put a 0 in the 2^2 line.
    c) Divide D by 2.
Temporary Result:011    New D=20

2.  b) D is even, put a 0 in the 2^3 line.
    c) Divide D by 2.
Temporary Result: 0011     New D=10

2.  b) D is even, put a 0 in the 2^4 line.
    c) Divide D by 2.
Temporary Result:  00011      New D=5

2.  a) D is odd, put a 1 in the 2^5 line.
       Subtract 1 from D to get 4.
    c) Divide D by 2.
Temporary Result:  100011   New D=2

2.  b) D is even, put a 0 in the 2^6 line.
    c) Divide D by 2.
Temporary Result:  0100011   New D=1

2.  a) D is odd, put a 1 in the 27 line.
       Subtract 1 from D to get D=0.
    c) Divide D by 2.
Temporary Result:  10100011   New D=0

D=0, so we are done, and the decimal variety 163 is comparative to the binary variety 10100011.
Since we already realized how to turn from binary to decimal, we can quickly confirm our outcome. 10100011=(1*2^0)+(1*2^1)+(1*2^5)+(1*2^7)=1+2+32+128= 163.
Return to Desk of Material
Negation in the Binary System
•    Signed Scale
•    One's Supplement
•    Two's Supplement
•    Excess 2^(m-1)
These methods perform well for non-negative integers, but how do we indicate adverse figures in the binary system?
Before we examine adverse figures, we observe that the pc uses a set variety of "bits" or binary numbers. An 8-bit variety is 8 numbers lengthy. For this area, we will keep perform with 8 pieces.
Signed Magnitude:
The easiest way to indicate negation is finalized magnitude. In finalized magnitude, the left-most bit is not actually aspect of the variety, but is just the comparative of a +/- indication. "0" indicates that the variety is beneficial, "1" indicates adverse. In 8 pieces, 00001100 would be 12 (break this down into (1*2^3) + (1*2^2) ). To indicate -12, we would basically put a "1" rather than a "0" as the first bit: 10001100.
One's Complement:
In one's complement, beneficial figures are showed as regular in frequent binary. However, adverse figures are showed in a different way. To eliminate a variety, substitute all 0's with ones, and ones with 0's - turn the pieces. Thus, 12 would be 00001100, and -12 would be 11110011. As in finalized magnitude, the leftmost bit indicates the indication (1 is adverse, 0 is positive). To estimate the value of a damaging variety, turn the pieces and convert as before.
Two's Complement:
Begin with the variety in one's complement. Add 1 if the variety is adverse. 12 would be showed as 00001100, and -12 as 11110100. To confirm this, let's deduct 1 from 11110100, to get 11110011. If we turn the pieces, we get 00001100, or 12 in decimal.
In this observe, "m" indicates the count of pieces. For us (working with 8 bits), it would be unwanted 2^7. To signify a variety (positive or negative) in unwanted 2^7, begin by getting the variety in frequent binary reflection. Then add 2^7 (=128) to that variety. For example, 7 would be 128 + 7=135, or 2^7+2^2+2^1+2^0, and, in binary,10000111. We would signify -7 as 128-7=121, and, in binary, 01111001.
Note:
•    Unless you know which reflection has been used, you cannot determine the value of a variety.
•    A variety in unwanted 2^(m-1) is the same as that variety in two's complement with the leftmost bit turned.
To see the pros and cons of each technique, let's try dealing with them.
Using the frequent criteria for binary adition, add (5+12), (-5+12), (-12+-5), and (12+-12) in each program. Then turn returning to decimal figures.

What would the binary variety 1011 be in decimal notation?
  1011=(1*2^3)+(0*2^2)+(1*2^1)+(1*2^0)
      = (1*8) + (0*4) + (1*2) + (1*1)
  = 11 (in decimal notation)
Go returning to the query
Try transforming these figures from binary to decimal:
10=(1*2^1) + (0*2^0) = 2+0 = 2
111 = (1*2^2) + (1*2^1) + (1*2^0) = 4+2+1=7
10101= (1*2^4) + (0*2^3) + (1*2^2) + (0*2^1) + (1*2^0)=16+0+4+0+1=21
11110= (1*2^4) + (1*2^3) + (1*2^2) + (1*2^1) + (0*2^0)=16+8+4+2+0=30
Go returning to the query
Try a few illustrations of binary addition:
                      1                1
          111            111            111
         +110                  +110           +110
        ______               ______         _____
               1                      01          1101

           1                        11             1  
  101            101    101
        +111                  +111            +111
        _____                 ____           _____
              0                     00            1100

              1                    1                      1
     111    111          111
           +111                +111                 +111
          _____               _____                _____
         0                    10                 1110

Using the frequent criteria for binary adition, add (5+12), (-5+12), (-12+-5), and (12+-12) in each program. Then turn returning to decimal figures.
Signed Magnitude:

    5+12         -5+12         -12+-5            12+-12

 00000101       10000101       10001100        00001100
 00001100       00001100       10000101        10001100
__________      ________       ________        _________
 00010001       10010001       00010000        10011000

    17             -17            16              -24

One' Complement:

 00000101       11111010       11110011        00001100
 00001100       00001100       11111010        11110011
_________       ________       ________        ________
 00010001       00000110       11101101        11111111

    17             6              -18             0

Two's Complement:

 00000101       11111011       11110100        00001100
 00001100       00001100       11111011        11110100
 ________       ________       ________        ________
 00010001       00000111       11101111        00000000

     17            7              -17               0

Signed Magnitude:

 10000101       01111011       01110100        00001100
 10001100       10001100       01111011        01110100
 ________       ________       ________        ________
 00010001       00000111       11101111        01111100

    109           119             111             124  


0 comments:

Post a Comment

http://www.minijobz.com/
http://www.minijobz.com/

Blog Archive

FireCash - Make Hot Money