math 20 pts

2014-11-30 7:31 am
Count the number of passwords with following constraints. Assuming digits = {0,1,..., 9}
5 characters which are digits. The sum of digits is a multiple of 10.
why ans =10^4

回答 (2)

2014-11-30 8:05 am
✔ 最佳答案

圖片參考:https://s.yimg.com/lo/api/res/1.2/ZQit8r6YM3UMER1bF6V.OQ--/YXBwaWQ9dHdhbnN3ZXJzO3E9ODU-/http://i.imgur.com/ZH9B85L.gif

很久沒見你啦~~

由00000、00001、00002至99999共有 10000 個密碼選擇。

我們考慮順序列出來,想細想情況,觀察一下:

〔首十個〕
00000 數字和=0
00001 數字和=1
...
00009 數字和=9

〔接著十個〕
00010 數字和=1
00011 數字和=2 
...
00019 數字和=0

〔接著十個〕
00020 數字和=2
00021 數字和=3 
...
00029 數字和=1

...

〔最後十個〕
99990 數字和=36
99991 數字和=37
...
99999 數字和=45

以上的排法可以限制了共 10000 ÷ 10 = 1000 組之中每組數字的萬、千、百、十位數都相同,因此數字和會是連續的十個整數。

而對於連續的十個整數,必定恰好有一個數可被 10 整除。

因此,在 1000 組之中,每組有一個密碼會使得數字和可被 10 整除。

所以答案是 1000 = 10⁴。


圖片參考:https://s.yimg.com/rk/HA00430218/o/1111101079.jpg


2014-11-30 00:09:01 補充:
哈哈哈,我打錯字。
以上的想法是正確的,但我打的數字不對。

應是:

由00000、00001、00002至99999共有 100000 個密碼選擇。

以上的排法可以限制了共 100000 ÷ 10 = 10000 組之中每組數字的萬、千、百、十位數都相同,因此數字和會是連續的十個整數。

而對於連續的十個整數,必定恰好有一個數可被 10 整除。

因此,在 10000 組之中,每組有一個密碼會使得數字和可被 10 整除。

所以答案是 10000 = 10⁴。
2014-11-30 7:50 pm
Consider the first 4 digits, there are 10^4 ways
The sum of the first 4 digits when divided by 10 leaves a remainder R=0,1,2,…, or 9
In order to make the sum of the 5 digits divisible by 10, the last digit must be unique depending on R:0,9,8,7,…,1 respectively
Hence the number of ways = 10^4


收錄日期: 2021-04-23 23:27:21
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20141129000051KK00116

檢視 Wayback Machine 備份