http://www.physicsforums.com/showthread.php?t=488334
even the physics forums got trolled bad .. lol
Quote:
I get 288. In the acronym PEMDAS, the M and D operations are at the same priority and the A and S are at the same priority. Arithmetic operations at the same priority are evaluated left to right. So for example, 2 + 5 - 3 is the same as (2 + 5) - 3 = 7 - 3 = 4, while 2 - 5 + 3 is the same as (2 - 5) + 3 = -3 + 3 = 0.
I can't say that I remember my algebra teacher in ninth grade going into quite such detail (in fact, all I remember her telling us was the acronym MDAS, with a mnemonic device of My Dear Aunt Sally), but programming languages such as C, C++, C#, Fortran, Pascal, and others are very specific about operator precedence.
For this reason, 48÷2*(12) should be evaluated as if it were written (48÷2)*12 = 24 * 12 = 288.
If you really meant
it should be written as 48/(2(9 + 3)). That forces the multiplication to be performed before the division.
|
that being said / quoted from the physics forum . . . I voted "2"

