Answer:
90 but since its a triangle but im
pretty sure you have to divide by 2 so 45 i think
Ok so for the first one it’s super simple I’m gonna do it as less complicated so it can help you :)
So first we need to convert the mixed number to an improper fraction
1 4/5 = 9/5
Now we need to reduce the numbers greatest common divisor which is 3
3/5 x 6
Now multiply the numbers
Your answer is 18/5 I hoped this help
Now for the second one
this one is a little more complicated and I don’t know how to make it sound easier so I’m gonna tell you the answer which is 580/21
The last one is the same steps we did for the first one which is 27/20
I hoped this helped you it is a little difficult but you’ll get the hang of it :)
Answer:
the correct answer is shown below
Step-by-step explanation:
hope this helps
Answer:
Step-by-step explanation:
It would be 54 because 12*4.5 = 54.
<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>