フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Investigating numbers with few repeated numbers

1 回表示 (過去 30 日間)
Dnyandeep Sagar
Dnyandeep Sagar 2019 年 4 月 11 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
how many 18 digit numbers are there such that no digit occurs more than three time in n?
  1 件のコメント
Stephen23
Stephen23 2019 年 4 月 11 日
@Dnyandeep Sagar: what have you tried so far?

回答 (1 件)

Amal George M
Amal George M 2019 年 4 月 11 日
編集済み: Amal George M 2019 年 4 月 11 日
The first digit has to be a non-zero digit, and hence it can only be populated 9 ways.
Let a denote the number of times the first digit is repeted in the rest of the 17 possible locations. and () denote the number of times the other digits are repeated in the rest of the 17 possible locations.
Then the number of ways the rest of the locations can be filled is equalvent to the number of solutions to under the constraints and .
This problem can be remodelled as a multiplication problem. Consider the algebraic expression. If we expand this expression, then the coefficent of power of x will be the number of solutions such that sum is n. This can be found by
>> syms x
>> y=((1+x+x^2+x^3)^9*(1+x+x^2));
>> coX=coeffs(y,x);
>> coX(18)
ans =
69834
Now, since first place can be filled 9 ways, the final answer willl be 628506.
Correct me if I got this wrong.

この質問は閉じられています。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by