If you're seeing this message, it means we're having trouble loading external resources on our website.

If you're behind a web filter, please make sure that the domains *.kastatic.org and *.kasandbox.org are unblocked.

Main content

Binary numbers

📺 Would you prefer to learn about binary numbers from video lessons? Just skip this article and continue to the videos instead.
As humans, we typically represent numbers in the decimal system. Counting to ten is as simple as 1, 2, 3, 4, 5, 6, 7, 8, 9, 10.
As we just learned, computers represent all information in bits. In order to represent numbers with just 0s and 1s, computers use the binary number system. Here's what it looks like when a computer counts to ten: 0001, 0010, 0011, 0100, 0101, 0110, 0111, 1000, 1001, 1010.

Refresher: Decimal numbers

Before exploring how the binary system works, let's revisit our old friend, the decimal system. When you learned how to count, you might have learned that the right-most digit is the "ones' place", the next is the "tens' place", the next is the "hundreds' place", etc.
Another way to say that is that the digit in the right-most position is multiplied by 1, the digit one place to its left is multiplied by 10, and the digit two places to its left is multiplied by 100.
Let's visualize the number 234:
234
hundreds' placetens' placeones' place
100101
When we multiply each digit by its place, we can see that 234 is equal to (2×100)+(3×10)+(4×1).
We can also think of those places in terms of the powers of ten. The ones' place represents multiplying by 100, the tens' place represents multiplying by 101, and the hundreds' place represents multiplying by 102. Each place we add, we're multiplying the digit in that place by the next power of 10.
234
hundreds' placetens' placeones' place
100101
102101100

Binary numbers

The binary system works the same way as decimal. The only difference is that instead of multiplying the digit by a power of 10, we multiply it by a power of 2.
Let's look at the decimal number 1, represented in binary as 0001:
0001
8421
23222120
That's the same as (0×8)+(0×4)+(0×2)+(1×1), or 0+0+0+1.
Okay, perhaps you could have guessed that one — now for a bigger number!
The decimal number 10 is represented in binary as 1010:
1010
8421
23222120
That's the same as (1×8)+(0×4)+(1×2)+(0×1), or 8+0+2+0. Indeed, binary 1010 equals the decimal 10.
Now you try it: How would you represent the decimal number 6 in binary?
Choose 1 answer:

If you managed to figure that out, congratulations! If not, that's totally expected: there are techniques that will help you convert between the number systems, and it's much easier when you learn those techniques.

Converting decimal to binary

Here's my favorite way to convert decimal numbers to binary:
  1. Grab a piece of paper or a whiteboard.
  2. Draw dashes for each of the bits. If the number is less than 16, draw 4 dashes. Otherwise, for numbers up to 255, draw 8 dashes. Bigger numbers than that require more bits and take a while to do by hand, so let's focus on the smaller numbers.
  3. Write the powers of 2 under each dash. Start under the right-most dash, writing 1, then keep multiplying by 2.
  4. Now start at the left-most dash and ask yourself "Is the number greater than or equal to this place value?" If you answer yes, then write a 1 in that dash and subtract that amount from the number. If you answer no, then write a 0 and move to the next dash.
  5. Keep going from left to right, keeping track of how much remainder you still need to represent. When you're done, you'll have converted the number to binary!
Here's what that looks like for the decimal number 6:
"Hmm, 6 is less than 16, so 4 bits is plenty..."
8 4 2 1
"Well, 6 is less than 8, so I'll write a 0 first..."
08 4 2 1
"6 is bigger than 4, so I'll write a 1 next..."
08 14 2 1
"Ok, 6 - 4 = 2, so I still need to represent 2. Let me note that..."
08 14 2 1 (Remainder: 2)
"2 is equal to 2, so I'll write a 1 next..."
08 14 12 1
"2 - 2 = 0, so there's nothing left to represent!"
08 14 12 1 (Remainder: 0)
"I'll fill a 0 in the last bit, since I'm all done now..."
08 14 12 01
In case you're wondering: there's only one way to represent any given number in binary, just like there's only one way to represent any given number in decimal. Any technique that you use for converting a decimal to binary number should yield the same number.
Try another conversion now, using that technique or your own.
How would you represent the decimal number 11 in binary?
Choose 1 answer:

Let's go bigger. How would you represent the decimal number 25 in binary?
Choose 1 answer:

