The Methods

Date: 2023-02-07

The Division Method

Here we go.

Convert 104 to binary.

\(\begin{aligned} 104 / 2 = 0 \\ 52 / 2 = 0 \\ 26 / 2 = 0 \\ 13 / 2 = 1 \\ 6 / 2 = 0 \\ 3 / 2 = 1 \\ 1 / 2 = 1 \\ 0 / 2 = 0 \\ \text{the final result is }01101000 \end{aligned}\)

Convert 71 to binary.

\[\begin{aligned} 71/2 = 1 \\ 35/2 = 1 \\ 17/2 = 1 \\ 8/2 = 0 \\ 4/2 = 0 \\ 2/2 = 0 \\ 1/2 = 1 \\ 0/2 = 0 \\ \text{the final result is }01000111 \end{aligned}\]

The Addition Method

Convert 89 to binary.

128 64 32 16 8 4 2 1
0 1 0 1 1 0 0 1

Convert 232 to binary.

128 64 32 16 8 4 2 1
1 1 1 0 1 0 0 0

The HexaDeciMals

First you convert into the binary. Then you put it into the chunks of the four. Then each chunk goes according to the table.


home