Solve Math Problem: 5+7-11/22+5-55

  • Thread starter sulemanasif
  • Start date
In summary, the conversation discusses the rules of arithmetic operations and their precedence when performing calculations. It is recommended to follow the order of operations, which is typically remembered as "BIDMAS" (or "BIIDMAS" to account for implied multiplication). The conversation also touches on how these rules may differ in computer languages and how the use of brackets and spaces can help clarify expressions.
  • #1
sulemanasif
13
0
wat is the rule?

if all the signs r present in a calculations then which sign we will operate first? e.g.
5+7-11/22+5-55

help me about it please
 
Mathematics news on Phys.org
  • #2


For the arithmetic operations (+, -, *, /), do them in this order:
  1. multiplications or divisions
  2. additions or subtractions
 
  • #3


To the OP: I don't want to sound rude, but you really only need one question mark to ask a question.
 
  • #4


Also, try to eliminate the use of "textspeak": wat for what, u for you, please for please, r for are, etc.
 
  • #5


Are you asking about arithmetic rules that should be followed, or about results of calculations when using some simple electronic calculator? Simple calculators often don't follow the rules and they execute operations in the order they are entered, no matter how they should be treated.

So, for example, 2+3/5 should be 2.6 when calculated correctly, but on some simple calculators you may get 1, as sum is calculated the moment you hit division button.
 
  • #6


Please excuse my dear aunt sally

Parenthesis

Exponents

Multiplication

Division

Addition

Subtraction
 
  • #7


The order is from left to right.

Now, that brings me to another question. In Arabic (or any natural language which reads from right to left), do they follow a right to left ordering convention for mathematics?

Borek said:
Are you asking about arithmetic rules that should be followed, or about results of calculations when using some simple electronic calculator? Simple calculators often don't follow the rules and they execute operations in the order they are entered, no matter how they should be treated.

So, for example, 2+3/5 should be 2.6 when calculated correctly, but on some simple calculators you may get 1, as sum is calculated the moment you hit division button.

The difference is calculators that uses RPN (Reverse Polish Notation) or not.
 
  • #8


MotoH said:
Please excuse my dear aunt sally

Parenthesis

Exponents

Multiplication

Division

Addition

Subtraction

Not true. Multiplication and division have same precedence. Addition and subtraction have same precedence. When the precedence are same, the ordering matters. Ordering is from left to right.
 
  • #9


jobyts said:
Not true. Multiplication and division have same precedence. Addition and subtraction have same precedence. When the precedence are same, the ordering matters. Ordering is from left to right.

Well, if two operations * and / have the same precedence, it does not matter that in practice we assume * is always first followed by / (or vice versa).
 
  • #10


rs1n said:
Well, if two operations * and / have the same precedence, it does not matter that in practice we assume * is always first followed by / (or vice versa).

Right. Only in computer language context, this rule is stricter. If the data types are integers, the division could lead to zero, hence the final result would end up in zero.
 
  • #11


jobyts said:
Right. Only in computer language context, this rule is stricter. If the data types are integers, the division could lead to zero, hence the final result would end up in zero.

Yes but even that is language/type dependant.

Example.

In C.
Code:
 int k;
 float x;
...

k = 10;
x = k/3;
x = 3*x;   // Result is x = 9.0

In Pascal.
Code:
var k : integer;
     x : real;
...

k := 10;
x := k/3;
x := 3*x;       {Result is x = 10.0}

k := 10;
x := k div 3;
x := 3*x;       {Result is x = 9.0}
 
  • #12


Hi,
i guess these rules comes mainly with programming, which automatically uses its own preferences. Personally i don't like such expression. If better use brackets, groupings and spaces..
 
  • #13


sulemanasif said:
if all the signs r present in a calculations then which sign we will operate first? e.g.
5+7-11/22+5-55

help me about it please
The terms may be added in any order, and you will always get the same result. It may help to think of "-11/22" in terms of adding a negative 11/22:
5 + 7 + -11/22 + 5 + -55​
This is true because of the commutative and associative properties of addition. Of course, the division in 11/22 must be done first, as others have pointed out.
 
  • #14


Rajini said:
Hi,
i guess these rules comes mainly with programming, which automatically uses its own preferences. Personally i don't like such expression. If better use brackets, groupings and spaces..

No not really that much related to computer languages, the discussion just got a little side tracked in that direction. The basic rules of operator precedence are important to allow us to write mathematical expressions that are easily readable and which can be understood by anyone, without ambiguity.

Primary school kids usually get taught operator precedence in the form of a mnemonic (or is it better called an acronym?) such as "BIDMAS", which is short for "Brackets, Indices, Division, Multiplication Addition Subtraction". The above discussion was focusing on the fact that a simple mnemonic like the above is a bit incomplete as it doesn't indicate that division and multiplication really have the same precedence (as do addition and subtraction) and so should normally just be processed left to right. In practice this doesn't much matter as re-ordering mult and div (or + and -) at the same level doesn't change the result. For example with the expressions, [itex]3 \div 4 \times 8[/itex] and [itex]3 \times 8 \div 4[/itex], both of which obviously give the same result under left to right evaluation (in the context of normal maths on real numbers).

