Cash Fulton said:
I have had this question bugging me for a while. I know how to use it, but why and how does it work?
That's not really the question to ask. Order of operations is a convention that has been developed to enable people to evaluate complicated expressions. Without an established convention on the order, one person might evaluate 3 + 4 * 5 as 7 * 5 = 35, and another might evaluate this as 3 + 20 = 23.
In this fairly simple expression, the convention is that multiplications are to be performed before additions, so 3 + (4 * 5) = 23 is the agreed-upon answer.
When I was in Jr. High, and was first exposed to this concept, the acronym was MDAS, with a mnemonic of "My dear Aunt Sally." The idea was that multiplications and divisions were to be performed before additions and subtractions. Since then the acronym has be expanded to PEMDAS and possibly another that I don't remember. The acronym stands for Parentheses, Exponents, Multiplies, Divisions, Additions, Subtractions.
For example, ##3 + 2^4## would be evaluated as 3 + 16 = 19, and not as 3 + 2 raised to the 4th power. The exponent operation is higher order than the addition. To force the addition to be done first, parentheses need to be added, as ##(3 + 2)^4##, or 625.
Cash Fulton said:
I heard it was for convention and you do the most complicated to the simplest operations to get the lowest terms but it still confuses me. Can anyone give me a clear and easy to understand explanation.
Thanks.