He bought 45 bars of chocolate.
1/5 x 45 = 9
He ate 9 bars on Tuesday.
45 - 9 = 36
He had 36 bars left.
1/12 x 36 = 3
He ate 3 bars on Wednesday
36 - 3 = 33
He had 33 bars left.
------------------------------------------------
Answer: He had 33 bars left.
------------------------------------------------
Answer:
I think the rate is 12.
Step-by-step explanation:
The answer to the equation is 18 which is a composite whole number. the answer is C
Answer:
20
Step-by-step explanation:
Given :
Length = l
Width = w
Area of square = 45
Let side of square = x
Area of square = x²
45 = x²
√45 = x
l of rectangle = x + 5 = √45 + 5
w of rectangle = x -5 = √45 -5
Area of rectangle= l * w
Area = (√45 + 5) * (√45 - 5)
Area = 45 - 5√45 + 5√45 -25
Area = 45 -25
Area of rectangle = 20
<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>