There is one exception to BIDMAS which crops up quite a lot in typeset maths and that is the "implied multiplication" commonly seen in algebraic expressions. For example if an author writes [itex]3 \div 4x[/itex] they almost invariably mean [itex]3 \div (4x)[/itex] and not the left to right evaluation of [itex]3 \div 4 \times x[/itex]. I often use the modified mnemonic of "BIIDMAS" (*as in Brackets, Indices, Implied_Multiplication, Division, Multiplication, Addition, Subtraction) to take care of this.

*Yes I know this is kind of dumb, since the two "I" 's are ambiguous. Can someone help me think of a better letter to convey this same info. I was also thinking of "A" for "algebraic implied multipilaction", but then that would be ambiguous on "A".
 
  • #15


Borek said:
Are you asking about arithmetic rules that should be followed, or about results of calculations when using some simple electronic calculator? Simple calculators often don't follow the rules and they execute operations in the order they are entered, no matter how they should be treated.

So, for example, 2+3/5 should be 2.6 when calculated correctly, but on some simple calculators you may get 1, as sum is calculated the moment you hit division button.

yes i am asking the arithmetic rules
which operation we will first apply?
 
  • #16


Mark44 said:
For the arithmetic operations (+, -, *, /), do them in this order:
  1. multiplications or divisions
  2. additions or subtractions

i didnt get it wat u said
please explain
 
  • #17


guys i didnt get the answer yet. please tell me which operation will b applied first?
 
  • #18


sulemanasif said:
guys i didnt get the answer yet. please tell me which operation will b applied first?

Yes you did. In post #2. It is virtually impossible to be more explicit without actually answering it for you. What don't you understand about it?
 
  • #19


Mark44 said:
For the arithmetic operations (+, -, *, /), do them in this order:
  1. multiplications or divisions
  2. additions or subtractions

In even more simple terms than that (don't know why you need it more simple than that, but whatever):

--First of all you do the multiplications. For your example, 5+7-11/22+5-55 would become 5+7-11/22+5-55. Nothing would happen as there are no multiplications in it.
--Then, you do the divisions. 5+7-11/22+5-55 would become 5+7-0.5+5-55
--Next up is addition. 5+7-0.5+5-55 become 12-5.5-55
--Finally, subtraction. I hope you can do the final bit by yourself.

That's exactly what Mark said. You can do steps 1 and 2 in either order (multiplication then division, or division then multiplication), same with steps 3 and 4 (addition then subtraction, or subtraction then addition).
 
  • #20


Epic Sandwich said:
--First of all you do the multiplications. For your example, 5+7-11/22+5-55 would become 5+7-11/22+5-55. Nothing would happen as there are no multiplications in it.
--Then, you do the divisions. 5+7-11/22+5-55 would become 5+7-0.5+5-55
--Next up is addition. 5+7-0.5+5-55 become 12-5.5-55
--Finally, subtraction. I hope you can do the final bit by yourself.

This doesn't work. 2 / 3 * 4 is 8/3, not 1/6. You need to do multiplications and divisions together, left-to-right. Similarly, additions and subtractions are done at the same step, left-to-right.
 
  • #21


For this particular problem, it has been made pretty clear that the (11/22) division is to be done first.
 
  • #22


Epic Sandwich said:
--First of all you do the multiplications. For your example, 5+7-11/22+5-55 would become 5+7-11/22+5-55. Nothing would happen as there are no multiplications in it.
--Then, you do the divisions. 5+7-11/22+5-55 would become 5+7-0.5+5-55
--Next up is addition. 5+7-0.5+5-55 become 12-5.5-55
--Finally, subtraction. I hope you can do the final bit by yourself.
This is totally incorrect procedure, resulting in a wrong answer. Your error is highlighted in red.

See redbelly's post above. All addition and subtraction is done together, left-to-right.

Doing it the way you suggest gets you an answer of -48.5.
The correct answer is -43.5.
 

1. How do you solve 5+7-11/22+5-55?

To solve this math problem, we must follow the order of operations (PEMDAS). First, we divide 11 by 22 to get 0.5. Then, we add 5 and 7 to get 12. Next, we subtract 0.5 from 12 to get 11.5. Finally, we subtract 55 from 11.5 to get -43.5 as the final answer.

2. What is the order of operations?

The order of operations is a set of rules that we follow to solve mathematical expressions. It stands for Parentheses, Exponents, Multiplication and Division (from left to right), and Addition and Subtraction (from left to right).

3. Can I solve this problem in a different order?

Yes, you can solve this problem in a different order as long as you follow the order of operations. However, it is recommended to solve it in the given order to avoid any confusion or mistakes.

4. Is there a different way to write this problem?

Yes, this problem can be written in different ways using different mathematical symbols. For example, 5+7 can also be written as 5x+7 or 5^7. However, the final answer will remain the same as long as the order of operations is followed.

5. Can I use a calculator to solve this problem?

Yes, you can use a calculator to solve this problem. However, it is important to know the order of operations and make sure the calculator is following it, as some calculators may not follow the correct order of operations.

Similar threads

Replies
11
Views
653
  • General Math
Replies
3
Views
3K
  • Precalculus Mathematics Homework Help
Replies
3
Views
258
Replies
1
Views
2K
  • Precalculus Mathematics Homework Help
Replies
28
Views
936
Replies
8
Views
4K
  • General Math
Replies
8
Views
965
  • General Math
Replies
1
Views
1K
Replies
6
Views
1K
  • Precalculus Mathematics Homework Help
Replies
3
Views
2K
Back
Top