Answer:
168, a little of both
Step-by-step explanation:
Make 14 out of 50, 14/50 simplified its 7/25, multiply it by 600 and you get 168 its a little of both because half the info we were given its experimental since it is not theorized, what we're being given (the question) and what we gave is theorized since we didn't actually perform an experiment to get a real answer
The statement is an equation which is written in text form or in words. when we write it as an equation it will be:
squares of w and x is equal to w² and x² so, their sum means they are going to add.
3 + (w² + x²) = 32
three plus the sum of w² and x² is 32.
when we describe or write quantity with an equal sign it makes an equation.
Solution:
<u>Note that:</u>
- Given inequality: 12p < 96
<u>Dividing both sides by 12:</u>
- 12p < 96
- => 12p/12 < 96/12
- => p < 8
Correct option is A.
<u />
<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>