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
Need help urgently please
kakasveta [241]

Answer:

x =  -12

y = 3

Step-by-step explanation:

1/2x + 6(x+15) = 12\\1/2x + 6x + 90 = 12\\6\frac{1}{2} x + 90 = 12\\6\frac{1}{2} x= -78\\x = -12

y = x + 15\\y = -12 + 15\\y = 3

6 0
1 year ago
Read 2 more answers
A tax that is collected by a company based on sales of products or services
Darya [45]
A Jew on juice and H
6 0
2 years ago
A = 1011 + 337 + 337/2 +1011/10 + 337/5 + ... + 1/2021
egoroff_w [7]

The sum of the given series can be found by simplification of the number

of terms in the series.

  • A is approximately <u>2020.022</u>

Reasons:

The given sequence is presented as follows;

A = 1011 + 337 + 337/2 + 1011/10 + 337/5 + ... + 1/2021

Therefore;

  • \displaystyle A = \mathbf{1011 + \frac{1011}{3} + \frac{1011}{6} + \frac{1011}{10} + \frac{1011}{15} + ...+\frac{1}{2021}}

The n + 1 th term of the sequence, 1, 3, 6, 10, 15, ..., 2021 is given as follows;

  • \displaystyle a_{n+1} = \mathbf{\frac{n^2 + 3 \cdot n + 2}{2}}

Therefore, for the last term we have;

  • \displaystyle 2043231= \frac{n^2 + 3 \cdot n + 2}{2}

2 × 2043231 = n² + 3·n + 2

Which gives;

n² + 3·n + 2 - 2 × 2043231 = n² + 3·n - 4086460 = 0

Which gives, the number of terms, n = 2020

\displaystyle \frac{A}{2}  = \mathbf{ 1011 \cdot  \left(\frac{1}{2} +\frac{1}{6} + \frac{1}{12}+...+\frac{1}{4086460}  \right)}

\displaystyle \frac{A}{2}  = 1011 \cdot  \left(1 - \frac{1}{2} +\frac{1}{2} -  \frac{1}{3} + \frac{1}{3}- \frac{1}{4} +...+\frac{1}{2021}-\frac{1}{2022}  \right)

Which gives;

\displaystyle \frac{A}{2}  = 1011 \cdot  \left(1 - \frac{1}{2022}  \right)

\displaystyle  A = 2 \times 1011 \cdot  \left(1 - \frac{1}{2022}  \right) = \frac{1032231}{511} \approx \mathbf{2020.022}

  • A ≈ <u>2020.022</u>

Learn more about the sum of a series here:

brainly.com/question/190295

8 0
2 years ago
Read 2 more answers
Evaluate each of the following expressions for x = 16 and y = 4.
Contact [7]
Not to good with math but the answer may be B
6 0
3 years ago
Simplify <br> 10g + 8g - 5g
hichkok12 [17]

Answer:

13g

Step-by-step explanation:

10g + 8g = 18g

18g - 5g = 13g

7 0
2 years ago
Read 2 more answers
Other questions:
  • Place the decimal point in the answer to make it correct. Explain your reasoning. 3.9853 x 8.032856 = 32013341
    10·1 answer
  • What is the square root of 49
    6·2 answers
  • What is the opposite of addition?<br> what is the opposite of division?
    9·2 answers
  • The water level in the aquarium's shark tank is always greater than 25 feet. If the water level decreased by 6 feet during clean
    7·1 answer
  • Expand:<br> x(2x-5)<br> 2x(3x+4)<br> 6x(x-2y)
    6·1 answer
  • A starting principal of $3,000 is invested at 7% compounded annually for 6 years. The compound amount (or future value) is: $___
    8·1 answer
  • W2 – 2w<br> Complete square to make perfect square trinomial
    8·1 answer
  • What is the mean price for the sneakers?
    6·1 answer
  • H E L P ! !
    10·1 answer
  • Pls help really confusing
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!