Which is the correct answer for 48÷2(9+3): 2 or 288?

  • Thread starter RJS
  • Start date
In summary, there is confusion about whether the answer to the equation 48÷2*(9+3) is 2 or 288. Some argue that 288 is the correct answer, following the order of operations (PEMDAS), while others say 2 is the correct answer because they believe multiplication should be performed before division. However, according to the order of operations, multiplication and division are at the same level of precedence and should be evaluated from left to right. Therefore, the correct answer is 288. The confusion may stem from the use of the ÷ symbol, which can be interpreted differently.

What is the answer?

  • 2

    Votes: 25 50.0%
  • 288

    Votes: 25 50.0%

  • Total voters
    50
  • #1
RJS
9
0
Every forum I've searched this on is split 50/50 between 2 and 288 as the answer. What is your consensus?

People arguing PEMDAS say 288

But if you set the 2 in the equation to x and set the equation equal to 288, x then = 1/72. Thus proving 2 is the correct answer.

Thoughts?
 
Mathematics news on Phys.org
  • #2


288? Following PEMDAS, I get 2:

48÷2*(9+3) = 48÷2*(12) = 48÷24 = 2

The reason why some people are getting 288 is that they're forgetting that there's an invisible multiply sign in the expression.

Honestly though, if I ever saw this I would apply a facepalm. It's not good notation and like you're seeing, it's ambiguous without proper use of parentheses and will confuse people. It's better notation to say [tex]\frac{48}{2(9+3)}[/tex]
 
  • #3


gb7nash said:
288? Following PEMDAS, I get 2:

48÷2*(9+3) = 48÷2*(12) = 48÷24 = 2

The reason why some people are getting 288 is that they're forgetting that there's an invisible multiply sign in the expression.

Honestly though, if I ever saw this I would apply a facepalm. It's not good notation and like you're seeing, it's ambiguous without proper use of parentheses and will confuse people. It's better notation to say [tex]\frac{48}{2(9+3)}[/tex]

If you follow the order of operations, why are you multiplying 2 by twelve before dividing 48 by two? Multiplication doesn't take precedence over division, they're performed from left to right: [tex]\frac{48}{2}(9+3)[/tex]
 
Last edited:
  • #4


You go left to right? I didn't know that.
 
  • #5


And this is why you never see ÷ used for any serious purpose...the notation is just awful.

MATLAB and Python say 288.
 
  • #6


gb7nash said:
PEMDAS = Parenthesis -> exponents > multiply -> divide -> add -> subtract

That's simply the order in which they're stated. Multiplication and division are equal, so are addition and subtraction. I could just as easily say that PEDMSA represents the order of operations. One way to look at it is to say that division is simply multiplication of the reciprocal, and subtraction to be addition of the opposite.
 
  • #7


gb7nash said:
You go left to right? I didn't know that.

I think it comes from viewing division as multiplication by the reciprocal. I wasn't sure, either.

Edit: too late...
 
  • #8


jhae2.718 said:
And this is why you never see ÷ used for any serious purpose...the notation is just awful.

MATLAB and Python say 288.

Even I'm getting confused. :tongue: It's just bad notation.
 
  • #9


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
[tex]\frac{48}{2(9+3)}[/tex]

it should be written as 48/(2(9 + 3)). That forces the multiplication to be performed before the division.
 
  • #10


jhae2.718 said:
MATLAB and Python say 288.
So does C#. I'm positive that C and C++ would report the same result.
 
  • #11


We're taught BODMAS in school.

Same basic principle.

Brackets, Orders, Division / Multiplication, Addition / Subtraction.

I will add though that my secondary school teachers told us to use that exact order and not that D and M held equal value (and A and S the same).

So we'd always do division before multiplication and addition before subtraction. But I doubt that affects things.

EDIT: So if I give division priority (as per strictly following the order of BODMAS) after the brackets I get:

48 / 2*(9+3) = 48 / 2*(12) = 24*12 = 288

