Order of Arithmetric Operations

Multiplication is Repeated Addition:

m * n = m + m + . . . + m (n times)

Thus, Multiplication Distributes Over Addition:

a * (b + c) = (a*b) + (a*c)

Example:

2 * (3 + 4) = (2*3) + (2*4)

2*7 = 6 + 8

14 = 14

 

Exponentiation is Repeated Multiplication:

m ^ n = m *m *. . . *m (n times) 

Thus, Exponentiation Distributes Over Multiplication:

(a*b)^n = (a^n)*(b^n)

Example:

(3*4)^2 = (3^2)*(4^2)

12^2 = 9*16

144 = 144

 

Exponentiation Does NOT Distribute Over Addition!!!

(a + b)^n is not equal to (a^n) + (b^n)

Example:

(3 + 4)^2 is not equal to (3^2) + (4^2)

7^2 is not equal to 9 + 16

49 is not equal to 25

This also applies to Square Roots:

Example:

sqrt(9 + 16) is not equal to sqrt(9) + sqrt(16)

sqrt(25) is not equal to 3 + 4

5 is not equal to 7