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
Please show your work how you solved this step by step ! Please answer this !!
erastovalidia [21]

Answer:

2x^2

Step-by-step explanation:

8 0
3 years ago
Muffins cost $3.00 per dozen.
GenaCL600 [577]

Answer:

I agree with both of them

Step-by-step explanation:

A dozen is 12 muffins. Therefore, you pay $3.00 for 12 muffins.

We know that you pay $3.00 for 12 muffins we need to find out how much EACH muffin cost. For that we need to divide $3.00 by 12 which is 0.25.

Now we need to know how much it will cost us for 16 muffins. We use our equation 16*0.25 which is 4. Elena said she will pay 4 so she is right.

Andre said he will buy 8 muffins so we use our equation again 8*0.25 which is 2. He said he will pay 2 so he is right.

5 0
3 years ago
two cars traveled equal distances in different amounts of time. car A traveled the distance in 2 hours , and car B traveled the
Sliva [168]

The answer is 90 I believe

6 0
3 years ago
Read 2 more answers
while visiting a mountain, John approximated the angle of elevation to the top of a hill to be 25 degrees. Alfter walking 350 fe
strojnjashka [21]
There are several ways of going about this problem, but just know that it all boils down to triangles and the rules/laws of triangles.
So we start by making a large right triangle, because the hill is vertical with the horizontal ground, with 25° as the left angle (where John looks up to top), 90° is the right angle (where ground meets hill base). So we see that the top side of the triangle is the hypotenuse, and equals the line of sight from John to hilltop.
Now we've got additional information that if John walks 350ft towards the hill, his angle of elevation increases by 14. So that = 25+14 = 39. How does that possibly help us?? Well now we can make 2 triangles inside of the one we've already made. So that now we have the triangle base split between the left angle of 25° and where he stopped 350ft to the right of that.
Now the supplement of 39 is 141, and the remaining piece of that too left triangle = 180-25-141 = 14. What does that mean? Well now we have a triangle, where we know all 3 angles and 1 side --> we can find another side by the law of sines:
If a, b and c are the lengths of the legs of a triangle opposite to the angles A, B and C respectively; then the law of sines states:
a÷sinA = b÷sinB = c÷sinC
We really need the hypotenuse to then find our hill height, so we'll make hypotenuse = side b in attached image. That being so, then its opposite angle (B) = 141. And the top right angle (C) = 14 with its opposite side (c) = 350ft.
Now we only need b÷sinB = c÷sinC
So b/sin141 = 350/sin14 --> b = 350sin141/sin14 = 350×.63/
b = 220.3/.24 = 910.47 ft
Now that's our hypotenuse, so using our original large right triangle, we can use right triangular trig. to solve. Let's make the right side, our hill height, equal to x.
Sin ¥ = opp. side / hypotenuse -->
Sin ¥ = x / hypotenuse
Sin25 = x / 910.5
x = 910.5×sin25 = 910.5×.423
x = 384.8 ft

3 0
3 years ago
In a student art contest there are 14 ​drawings, 34 ​sculptures, and some paintings. There are 16 more paintings than sculptures
timurjin [86]

Answer:

98 is the total number of art pieces

7 0
3 years ago
Read 2 more answers
Other questions:
  • Distance between 12 and -5 on a number line
    12·1 answer
  • Consider the graph of f(x)=1/x-2
    7·1 answer
  • Find the measure of angle CBA.
    12·2 answers
  • A study of consumer smoking habits includes A people in the 18-22 age bracket (B of whom smoke), C people in the 23-30 age brack
    14·1 answer
  • Pls help me answer this<br><br> |<br> |<br> V
    5·1 answer
  • find the area of the trapezium whose parallel sides 24 cm and 20 cm and the distance between them is 15 cm.​
    13·1 answer
  • I WILL GIVE BRAINLIEST ONLY IF YOU ANSWER WELL
    11·2 answers
  • The plot below shows the length of each of the 7 bulletin boards hanging in the fifth grade hallway. All measurements are rounde
    7·1 answer
  • The graph represents the number of bike paths planned for the cities of Nashville and Houston. The number of paths to be built i
    12·1 answer
  • A fruit vendor noticed a proportional relationship between the sales of two of its most popular items, pounds of apples and poun
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!