Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Definition

...

Binary numbers are numbers A binary number is a number expressed in the binary numeral system (i.e., base-2 numeral system). Computers use binaryThe binary numeral system only uses two symbols, usually 0 and 1.

Introduction

Binary number systems represent numbers using two symbols: 0 or 1. Each symbol is a digit. The term bit is a portmanteau of binary digit. Eight bits is called a byte.

The value of each column is multiplied by powers of 2. 

...

Computers use the binary number system. Each binary number is a bit. Groups of 8 bits are called a byte

Convert binary numbers to decimal numbers

...

Binary numbers can be converted into decimal numbers by multiplying the binary value in each column (0 or 1) by the corresponding decimal value for the column. 

Binary number columDecimal value
Right-most column1
Second column from the right2
Third column from the right4
Fourth
Forth column from the right8
Fifth column from the right16
Sixth column from the right32
Seventh column from the right64

For example, the binary number = 1011 1001 can be represented by the decimal number 185.

Binary value10111001
Decimal value1286432168421

(1 x 128) + (0 x 64) + (1 x 32) + (1 x 16

...

Convert binary numbers to decimal numbers

sdfs) + (1 x 8) + (0 x 4) + (0 x 2) + (1 x 1) = 185

Another way to convert a binary number into a decimal number is to add together all the decimal numbers that are represented by a 1.

  1. Identify decimal number value for each 1 in the binary number
  2. Add decimal number values together from left to right

(128)+(32)+(16)+(8)+(1) = 185

Related terms

...

Bit

Byte

Decimal number

...

Carrier, Brian. Computer foundations (chapter 2). In File system forensic analysis.  Boston: Pearson Education (2005): 17-4645.