This page assumes you know nothing. Every symbol the parent note topic leans on — b, di, 24, the subscript, the summation sign — is built here from the ground up, in an order where each idea rests on the one before it.
Look at the figure. On the left, seven sheep drawn as seven scratches. On the right, the same seven written as a single symbol 7. The number didn't change — only how compactly we wrote it. Hex and octal are exactly this move applied to binary.
We'll write digits with the letter d. When there are several, we tell them apart with a small number written low and to the right: d0, d1, d2. That low-right number is called a subscript, and it is just a name-tag, not a multiplication.
The figure shows three counting wheels side by side. The binary wheel (b=2) has just two notches — it rolls over almost immediately. The octal wheel has eight notches. The hex wheel has sixteen. The bigger the base, the more counting you do before rolling over, which is exactly why bigger bases pack more information per box.
The staircase in the figure shows place values for base b: the rightmost box is b0=1, then b1, then b2, each step b times taller. The rightmost box is called the least significant (smallest multiplier); the leftmost is most significant. This "smallest on the right" fact is the reason the parent note keeps insisting you group bits from the right — the powers grow that way.
Now we can say what a number's total value is: add up every (digit × its place value). Written box by box for a 3-box number:
value=d2⋅b2+d1⋅b1+d0⋅b0
For long numbers that "+⋯+" gets tiring, so mathematicians shorthand it with the Greek capital sigma, ∑ ("sum of"):
The figure shows the same 8-bit row 11010110 cut two ways: into 4-bit chunks (each becomes one hex box) and into 3-bit chunks (each becomes one octal box). Notice both cuts start from the right edge — that's the least-significant side from §4.
Read it top to bottom: a digit needs a base, the base fixes the digit range and the base tags; exponents build place values, which the summation adds into a total; the digit range forces the letters A–F; and the fact that 8 and 16 are powers of two is what turns all of this into the grouping shortcut that is the topic.