Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Investigating numbers with few repeated numbers

1 visualizzazione (ultimi 30 giorni)
Dnyandeep Sagar
Dnyandeep Sagar il 11 Apr 2019
Chiuso: MATLAB Answer Bot il 20 Ago 2021
how many 18 digit numbers are there such that no digit occurs more than three time in n?

Risposte (1)

Amal George M
Amal George M il 11 Apr 2019
Modificato: Amal George M il 11 Apr 2019
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