Patterns in binary numbers

In those last two questions, you converted odd numbers. There's something interesting about odd numbers in binary. Here are a few more odd numbers to give you an idea:
DecimalBinary
30011
50101
70111
91001
Do you see the pattern?
Check your understanding
If you think you figured it out, try this question: which of the following very large binary numbers is odd?
Choose 1 answer:

You don't actually need to convert those large numbers to decimal to answer the question—you only need to look at a single bit of information—the very last bit. The last bit is always the ones' place, and if a number is odd, it must have a 1 in that ones' place. There's no way to create an odd number in the binary system without that ones' place, since every other place is a power of 2. Knowing this can give you a better intuitive understanding of binary numbers.
There's another interesting pattern in binary numbers. Take a look at these:
DecimalBinary
311
7111
151111
Each of the decimal numbers are a power of 2, minus 1: 41=3, 81=7, 161=15. When a binary number has a 1 in each of its places, then it will always equal the largest number that can be represented by that number of bits. If you want to add 1 to that number, you need to add another bit. It's like 9, 99, and 999 in the decimal system.
As it turns out, the highest number that can be represented by n bits is the same as 2n1:
Bits (n)Highest number(2n1)
11(211)
23(221)
37(231)
415(241)
What do you think: what does 11111 represent in decimal?
Choose 1 answer:

You could calculate that using our strategy from before fairly quickly. However, there's one more strategy, keeping in mind what we just learned: you could count the number of bits (5), calculate 25 as 2×2×2×2×2=32, and then subtract 1.
All of this is to help you gain a more intuitive understanding of binary. You may not remember all of this, and that's okay. There's lots of practice coming up for you to build your skills.

🙋🏽🙋🏻‍♀️🙋🏿‍♂️Do you have any questions about this topic? We'd love to answer— just ask in the questions area below!

Want to join the conversation?

  • sneak peak yellow style avatar for user William Wang
    I'm still confused with conversions and the process of converting in general. If you have the number "7" I don't understand how you could convert that. Here's my thinking:

    7 is less than 16, so we just need 8421 as the digits.

    8421

    If each value is greater than 7, 1 to convert it.
    If each value is less than 7, have a 0 to convert it.


    Can I just get some help and clarification on this? Thanks in advance for answers!

    Edit: See Tips and Thanks I posted on this page, as well as this link to help you understand:
    https://www.khanacademy.org/math/algebra-home/alg-intro-to-algebra/algebra-alternate-number-bases/v/decimal-to-binary
    (15 votes)
    • hopper jumping style avatar for user pamela ❤
      The key is to start from the left side and go to the right-- and not consider the right digits until we've taken care of the leftmost.

      Put another way:
      Starting from the left, we're trying to "fill up" each digit when possible, and we only go to the next digit when we have leftover value to represent.

      So for 7:
      - We can't put a 1 in the 8 place, because 8 is greater than 7. Therefore, we have to put a 0 and move to the right.
      - We can put a 1 in the 4 place, because 4 is less than 7. So we put a 1 and move to the right. Our number only represents 4 so far, so there's 3 leftover.
      - We can put a 1 in the 2 place, because 2 is less than 3. So we put a 1 and move to the right. Now our number represents 6, so there's 1 leftover.
      - Fortunately, we're now in the 1 place, so we can put a 1 in it. We've now represented the number 7.

      Does that explanation help, or is it still fuzzy?
      (63 votes)
  • leaf grey style avatar for user Quinn Hardbrook
    I understand binary pretty well. However, in the computer programming section, we sometimes use hexadecimals(sixteen base) in coloring. Why would we use hexadecimal input, if binary would work better?
    (4 votes)
    Default Khan Academy avatar avatar for user
  • blobby green style avatar for user ferdusbanu allakova
    I'm still stuck with "How would you represent the decimal number 25 in binary?" so for 32 i put 0 , for 16 i put 1, for 8 is 1, for 4 it is 1, for 2 it is 1, and for one it is 1. Overall , i got 011111, but it is wrong.
    (6 votes)
    Default Khan Academy avatar avatar for user
    • starky ultimate style avatar for user KLaudano
      16+8+4+2+1 = 31 not 25

      25 < 32 so the 6th digit is 0
      25 > 16 so the 5th digit is 1 and 25 - 16 = 9
      9 > 8 so the 4th digit is 1 and 9 - 8 = 1
      1 < 4 so the 3rd digit is 0
      1 < 2 so the 2nd digit is 0
      1 = 1 so the 1st digit is 1 and 1 - 1 = 0

      Altogether, we have 011001
      (9 votes)
  • hopper cool style avatar for user Leif
    The difficulty gap between the previous chapter and this one is astounding.
    (4 votes)
    Default Khan Academy avatar avatar for user
  • duskpin ultimate style avatar for user niallnumbers
    I know know you do base 10 and base 2 but what about base 16
    (4 votes)
    Default Khan Academy avatar avatar for user
  • blobby green style avatar for user Stephen Lau
    You've decided to use binary to communicate "secret" messages to your friend, and you want to tell them to meet you at locker 44.
    What would be the binary representation of the decimal number 44?
    (3 votes)
    Default Khan Academy avatar avatar for user
    • boggle blue style avatar for user vaishnavi.thogati
      good question! since we have 44 as our number, we count our base-2 bits now(2^0 all the way up to 2^5). So 2^5 is 34, which is less than 44 meaning we should keep a 1 in that position. then we have 2^4, which is 16, and 32+16 is greater than 44, so we don't want 16 thus keep a 0 in the 2^4 place. Then we move down to 2^3, which is 8, and we do 32+8, (32 because we already established we would include 32 in our binary rep because its smaller than 44) which would give us 40. Since that's still less than 44, we keep a 1 in the 2^3 place and move further down to 2^2. We then take 2^2, which is 4, and add 40 + 4, which gives us exactly 44! Since we got our answer, we fill the 2^2 place with 1, and fill the rest of the spots (2^1, 2^0) with 0 because we don't need them anymore. Thus, our answer would be 101100. I hope that helped!
      (6 votes)
  • male robot hal style avatar for user Madd Sam
    That's pretty neat. I wonder how that relates to another pattern of odd numbers when you add them:
    1+3 = 4,
    1+3+5 = 9,
    1+3+5+7 = 16, and skipping ahead a bit,
    1+3+5+7+9+11+13 = 49.
    And no matter how far you keep going, you will always land on a perfect square. Plus, if you look closer, you might notice another pattern. The sum of the first three odd numbers = 9 = 3², add the next one to get 4², and so on.
    This is why x² + 2x + 1 always lands on a square. It is a way to add the next odd number to a known square(x * x);
    Forgive me, I just find that very satisfying for some reason.
    (5 votes)
    Default Khan Academy avatar avatar for user
  • blobby blue style avatar for user Prof. Parmigiano Reggiano
    The pattern of the values of the bits appears to look like the Fibonacci sequence, is that right?
    (3 votes)
    Default Khan Academy avatar avatar for user
  • blobby green style avatar for user miczhang22
    Sorry but I don't understand the last question how do you know that 1111 represent 31 in decimal? Someone please explain this to me.
    (3 votes)
    Default Khan Academy avatar avatar for user
  • blobby green style avatar for user Pipi
    I’m confused about how to convert 25 into binary number. I tried to solve it by myself, but unfortunately I got wrong. Here is what I thought: I first drew 8 dashes. Than I started form the very left: From 128 to 32, 25 is always less than these three numbers. At 16, because 25 is greater than 16, so I wrote “1”. 25 subtract 16 equals to 9. 9 is greater than 8, so I wrote “1”. 9 subtract 8 equals to 1. 1 is less than 4, so I wrote “0”. After that I moved to the digit “2”. 25 is greater than 2, so I wrote “1”. 25 subtract 2 equals to 23. 23 is greater than 1, so I wrote “1”. Finally, I got my answer: 25 converted to binary number is 00011011. However, this is incorrect. It should be 00011001. Can someone explain this to me? Many thanks.
    (3 votes)
    Default Khan Academy avatar avatar for user
    • stelly blue style avatar for user tomiwa.
      Hi. You have the method down already I suggest you just pay more attention to how you solve. You were correct until you said 25 is greater than 2 so you wrote 1. While 25 is greater than 2, recall you already had 1 under the 16 and 8 meaning 16+8 = 24
      25 - 24 = 1 1 is less than 2 so where you wrote '1' for 2 you were meant to write '0' then where you had 1 you should have written '1'. It's alright these things happen it's just a matter of paying attention to detail.
      (3 votes)