Understand how base conversion rules change for numbers with a decimal point (fractional parts).
Explain repeated multiplication by base.
When dealing with fractional parts (like .25 or .675), the rules for base conversion flip. Instead of dividing the integer part, we use Repeated Multiplication on the fractional part.
Follow these steps to convert a decimal fraction to another base:
0 (or until it starts repeating).Visual of 0.675 x 8 for octal conversion.

Reading the extracted integers from top to bottom, the decimal is approximately:
If you continued the process, the next step would be , which restarts the cycle from Node 2. This means the octal value is actually a repeating fraction:
Explain negative positional weights.
When converting numbers with a decimal point back to base-10, the positional values flip from positive exponents to negative exponents.
Just as integer positions increase to the left (), fractional positions decrease to the right. The first digit immediately after the decimal point is position -1, the next is -2, and so on.
Diagram showing positional values for integers vs fractions.

Integer powers branch up and left; fractional powers branch down and right.
Explain how grouping direction changes for fractions.
Convert fractional binary to hex.
An engineer needs to convert the binary number into hexadecimal to configure a color display setting. What is the correct hexadecimal representation?