3/45 = 20/x...3 in to 45 seconds = 20 in to x seconds
cross multiply
(3)(x) = (45)(20)
3x = 900
x = 900/3
x = 300...300 seconds (or 5 minutes)to fill the tub with 20 inches
Answer: 14
Step-by-step explanation:
1/2 gallon =2 quarts, so add the 2 quarts and the 1 quart of ginger ale, plus the one pint of lemonade and this makes 14 cups of punch
Step-by-step explanation:
answer and explanation is pinned
9514 1404 393
Answer:
(c) P(x) = x^4 +3x^3 -10x^2 -30x
Step-by-step explanation:
If the polynomial has integer coefficients, its complex or radical roots come in conjugate pairs. That is, -√10 is also a root. The four roots mean the polynomial has degree 4. That eliminates all but answer choice C.
Each root 'a' gives rise to a factor (x -a), so the factored polynomial is ...
P(x) = (x -0)(x -(-3))(x -√10)(x -(-√10))
P(x) = x(x +3)(x² -10) = x(x³ +3x² -10x -10)
P(x) = x^4 +3x^3 -10x^2 -10x
<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>