Answer:
c
Step-by-step explanation:
you would do
m = money overall
(m*1.08) +3000= you would do that twelve times
It would be C because the 40° is acute and the last degree is obtuse
To determine the percent change in price, solve for the differences between the original prices and the sale prices. Then, divide the difference by the original price and multiply by 100%.
Guitar 1: (($160 - $100) / $160) x 100% = 37.5%
Guitar 2: (($250 - $150) / $250) x 100% = 40%
Thus, guitar 2 has a greater percent change in price.
<span>import math
def calculateDistance(x1,y1,x2,y2):
dist = math.sqrt((x2 - x1)**2 + (y2 - y1)**2)
return dist
distance = calculateDistance(2,4,6,8)
print distance</span>
Answer:
Step-by-step explanation: