Binary Number System And Working With Ones And Zeroes

Binary number system - ones and zeroes

The binary number system is an important system in digital electronics. Because in digital electronics we are using only 1’s and 0’s. But what does this mean?

That’s something I was wondering about for a long time. I thought it was something really difficult and abstract. But when I one day asked my dad about it, it really surprised me how easy it was!

It turns out that a “1” is just a wire with voltage and a “0” is a wire without a voltage. It’s that simple!

The reason for this system is to make the electronics easier. A circuit which only needs to check if there is a voltage or not on the wire is really easy. Just have a look at how the transistor works and you’ll get an idea.

In order to make any sense out of the ones and zeroes, we use a binary number system.

Making Sense of 10011101

We call the normal number system the “decimal system”. To distinguish between the decimal system and the binary system, we use a subscript of either 2 or 10.

Example:

 1110_{2} (Binary number)

equals

14_{10} (Decimal number)

How To Convert From The Binary Number System To Decimal?

The binary number system works like this:

  • The value of the last position on the right side is 1.
  • The next position, to the left of this is 2.
  • The next to the left of this is 4.
  • The next to the left of this is 8.
  • And it keeps doubling for each position to the left.

Now to find the decimal value of a binary number, you add all the values that has a “1” in their position.

Value8421
Binary Number1011

So 1011_{2}

is (1 + 2 + 8)_{10} = 11_{10}

Value421
Binary Number101

 101_{2} is (1 + 4)_{10} = 5_{10}

How To Convert Decimal To Binary Numbers

Converting from the decimal system to the binary system is a bit more complicated, but still not too hard.

Let’s say we want to convert 118 to the binary number system.

Divide the number by two and put the remainder on the right. Do this until we get 0:

 \frac{118}{2} = 59 Remainder: 0
\frac{59}{2} = 29 Remainder: 1
 \frac{29}{2} = 14 Remainder: 1
 \frac{14}{2} = 7 Remainder: 0
 \frac{7}{2} = 3 Remainder: 1
\frac{3}{2} = 1 Remainder: 1
 \frac{1}{2} = 0 Remainder: 1

Then we take the remainders and organize into a binary number with the last remainder on the left side.

So
118_{10} = 1110110_{2}

More Info

Wikihow also has a really good article about decimal to binary conversion.

Check out logic gates to see how this is used in a circuit on a very low-level.

Return from Binary Number System to Electronic Schematics

More Digital Electronics Tutorials