Tyrion101
- 166
- 2
I've always had trouble remembering things that are similar, but not the same, like sometimes you add exponents of an expression, is there something I can use to remember this?
Correction:jbunniii said:It might help to think about the special case of powers of 2. For example, ##(2^2)(2^3) = (4)(8) = 32##, which equals ##2^{2+3}##, not ##2^{2 \times 3}##. One way to remember this is to consider the binary representation:
$$2^2 = 000010, 2^3 = 000100$$
##2^2 \times 2^3 = 100000_2 = 2^5 = 32##jbunniii said:Multiplication by 2 is equivalent to shifting the representation to the left by one "bit", which adds 1 to the exponent. Multiplication by ##2^3## is the same as multiplying by 2 three times, or equivalently, shifting to the left three times, or adding three to the exponent:
$$2^2 \times 2^3 = 010000 = 2^5$$