Dammit. I knew I should have spent more time looking for a counterexample. Ugh.
The order that you do the addition in doesn’t matter, provided you remember whether the numbers are negative or positive. Subtracting 8 from a number is the same as adding a number to -8. Thus
16 - 8 +3 = 11 is in fact the same as:
-8 +3 + 16 = 11 (-8+3=-5, -5+16=11)
Or, what needscoffee said
Okay, I have another Aunt Sally question. When you’re going around simplifying your equations, let’s say you have a big long thing with something like 3(x+2) in the middle, and of course you go through and make it 3x + 6. Now that no longer has the privileged position of those parentheses, right?
To be specific, I really don’t get what I’m doing wrong here and I think it’s some stupid dumbass thing I learned in fourth grade and have happily never needed since.
6(x-2)-3(x+1) =4(3+2)
6x-12-3x+3=20
3x-9=20
x=29/3
Once I got 21/3, I assume I missed a sign. The book says 35/3. Where did I go wrong?
that should be a -3.
-3 x 1 = -3
I used to run into this all the time when doing programming walk-thrus. And usually, even a bunch of computer programmers couldn’t agree on this without consulting the manual.
My response was to simply say you are NOT ALLOWED to code it that way – you must insert parenthesis so that the order is completely clear, without consulting or remembering anything. Made it much easier to maintain those programs over the years.
That’s the mistake right there! The first thing I teach my students if to forget PEMDAS and IMHO, teaching PEMDAS is one of the worst things elementary teachers do because it teaches multiplication then division and addition then subtraction which as you point out is completely wrong. Also, where are roots in that list?
I teach my students this chart
( )
^ r
X /
Order of operations is top to bottom for arithmetic and bottom to top for algebra. If there are two or more operations at the same level in the problem, work them out left to right.
What does “bottom to top for algebra” mean? I’m sure it’s something really obvious, but I’m not getting it.
Ohhh, thanks. Now that I think about it, I used to make that mistake all the time in school.
shijinn addressed your specific error, but in essence, you’re right - what you are doing when you simplify equations in this manner is putting everything on the “same level” so that values can be easily compared to others, understood, or more simply manipulated to calculate a result (compare how long it would take to plug in x=2 in the original form of 6(x-2)-3(x+1) = y versus in the final form x = (35/3)*y, for example).
In your case you need to remember that the negative sign in front of the three “belongs” to the three, so you need to multiply that sign through as well.
The following are all equivalent (unless I made a typo…!):
6(x-2) - 3(x+1) = 6(x-2) +(-3)(x+1) = 6(x-2) + (-1)(3)(x+1)
= 6x-12 + (-1)(3x+3) = 6x-12 + (-3x-3) = 6x-12 -3x -3
I hope that helps; sometimes seeing things broken down clarifies problems that can’t be put into words easily.
Sometimes, if you’re not sure, it helps substituting in a real value to see if you’ve expanded correctly or not.
So:
-3(x+3) = -3x + 9 OR -3x - 9
Well, let’s substitute in and see. Let’s pick 1 as our number
Substituting in original equation:
-3(1+3) = -3(4) = -12
Our first attempt:
-3(1)+9 = -3 + 9 = 6
Our second attempt:
-3(1) - 9 = -12
If all else fails, substituting in actual values can help show you where exactly you went wrong.
And if something is written as 4x-(2x-3)=0 (This is in the set of problems at the end of the chapter that sometimes seem like they have stuff not yet covered in them.) I don’t remember how to deal with that, because how can you deal with the parenthesis if you don’t know what x is?
You just want to get rid of the parentheses and combine like terms. You will have 4x-2x + 3 = 0
That is the same as 2x + 3 = 0
Isolate the variable by adding -3 to each side, then you have 2x = -3
change the coefficient to one by multiplying each side by 1/2
And now you have x = -3/2
Assuming I read it correctly on my small screen. I can’t tell if it’s -3 or +3 in the original equation
Despite my aptitude in mathematics, I had problems with subtraction in the same sort of way; I had assumed that when you subtracted you were supposed to subtract everything after the minus sign. I placed into the “9th grade” algebra class in 6th grade (I actually took a second placement test after apparently acing the first one they gave me; two of my 6th grades classmates complained they should have been placed into my class as well, but were not given the second test; that they had gone to the elementary school run by the same organization whereas I had not was probably a factor) and I was making this mistake because I was not taught how things actually worked. I definitely remember working with parentheses in elementary school, but it apparently had never been a problem before that I was assuming 9-5+4 was not the same as 9-(5+4). When one has never subtracted more than one term outside parentheses before, it is ambiguous until you get told the convention. The convention makes sense, but isn’t necessarily automatic to someone like myself who needs to be told the rules.
Such a thing never was a problem for division, although the “obelus” (division sign) was generally used, not the “solidus” (slash) that gets used by computers, and it was pretty clear that only the one number after the obelus was supposed to be divided in perhaps partly due to the need to do all divisions first. I personally have issues when seeing things in Excel like A1/A2/B1/B2 - I think it’s quite ambiguous and prefer to write it A1/(A2B1B2) - for a similar reason as before: I find the solidus instinctively to mean that everything after it should be by default in parentheses because everything after it is “under the fraction slash” that the solidus sorta represents.
Not distributing a negative through the parentheses and other errors involving misplacing signs are extremely common mistakes that lead to computational errors at all levels of mathematics. There’s a definite cognitive bias in forgetting to distribute it; not that I was looking too hard, but I didn’t find the error myself until it was pointed out by someone else.
solve 3X^2 + 2 = 100
Read the chart from bottom to top and you would perform the opposite operation in the order - / r
Pai325 is correct: you eliminate the parentheses by “distributing the minus sign.” It’s very similar to what happened in your earlier example, where –3(x+1) becomes –3x – 3, except this time the multiplier outside the parentheses is –1 instead of –3.
(You can think of 4x – (2x–3) as being equivalent to 4x + –1(2x–3), if it helps.)
Just taking a guess at this one, but I think the reference is to when you’re trying to isolate the variable. If you have 2x + 3 = 0, starting from the bottom of the chart, you’d remove the addition first, then the multiplication second.
That does help, actually. In general I’m actually finding this shockingly easy, but I keep making those forget-the-minus errors. I remember now being told as a child to imagine a one in there.
I see. We’ve never had it presented to us in that way (not that I can remember), but that is the way it works out when isolating a variable.
My kids were required to get graphing calculators for their first middle school algebra classes. They were taught to enter complicated expressions into them in order to check their work. Later, when they took physics in high school, being able to rapidly key stuff into the calculator was a godsend. You might want to look into getting one.