Key Focus Points:

  1. Understand what it is meat of hexadecimal
  2. Be able to convert a number between number systems (i.e., binary, denary and hexadecimal)

Revision

In the last section, we discussed two different types of number system, in particular:

Denary (Base-10)

Binary (Base-2)

Can you still remember how to convert between these two?

In this section, we will look at another number system called hexadecimal.

Hexadecimal

Introduction

Hexadecimal (base-16) is a number system that uses 16 distinct symbols: the numbers 0-9 and the letters A-F. It serves as a bridge between binary and human-readable formats, making it particularly useful in computing.

We need hexadecimal because:

For example, the binary number 1111 1111 can be written as FF in hexadecimal, making it much more manageable to work with.

Key Points