#$&* course phy 121 If your solution to stated problem does not match the given solution, you should self-critique per instructions at
.............................................
Given Solution: `aThe order of operations dictates that grouped expressions must be evaluated first, that exponentiation must be done before multiplication or division, which must be done before addition or subtraction. It makes a big difference whether you subtract the 2 from the x or divide the -2 by 4 first. If there are no parentheses you have to divide before you subtract. Substituting 2 for x we get 2 - 2 / 2 + 4 = 2 - 1 + 4 (do multiplications and divisions before additions and subtractions) = 5 (add and subtract in indicated order) If there are parentheses you evaluate the grouped expressions first: (x - 2) / (x + 4) = (2 - 2) / ( 2 + 4 ) = 0 / 6 = 0. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& Self-critique (if necessary): 3/OK ------------------------------------------------ Self-critique rating #$&* 3/Ok ********************************************* Question: `q002. Explain the difference between 2 ^ x + 4 and 2 ^ (x + 4). Then evaluate each expression for x = 2. Note that a ^ b means to raise a to the b power. This process is called exponentiation, and the ^ symbol is used on most calculators, and in most computer algebra systems, to represent exponentiation. YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY Your solution: 2^x+4 2^2+4 4+4 8 2^(x+4) 2^(2+4) 2^6 64 This problem is like #1, there is really no difference other then the order of operations is diffrent "