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
<span>For this case we have the following expression:
</span>

<span> We are going to make the following change of variables:
</span>

<span>Rewriting the expression we have:
</span>

<span>Factoring the expression we have:
</span>

<span>Canceling similar terms we have:
</span>

<span>Returning the change we have:
</span>

<span> The resctrictions of the function are those that make the denominator equal to zero.
We have then:
</span>

<span>
Answer: The simplified expression is: </span>
<span>
The restrictions are: </span>
Note:
The slope of a straight line passing through the points (x₁, y₁) and (x₂, y₂) is

The two given points are (-3,4) and (4,-1). Therefore the slope is

Answer:
X^4 - 4x^3 - 9x^2 + 36x = 0
x(x^3 - 4x^2 - 9x + 36) = 0
x(x^2(x - 4) - 9(x - 4) = 0
x(x + 3)(x - 3)(x - 4) = 0
the zeroes are -3, 0, 3, 4 Answer