1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Arlecino [84]
2 years ago
6

How many integers between 100 and 999 (inclusive) have distinct digits

Mathematics
1 answer:
daser333 [38]2 years ago
5 0

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

You might be interested in
Write as an algebraic expression <br> the quotient of 30 and 5
kirill [66]

Answer:

30÷5=6.

Step-by-step explanation:

Quotient means to divide, 30÷5 is 6 since 5x6 or 6x5 is 30.

4 0
3 years ago
Cory can eat 21 boiled eggs in 6 minutes. He wants to know how many minutes (m) it would take him to eat 35 boiled eggs if he ca
kipiarov [429]

Answer:c

Step-by-step explanation:

3 0
3 years ago
Find the product. (-2x^2 )^3 ·3 x
jeka94

Assignment: \bold{Solve \ \left(-2x^2\right)^3\cdot \:3x}

<><><><><>

Answer: \boxed{\bold{-24x^7}}

<><><><><>

Explanation: \downarrow\downarrow\downarrow

<><><><><>

[ Step One ] Rewrite \bold{\left(-2x^2\right)^3}

\bold{-2^3\left(x^2\right)^3}

[ Step Two ] Rewrite Equation

\bold{-2^3\cdot \:3x^6x}

[ Step Three ] Apply Exponent Rule

Note: \bold{Exponent \ Rule \ \:a^b\cdot \:a^c=a^{b+c}: \ x^6x=\:x^{6+1}=\:x^7}

\bold{-2^3\cdot \:3x^7}

[ Step Four ] Refine

\bold{-24x^7}

<><><><><><><>

\bold{\rightarrow Rhythm \ Bot \leftarrow}

4 0
3 years ago
Read 2 more answers
A number d minus is less than -1
katrin [286]

\boxed{d-4

<h2>Explanation:</h2>

Hello! Recall you need to write complete questions in order to find exact answers. So in this problem I'll assume the question is:

<em>A number d minus 4 is less than -1</em>

<em />

So it is easy to know that we need to write an inequality here because of the words "less than", which implies that we must use the symbol <. So let's solve this step by step.

Step 1. A number d minus 4.

This statement includes the word "minus", so we need to use the symbol (-). Therefore:

d-4

Step 2. A number d minus 4 is less than

As we said above, here we need to use the symbol (<). So:

d-4

Step 3. A number d minus 4 is less than -1

Finally, we get:

d-4

<h2>Learn more:</h2>

Inequalities: brainly.com/question/9611462

#LearnWithBrainly

3 0
3 years ago
Anyone plzzz this is due in an hour!!!! Will mark the brainliest
Crazy boy [7]

Answer:

C. Rectangle

Step-by-step explanation:

It will result in to a rectangle

6 0
3 years ago
Other questions:
  • if the sum of the measures of the interior angles of a convex polygon is 1440° , how many sides does the polygon have?
    9·1 answer
  • Tremaine is mailing a package to his grandmother. Which tool and unit could be used to measure the weight of the package?
    13·2 answers
  • The Capulet and Montague families love writing. Last year, each Capulet wrote 44 essays, each Montague wrote 66 essays, and both
    11·1 answer
  • Find the length of the radius for this clrcle.<br> (x - 3)2 + (y - 5)2 = 8
    9·2 answers
  • What is the inverse of the function f(x)=3cube
    5·1 answer
  • On average, Matt's Manufacturing Company produces 130 units in five working days and 650 units in twenty-five working days. In a
    6·1 answer
  • Edward has four pearls – two white and two black – which he can distribute as he chooses between two identical bags. He must the
    6·1 answer
  • Which of the following values is the solution of x/32 = 8​
    13·2 answers
  • My head is HURTINGG and I cannot do this
    10·1 answer
  • a local bank reports that 80% of its customers maintain a checking account, 60% have a savings account, and 50% have both. a. if
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!