Answer:
1 x 10^3
Step-by-step explanation:
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:
D) 8
Step-by-step explanation:
3x - 7 - 2x + 5 = 6
3x - 2x = 6 + 7 - 5
x = 8
Note: 6 + 7 -5 = 13 -5 = 8
Answer:
5 but its probaly not right bc im just looking for pointsStep-by-step explanation:
<h3>
Answer: Choice D</h3>

Domain = [-3, infinity)
==================================================
Work Shown:

In step 2, we replaced every x with g(x)
In step 3, we plugged in g(x) = sqrt(x+3)
The domain of g(x) is [-3, infinity), so this is the domain of
as well since the composite function depends entirely on g(x). Put another way: the input of f(x) depends on the output of g(x), so that's why the domains match up.