Positional numbering system

Decimal system

The decimal system is typically used by humans for representing numbers, it is a **base-10** numbering system.

  • It uses 10 digits.
  • Each position corresponds to .
  • For example, .
Link to original

Binary

Binary is a **base-2** numbering system.

  • It uses two binary digits (bits), typically and .
  • Each position corresponds to .
  • For example, .
  • Byte

    A byte is a series of eight bits.

    Link to original
  • Nibble

    A nibble is a series of four bits.

    Link to original
Link to original

Radix notation

Radix notation is a way we write numbers to distinguish different bases.

  • is a decimal number.
  • is a binary number.
Link to original

Prefix notation

We can also use prefix notation, we indicate the base preceding the number:

  • is a binary number.
  • is a Hexadecimal number.
Link to original