Answer:
Step-by-step explanation:
B. the vertex is (-6,-2)
C. 1
D. X= -6 Y= -1
Not sure if these are right please let me know if they helped
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: the original price of the skirt is $24
Step-by-step explanation:
Let x represent the original price of the skirt. if the original price of the blouse is 18, then the original price of the skirt and blouse is (x + 18)
Jade buys a blouse and a skirt for 3/4of their original price. It means that the amount at which she bought the skirt and blouse is
0.75(x + 18)
Applying the distributive property, it becomes
0.75x + 13.5
Jade pays a total of 31.50 for the two items. It means that
0.75x + 13.5 = 31.5
0.75x = 31.5 - 13.5
0.75x = 18
x = 18/0.75
x = $24
Answer:
$64.8
Step-by-step explanation:
hihihihihihihihihihihihihi
Distance formula : d = sqrt (x2 - x1)^2 + (y2 - y1)^2
(-5,8)(10,-7)
d = sqrt (10 - (-5)^2 + (-7 - 8)^2
d = sqrt (10 + 5)^2 + (- 15^2)
d = sqrt (15^2) + (-15^2)
d = sqrt 225 + 225
d = sqrt 450
d = 21.21