This is my thought when I come into a cool upon reading the comments.
The main debate and confusion here was how the equation is to be understood using the PEMDAS rule. Is it (a) 48÷[2(9+3)] or is it (b) 48÷2(9+3), written in a single line (linear form)?
As cilff has pointed out, when (a) is written in paper, it would become:
48
------
2(9+3)
which is 2.
However, when using digital resources (calculators, computers. etc), the given expression is evaluated from left to right so that:
48/2*(9+3) = 288.
This is analogous to the following expression when using calculator:
16 / 2 * 4 = 32 and not 2; because most calculators solve the expressions in infix notation and the small-sized memory as the stack. This is the reason why calculators solve the expression from left to right in a binary tree-like traversal. (More on infix notation:
Evaluating Infix Expressions)
Also, programming languages and computer-aided tools usually uses prefix to solve complicated expressions. The given equation answers 288 because there is no parenthesis as in 48÷(2*(9+3)) just like in (a) which might cause the number 2 to be pushed into the stack and popped out when the last closing parenthesis is encountered from parsing which results to 2.
Now, the expression should be 48÷(2(9+3)) to result to 2 (using PEMDAS left-to-right rule and proven through digital resources).
This is the primary problem when the given math expression to be solved is written in linear form [eg. 16 / 4 * 2] and not in "professional" way [eg. the expression with a horizontal bar for fractions.] The linear form usually appears when the input field for the expression is a linear prompt (just like in text type html form input, one-line input here in istorya, and the "linear" mode in calculators).
Since the given is written in linear. and having said the above, the answer should be 288 using the PEMDAS left-right rule.
OT:
My previous comments were actually a survey on how Filipinos would react to a harsh, frank, direct-to-the point, heart-blasting, and atrocious comments ('hilas' in Cebuano). I actually encounter many similar comments I have had on Western country sites (eg.
Stack Overflow, and the likes) when I tend to post answers which others think is erroneous or needs clarifications. My clear proof that Filipinos are more emotional than logical than other countries are. That is why other countries love Filipinos because we are hospitable. That is also why Filipinos love other countries because of their wit in inventions, technologies, etc. Sorry, and thank you.