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
How many solutions do these equations have y= 3x+4 y+6=3x
Nataly [62]

Answer:

Step-by-step explanation:

hello :

the system is :  y= 3x+4....(*)

                         y+6=3x....(**)

by (**) : y = 3x - 6

so : y= 3x+4

      y= 3x - 6

means :  3x+4 = 3x - 6

                     4= -6.......(false)

conclusion : no reals  solutions

5 0
3 years ago
Can someone please help and give the right answer
Vesna [10]

Answer:

The answer is below

Step-by-step explanation:

Two triangles are said to be congruent if all the three angles and three sides of one triangle is equal to the three sides and three angles of the other triangle.

Statement                             Reason

RS ⊥ TS and RV ⊥ TV           Given

∠S = ∠V are right angles      Definition of perpendicular. Since RS ⊥ TS,

                                               hence ∠S = 90° and RV ⊥ TV hence ∠V = 90°

ST ≅ VT                                  Given

RT ≅ RT                                  Reflexive property of congruence

ΔTSR  ≅ ΔTVR                      Hypotenuse leg congruence theorem. For

                                              two right triangles, if the hypotenuse and leg

                                              of one triangle is the same as the hypotenuse

                                              and leg of the second triangle, then the two

                                               triangles are congruent.

RS ≅ RV                                  Definition of congruency.

7 0
3 years ago
What is the rate of change ?
postnew [5]
The rate of change is also called the slope
 the formula foe the rate of change is (y2-y1) / (x2-x1)

x1 = -3
x2 = 6
y1 = 14
y2 = -1
 rate of change = (-1 - 14) / (6- (-3)
= -15 / 9
= -5/3


3 0
4 years ago
Ben has 2 identical pizzas.
Varvara68 [4.7K]
Let the weight if a whole pizza be x grams

Then 1/4 of a pizza weighs x/4  grams and one eighth weighs x / 8.  The difference is 32 grams so we can make the following equation:-

x/4 - x/8  = 32
x / 8  = 32
Multiplying both sides by 8:-

x = 8*32 =  256 

Answer is 256 grams.

6 0
3 years ago
HELP PLEASEE 12 points !!
olga55 [171]

Answer:

Negative since the line is coming like this \

It gets to be negavite will if it was like this/ it could have been positive

7 0
3 years ago
Read 2 more answers
Other questions:
  • Bag A contains 3 white marbles and 2 red marbles. Bag B contains 6 white marbles and 3 red marbles. A person draws one marble fr
    12·2 answers
  • Natalie accelerator skateboard along a straight path for 4 milliseconds to 0 milliseconds in 25.0 seconds find the acceleration.
    12·1 answer
  • Something plus 8,447.6 equal 10,248
    5·2 answers
  • PLS HELP WITH TRIG NEED TO SHOW ALL WORK
    9·1 answer
  • Answer with explanation<br> I will and rate on the feedback.<br> Will mark brainliest too
    5·1 answer
  • use your knowledge of angle relationships solve for x in the diagram below Justify Your solution by naming the geometric relatio
    14·1 answer
  • What is the solution to the system of equations below?<br> 2x + 5y = 32
    13·2 answers
  • 7th grade: A jewelry salesperson sells an
    6·2 answers
  • 1
    6·1 answer
  • What is 6/4 + 2/3 ? Im not very good at math so I need some help
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!