
David W. answered 06/22/16
Tutor
4.7
(90)
retired
The Order of Operations is:
Parentheses
Exponentiation
Multiplication, Division - left to right
Addition, Subtraction - left to right
This mean that the expression is evaluated as follows:
2 + ( 3 + 5y4 )6 [evaluate expression in Parentheses first --> 3+5y4 ]
3 + 5y4 [Recursively use P-E-M-D-A-S; no more P, so do Exponentiation]
3 + 5a [I'll use 'a' since we don't have value for y; do Multiplication]
3 + b [using b]
c [do Addition; result c]
2 + c6 [no more Parentheses; now do Exponentiation]
d [d is the result of Addition]
Now, PLZ note that the "Rules of Exponents" says that y4 =y*y*y*y and c6 = c*c*c*c*c*c. Where else would use use these rules??
Kenneth S.
06/22/16