Answer:
Negative Correlation
Step-by-step explanation:
there is a negative correlation between the number of hours you sleep in and the number of hours you are awake during the day as the longer you are either awake or asleep the less time you will be doing the other thing
Here is a graph I made that will hopefully help you understand.
Even if I switched around the label for the x or y-axis, the correlation would still remain the same because the more you stay asleep, the less you will be awake and vice versa.
Domain is the left and right values, which means any parabola opening up or down will have a domain of (-∞, ∞)
Answer:
648
Step-by-step explanation:
Running this in Python, with the code as follows,
import math
cur_numbers = [0] * 3
num = 0
for i in range(100, 1000):
cur_numbers[2] = i % 10
i = math.floor(i/10)
cur_numbers[1] = i % 10
i = math.floor(i/10)
cur_numbers[0] = i % 10
if(len(set(cur_numbers)) == 3):
num += 1
print(cur_numbers)
print(num), we get 648 as our answer.
Another way to solve this is as follows:
There are 9 possibilities for the hundreds digit (1-9). Then, there are 10 possibilities for the tens digit, but we subtract 1 because it can't be the 1 same digit as the hundreds digit. For the ones digit, there are 10 possibilities, but we subtract 1 because it can't be the same as the hundreds digit and another 1 because it can't be the same as the tens digit. Multiplying these out, we have
9 possibilities for the hundreds digit x 9 possibilities for the tens digit x 8 possibilities for the ones digit = 648
Answer:
Acute angle
Step-by-step explanation:
170-100=70
An angle between 0 and 90 degrees is an acute angle.