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]
3 years ago
6

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

Mathematics
1 answer:
daser333 [38]3 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
Sabiendo que lo ancho de un terreno rectangular mide 24.7 m y que su perímetro es de 131.8 m. ¿Cuánto mide cada uno de sus lados
nadya68 [22]

Answer:

El perímetro de un terreno rectangular mide 48 m . Calcula sus dimensiones si el largo es el doble que el ancho.

Respuesta:

De largo mide 16m

De ancho mide 8m

Explicación paso a paso:

Perímetro = número de lados multiplicado por longitud del lado.

Formula: P = 2(a + b)  o    P = 2b + 2h

Donde: P = Rectángulo del perímetro

           a y b = Longitudes de lados

Asignamos las variables:

Largo = 2x

Ancho = x

Utilizamos la formula:

2(x) + 2(2x) = 48

2x + 4x = 48

6x = 48

x = 48/6

x = 8m  (ancho)

2x

2(8)

16m (largo)

Step-by-step explanation:

4 0
3 years ago
A 22-ounce bowl of crackers contains 18 percent cheese crackers. Aida computed 18 percent of 22. Her work is shown below.
Degger [83]
Aida did not use 0.18 for 18%.

When you are finding the percent of something, you can also do this in the attachment below. Yes it is written on a napkin. Hope I helped.

3 0
3 years ago
Read 2 more answers
there are c cyclist in a cycle race 3/4 of the cyclist finish the race how many cyclist did not finish give a algebraic formula
zimovet [89]

1/4

if 3/4 cyclists finish then that leaves 1/4 of the group that did not finish

4 0
2 years ago
Brenda is laying down colored rope to mark the borders of a beach volleyball court. The length of the court must be triple its w
nalin [4]
Try 17 times 3 I think
3 0
3 years ago
Juan's 3 math quizzes this week took him 1/3 hour, 4/6 hour, and 1/5 hour to complete. Which list shows the lengths of time from
Marysya12 [62]
The order from least to greatest would be 1/5, 1/3, then 4/6.

To solve, multiply the fractions so that they all have the same denominator. I multiplied the 1/3 by 10, 1/5 by 6, and 4/6 by 5. After they all have a common denominator, you can easily order them from the numerator.

10(1/3) = 10 / 30
6(1/5) = 6 / 30
5(4/6) = 20 / 30
6/30, 10/30, 20/30

Hope this helps! :)
7 0
3 years ago
Other questions:
  • What's an equation in slope intercept that passes through (-7,-4) and is perpendicular to y=1/2x+9
    11·2 answers
  • Nolans age is two more than two times the age of timmy.how old is Timmy if Nolan is 10 years old
    6·2 answers
  • Julia paints 2/6 of a wall in her room white. She paints more of the wall green than white. What fraction could show the part of
    5·1 answer
  • BRAINLIESTT ASAP! PLEASE HELP ME :)<br> thanks!
    13·2 answers
  • What is the length of the hypotenuse of the triangle when x=13
    15·1 answer
  • I need to know what number goes here? HELP!
    8·1 answer
  • Y &lt; 5x – 2<br> What’s the solution?
    6·1 answer
  • Choose all the numbers that make the comparison true.
    11·1 answer
  • A rope 55 feet long is cut into two pieces. If one piece
    6·1 answer
  • Need by midnight pretty simple i just don't know how to explain it.​
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!