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
HOW TO SOLVE:
1) use x as a variable
2) the starting equation is:
4x + 3x + 5x = 18
3) add all the like terms on the left side of the equation:
12x = 18
4) Divide by 12 on both sides:
x=1.5
5) Find the lengths of the sides:
- 4x = 4(1.5) = 6
- 3x = 3(1.5) = 4.5
- 5x = 5(1.5) = 7.5
SO, the lengths of the sides of this triangle are: 6, 4.5, and 7.5
Answer:
SSS, UVD, the answer is D
Step-by-step explanation:
90/9 = 10
70/7 = 10
80/8 = 10
triangle LMN congruent triangle UVD
Answer:
what does -4,-3,-2,-1 implies?
Answer:
see attached
Step-by-step explanation:
The equation is in the form ...
4p(y -k) = (x -h)^2 . . . . . (h, k) is the vertex; p is the focus-vertex distance
Comparing this to your equation, we see ...
p = 4, (h, k) = (3, 4)
p > 0, so the parabola opens upward. The vertex is on the axis of symmetry. That axis has the equation x=x-coordinate of vertex. This tells you ...
vertex: (3, 4)
axis of symmetry: x = 3
focus: (3, 8) . . . . . 4 units up from vertex
directrix: y = 0 . . . horizontal line 4 units down from vertex