"You don't skip numbers, you skip operations " - Okay I think this helps. I have to think about it. Because I did not consider it to be skipping the number. (It is probably harder for me to see this clearly with this particular problem because it is ALL 4s!) But I think I understand it as in this problem 4 x 4 + 9 x 4 + 2 x 4 - 7. Here I would get 16 + 36 + 8 = 60 and 60 - 7 = 53. Correct?
Correct.
I chose my "skipping" phraseology because it seemed to be tracking what you wrote, but it is not ideal. Now that you are on the
right track, let's try an explanation that is more exact.
a + b means add b to a
a - b means subtract b from a
a * b means multiply a times b
a / b means divide a by b
a^b means exponentiate a by b.
In each case, we have a number, an operator, and a second number. We might call those 5 expressions the basic expressions because we build more complicated expressions by combining them. In other words, we are being a bit lazy when we write 4 + 3 + 6 instead of (4 + 3) + 6 or 4 + (3 + 6). Addition is a binary operation, meaning that, strictly speaking, it creates a third number from operating on two numbers. But it would be a real nuisance to have to put all these parentheses into long expressions. So we create a convention that allows us to drop parentheses without confusion. We should first teach the EMDAS rule. That rule is to do all exponentiations in an expression first, then all multiplications and divisions, and lastly all additions and subtractions. Then the PEMDAS rule comes in as a supplement. Whenever we want
NOT to follow the EMDAS rule, we must use grouping symbols to indicate a different order of operations.
Does this help or make things worse?