Precedence with division and multiplication matters. For example:
$$ (80 \div 10) \times 5 = 40\\ 80 \div (10 \times 5) = \frac{8}{5} $$
More generally, I might write:
$$ (A \div B) \times C \neq A \div (B \times C) $$
(Although sometimes that equation holds.) But it does seem like I can move around operands and their operations, for example:
$$ 5600 \div 8 = (56 \times 100) \div 8 = (56 \div 8) \times 100 = 7 \times 100 = 700 $$
Which makes me wonder:
$$ (A \div B) \times C = (A \times C) \div B $$
Why does one seem to work and the other doesn't? I'd really appreciate a small visual demonstration if possible.