63.3k views
1 vote
"how many ways are there to construct a string of 3 digits if numbers cannot be repeated

2 Answers

0 votes


\underbrace{10}_{\text{1 of 10 digits}}\cdot \underbrace{9}_{\text{1 of remaining 9 digits}}\cdot \underbrace{8}_{\text{1 of remaining 8 digits}}=720

User Akahunahi
by
6.1k points
5 votes
there are 10 total digits ( 0, 1 , 2, 3, 4, 5, 6, 7,8 ,9)

1st digit can be 1 of 10
2nd digit can be 1 of 9 ( 10-1 because a number cannot repeat)
3rd digit can be 1 of 8 ( 9-1 because no number can repeat)

total combinations = 10 * 9 * 8 = 720
User PiKos
by
5.9k points