Uncertain about part of the Order of Operations, from a formula

  • Context: High School 
  • Thread starter Thread starter symbolipoint
  • Start date Start date
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 809 views
Homework Helper
Education Advisor
Gold Member
Messages
7,774
Reaction score
2,193
TL;DR
found a formula but some of order of operations are not clear. Somebody can and will I hope explain how to properly compute.
I found something, a formula, which I am sure is ambiguous. Let me disguise the numbers, but
some of the order of operations comes imprecise to me. I also omitted one of the terms due to
that part not being ambiguous.

V=((H/100)^(a)*(b))+(c)

I just cannot properly identify the exact order of operations.
Somebody make this clear?
 
Mathematics news on Phys.org
Exponentiation has precedence over multiplication.
 
Reply
  • Like
Likes   Reactions: DaveE
Brackets that don't include an operator are meaningless. (a) = a. First step, remove them. so,
V=((H/100)^(a)*(b))+(c)=((H/100)^a*b)+c

Brackets are sometimes added when not necessary for readability, but this is subjective.
V=(H/100)^a*b+c is the minimal usage. They are required to force division before exponentiation in this example. Some might prefer V=((H/100)^a)*b+c

V=((((H/100)^a)*b)+c) is the maximal usage, a bracket for every operation. Note how hard it is to visually keep track of many brackets together "((((".

Reordering of commutative terms can improve readability, like this:
V=c+b*(H/100)^a
 
Reply
  • Like
Likes   Reactions: symbolipoint
If these quantities are associated with units, inserting the units could help clarify the order of operations.
 
Reply
  • Informative
Likes   Reactions: symbolipoint