But if I give multiplication priority (which I'd never do):

48 / 2*(9+3) = 48 / 2*(12) = 48 / 24 = 2

Have I missed something here?

Based on BODMAS and following that exact order I agree with 288. So I'd say they were right to say follow the order strictly.
 
Last edited:
  • #12


Mark44 said:
So does C#. I'm positive that C and C++ would report the same result.

They do. So do Wolfram Alpha, Google, PHP, Perl, and Ruby.
 
  • #13


jhae2.718 said:
And this is why you never see ÷ used for any serious purpose...the notation is just awful.

gb7nash said:
Even I'm getting confused. :tongue: It's just bad notation.

No, the notation is fine - 48/2*12 really isn't ambiguous if you understand that arithmetic operators at the same precedence level are evaluated left to right. It seems clear from this thread that not everyone is taught this fine point.
 
  • #14


I wrote a quick C program (it's been a looong time...thankfully I have my K&R) and C also says 288.

Mark44 said:
No, the notation is fine - 48/2*12 really isn't ambiguous if you understand that arithmetic operators at the same precedence level are evaluated left to right. It seems clear from this thread that not everyone is taught this fine point.

I agree it's not ambiguous, but I just hate the ÷ symbol.
 
Last edited:
  • #15


This problem also face at my Programming called Tree.

Actually, i am no agree 288 with this answer but i haven't any good reasons because normally you can press the calculator would get 288.Therefore, our tutor said that we have to considered going with the left-hand side when facing the problem with time or divide which going the first, so depended on the question given,for this, we considered the division going first then the answer would get 288.

But for me , i will say that the question problem because it haven't make that clear for the packaging.:smile:
 
Last edited:
  • #16


xiaoB said:
i will say that the question problem because it haven't make that clear for the

But if you follow the rules, you'll always get the correct answer - which I've just ran in python (as above have) to get 288.
 
  • #17


Looking at it like this though:


48 ÷ x(9 + 3) = 288
48 ÷ 9x + 3x = 288
48/12x = 288
4/x = 288
4 = 288x
4/288 = x
1/72 = x


Would suggest that 288 is wrong, and that 2 is correct.


Also, with the order of operations aren't we using the distributive property which states as an example:


Simplify 16 ÷ 2[8 – 3(4 – 2)] + 1.
16 ÷ 2[8 – 3(4 – 2)] + 1
= 16 ÷ 2[8 – 3(2)] + 1
= 16 ÷ 2[8 – 6] + 1
= 16 ÷ 2[2] + 1 (**)
= 16 ÷ 4 + 1
= 4 + 1
= 5


Then, looking at what I have bolded below:



The confusing part in the above calculation is how "16 divided by 2[2] + 1" (in the line marked with the double-star) becomes "16 divided by 4 + 1", instead of "8 times by 2 + 1". That's because, even though multiplication and division are at the same level (so the left-to-right rule should apply), parentheses outrank division, so the first 2 goes with the [2], rather than with the "16 divided by". That is, multiplication that is indicated by placement against parentheses (or brackets, etc) is "stronger" than "regular" multiplication. Typesetting the entire problem in a graphing calculator verifies this hierarchy.

Note that different software will process this differently; even different models of Texas Instruments graphing calculators will process this differently. In cases of ambiguity, be very careful of your parentheses, and make your meaning clear. The general consensus among math people is that "multiplication by juxtaposition" (that is, multiplying by just putting things next to each other, rather than using the "×" sign) indicates that the juxtaposed values must be multiplied together before processing other operations. But not all software is programmed this way, and sometimes teachers view things differently. If in doubt, ask!

This all seems to point toward 2 being the correct answer.
 
  • #18


RJS said:
Looking at it like this though:48 ÷ x(9 + 3) = 288
48 ÷ 9x + 3x = 288
48/12x = 288
4/x = 288
4 = 288x
4/288 = x
1/72 = xWould suggest that 288 is wrong, and that 2 is correct.Also, with the order of operations aren't we using the distributive property which states as an example:Simplify 16 ÷ 2[8 – 3(4 – 2)] + 1.
16 ÷ 2[8 – 3(4 – 2)] + 1
= 16 ÷ 2[8 – 3(2)] + 1
= 16 ÷ 2[8 – 6] + 1
= 16 ÷ 2[2] + 1 (**)
= 16 ÷ 4 + 1
= 4 + 1
= 5Then, looking at what I have bolded below:
The confusing part in the above calculation is how "16 divided by 2[2] + 1" (in the line marked with the double-star) becomes "16 divided by 4 + 1", instead of "8 times by 2 + 1". That's because, even though multiplication and division are at the same level (so the left-to-right rule should apply), parentheses outrank division, so the first 2 goes with the [2], rather than with the "16 divided by". That is, multiplication that is indicated by placement against parentheses (or brackets, etc) is "stronger" than "regular" multiplication. Typesetting the entire problem in a graphing calculator verifies this hierarchy.

Note that different software will process this differently; even different models of Texas Instruments graphing calculators will process this differently. In cases of ambiguity, be very careful of your parentheses, and make your meaning clear. The general consensus among math people is that "multiplication by juxtaposition" (that is, multiplying by just putting things next to each other, rather than using the "×" sign) indicates that the juxtaposed values must be multiplied together before processing other operations. But not all software is programmed this way, and sometimes teachers view things differently. If in doubt, ask!

This all seems to point toward 2 being the correct answer.

Your entire argument is based on the point that multiplication by juxtaposition takes precedence over multiplication by operator, despite the fact that they're just two ways of expressing one operation. It's like saying that ÷ takes precedence over / or vice versa.
 
  • #19


RJS said:
Looking at it like this though:


48 ÷ x(9 + 3) = 288
48 ÷ 9x + 3x = 288
48/12x = 288
You are tacitly assuming that 48 ÷ x(9 + 3) means 48 ÷ [x(12)]. I maintain that it means (48 ÷ x)* 12. Writing 12 as 9 + 3 needlessly complicates things.

Your second line does not follow from the first. That would be interpreted as
(48 ÷ 9x) + 3x = 288, instead of what you intended, which was 48 ÷ (12x) = 288. Again, you are assuming that the multiplication of x and 12 is somehow of higher precedence than the division of 48 and x.

RJS said:
4/x = 288
4 = 288x
4/288 = x
1/72 = x


Would suggest that 288 is wrong, and that 2 is correct.


Also, with the order of operations aren't we using the distributive property which states as an example:


Simplify 16 ÷ 2[8 – 3(4 – 2)] + 1.
16 ÷ 2[8 – 3(4 – 2)] + 1
= 16 ÷ 2[8 – 3(2)] + 1
= 16 ÷ 2[8 – 6] + 1
= 16 ÷ 2[2] + 1 (**)
= 16 ÷ 4 + 1
= 4 + 1
= 5


Then, looking at what I have bolded below:



The confusing part in the above calculation is how "16 divided by 2[2] + 1" (in the line marked with the double-star) becomes "16 divided by 4 + 1", instead of "8 times by 2 + 1". That's because, even though multiplication and division are at the same level (so the left-to-right rule should apply), parentheses outrank division, so the first 2 goes with the [2], rather than with the "16 divided by". That is, multiplication that is indicated by placement against parentheses (or brackets, etc) is "stronger" than "regular" multiplication. Typesetting the entire problem in a graphing calculator verifies this hierarchy.

Note that different software will process this differently; even different models of Texas Instruments graphing calculators will process this differently. In cases of ambiguity, be very careful of your parentheses, and make your meaning clear. The general consensus among math people is that "multiplication by juxtaposition" (that is, multiplying by just putting things next to each other, rather than using the "×" sign) indicates that the juxtaposed values must be multiplied together before processing other operations. But not all software is programmed this way, and sometimes teachers view things differently. If in doubt, ask!

This all seems to point toward 2 being the correct answer.
 
  • #20


configure said:
Your entire argument is based on the point that multiplication by juxtaposition takes precedence over multiplication by operator, despite the fact that they're just two ways of expressing one operation. It's like saying that ÷ takes precedence over / or vice versa.

I agree, but in this particular case, doesn't juxtaposition take precedence?
 
  • #21


RJS said:
I agree, but in this particular case, doesn't juxtaposition take precedence?
It never does, multiplication is multiplication.
 
  • #22


configure said:
It never does, multiplication is multiplication.

Ok, but then what do you take this statement to mean: The general consensus among math people is that "multiplication by juxtaposition" (that is, multiplying by just putting things next to each other, rather than using the "×" sign) indicates that the juxtaposed values must be multiplied together before processing other operations.
 
  • #23


RJS said:
Ok, but then what do you take this statement to mean: The general consensus among math people is that "multiplication by juxtaposition" (that is, multiplying by just putting things next to each other, rather than using the "×" sign) indicates that the juxtaposed values must be multiplied together before processing other operations.

It means that multiplication by juxtaposition takes precedence over multiplication by operator. That statement is false.
 
  • #24


configure said:
It means that multiplication by juxtaposition takes precedence over multiplication by operator. That statement is false.

I'm not saying your wrong, I just haven't seen the answer explained to my satisfaction yet. I see arguments from both sides backed up by sources so I'm getting confused. It's a pretty interesting problem though, seeing the division being nearly perfectly 50% on other polls is fascinating.
 
  • #25


Follow the rules and you get 288. There's no way to split it without ignoring the basics, making you wrong.
 
  • #26


RJS said:
I'm not saying your wrong, I just haven't seen the answer explained to my satisfaction yet. I see arguments from both sides backed up by sources so I'm getting confused. It's a pretty interesting problem though, seeing the division being nearly perfectly 50% on other polls is fascinating.

After thought, you might actually be right. For example:
[tex]a/bc[/tex]

Is it [tex]\frac{ac}{b}[/tex] or is it [tex]\frac{a}{bc}[/tex]?

EDIT: Perhaps the ambiguity of the question is getting to me, and I was correct initially: [tex]a/bc = \frac{ac}{b}[/tex]
 
Last edited:
  • #27


What we're saying is that a/bc is the same as if written (a/b)*c, which is of course the same as ac/b. If you really want to divide a by the product bc, it should be written as a/(bc).
 
  • #28


It is definitely 288

Rewrite it as 48 ÷ 2 x (9+3)
Which is the same, just with the times sign added.
Now we have 48 ÷ 2 x 12
At this point it is obvious that the 48 ÷ 2 come first.
We have already established that we should go left to right.
So it is simplified to 24 x 12 = 288
 
  • #29


DR13 said:
It is definitely 288

Rewrite it as 48 ÷ 2 x (9+3)
Which is the same, just with the times sign added.
Now we have 48 ÷ 2 x 12
At this point it is obvious that the 48 ÷ 2 come first.
We have already established that we should go left to right.
So it is simplified to 24 x 12 = 288

Yeah I understand that, but you re-wrote the problem. Like I stated above though, multiplication by juxtaposition supposedly takes priority before processing other operations. So wouldn't the answer to exactly how it's written really be 2?
 
  • #30


How silly can you get.

Surely the underlying point here is that communication is everything.
Usually you yourself know what you mean, but if you are trying to communicate to a third party you need to set it out in such a way as to make it impossible to mean anthing else.

Suupose this was a drug calculation for the amount of warfarin you need to maintain your life.

If 2 units is correct then 288 will kill you.

That is why the 'alphabet' is not 'ay bee cee...' but 'alpa charlie bravo..' when it matters.

I would suggest you use (lots of) brackets to achieve this aim if there is any possibility of ambiguity. I often find that when I encounter a new program I have to do this on a known test calculation.

In the past ( before everything was typed in) the issue was less acute since mathematical expressions were normally hand written.
Nowadays typing limits what we can do in this respect.

Mark44 is strictly correct about the use of the slash operator, however a great many people use it to indicat that they would like to write a fraction but the restictions of inline typing prevent this.

It is an issue that really needs addressing.
 
  • #31


A good a reason as any to register to this fine forum.

So if the near-consensus is that left-to-right is the correct way to view it. Then can there also be an agreement that (9+3)48/2 is incorrectly calculated by for example wolphramalpha?
 
  • #32


RUBSTEP said:
Then can there also be an agreement that (9+3)48/2 is incorrectly calculated by for example wolphramalpha?

Not if you follow the way I've been taught.

BODMAS = Brackets, Orders, Division, Multiplication, Addition, Subtraction

They must be done in that order.

So for the above I get:

(9+3)48/2 = (12)48/2 = (12)24 = 288

I was confused earlier seeing the other rules, but now I see that my method is spot on. So I'm sticking with it.

As per Studiot, if you want the answer to come out 2, you need to put brackets in the correct position to indicate this.
 
  • #33


Code:
main(){
        printf("%d", 48*(9/2+3/2));
}
output:
240
 
  • #34


[itex]\frac{48}{2}\cdot(9+3)= 48\left(\frac{9}{2}+\frac{3}{2}\right)[/itex]
 
  • #35


Two engineers here ended up with 2.

Something in my head says x(y) means x lots of y. So thus 48÷2(9+3) is saying 48 divided by two lots of (9+3).

Having it as 48÷2x(9+3) WOULD then equal 288.

Ps my casio calculator agrees with me. She can't be wrong (and i don't like matlab, it butchers fractions).
 
<h2>1. What is the correct way to solve 48÷2(9+3)?</h2><p>The correct way to solve this equation is by using the order of operations, also known as PEMDAS (Parentheses, Exponents, Multiplication and Division, Addition and Subtraction). This means that you must first solve the parentheses, then any exponents, followed by multiplication and division from left to right, and finally addition and subtraction from left to right.</p><h2>2. What is the difference between 48÷2(9+3) and 48÷(2(9+3))?</h2><p>The difference between these two expressions is the placement of the parentheses. In the first expression, the parentheses are not explicitly shown, but they are implied to be around the 9+3. This means that the 9+3 must be solved first before dividing by 2. In the second expression, the parentheses are explicitly shown, indicating that the entire expression within the parentheses must be solved first before dividing by 2.</p><h2>3. Why is there confusion over the correct answer for 48÷2(9+3)?</h2><p>The confusion over the correct answer for this equation stems from the lack of clarity in the original expression. The placement of the parentheses is not explicitly shown, leading to different interpretations and thus, different answers.</p><h2>4. Can both 2 and 288 be considered correct answers for 48÷2(9+3)?</h2><p>Technically, yes. Depending on how the parentheses are interpreted, both 2 and 288 can be considered correct answers. However, in order to avoid confusion and ensure a consistent answer, it is important to follow the order of operations and use parentheses to clarify the intended meaning.</p><h2>5. How can we avoid confusion over the correct answer for 48÷2(9+3)?</h2><p>To avoid confusion, it is important to use parentheses to clearly indicate the intended meaning of the expression. Additionally, following the order of operations and solving the equation step by step can also help to avoid any confusion over the correct answer.</p>

1. What is the correct way to solve 48÷2(9+3)?

The correct way to solve this equation is by using the order of operations, also known as PEMDAS (Parentheses, Exponents, Multiplication and Division, Addition and Subtraction). This means that you must first solve the parentheses, then any exponents, followed by multiplication and division from left to right, and finally addition and subtraction from left to right.

2. What is the difference between 48÷2(9+3) and 48÷(2(9+3))?

The difference between these two expressions is the placement of the parentheses. In the first expression, the parentheses are not explicitly shown, but they are implied to be around the 9+3. This means that the 9+3 must be solved first before dividing by 2. In the second expression, the parentheses are explicitly shown, indicating that the entire expression within the parentheses must be solved first before dividing by 2.

3. Why is there confusion over the correct answer for 48÷2(9+3)?

The confusion over the correct answer for this equation stems from the lack of clarity in the original expression. The placement of the parentheses is not explicitly shown, leading to different interpretations and thus, different answers.

4. Can both 2 and 288 be considered correct answers for 48÷2(9+3)?

Technically, yes. Depending on how the parentheses are interpreted, both 2 and 288 can be considered correct answers. However, in order to avoid confusion and ensure a consistent answer, it is important to follow the order of operations and use parentheses to clarify the intended meaning.

5. How can we avoid confusion over the correct answer for 48÷2(9+3)?

To avoid confusion, it is important to use parentheses to clearly indicate the intended meaning of the expression. Additionally, following the order of operations and solving the equation step by step can also help to avoid any confusion over the correct answer.

Similar threads

  • General Math
Replies
18
Views
27K
  • General Math
Replies
5
Views
1K
Replies
6
Views
3K
  • General Math
2
Replies
66
Views
4K
Replies
5
Views
1K
Replies
13
Views
2K
Replies
2
Views
2K
  • Introductory Physics Homework Help
2
Replies
56
Views
1K
  • Precalculus Mathematics Homework Help
Replies
2
Views
1K
  • Calculus and Beyond Homework Help
Replies
1
Views
440
Back
Top