here is the recursive function
I want to get the maximum n that makes
I tried to get the solution of the function but it failed. It seems possible to use something like Chernoff Bounds,Chevyshev’s Inequality,Markov’s Inequality to calculate the bound of n, but I don't know how to start.
The original question is to choose 8 numbers from arbitrarily, arrange and combine them in order. Find the largest n that after repeating n times, probability of duplicates in n numbers
(I want to find largest n as possible,under the premise of computability, without computer calculation. The answer may not be the number exactly at the critical point, but the number close to the critical point in the calculable range)
Can anyone help me?
Add a comment
|
Using a computer, the maximum value of for which is
Let . Note that the given recursion may be written as
This suggests defining an auxiliary sequence , hence
or
and we get the telescoping sum
consequently
-
It's elegant, but I'm finding an answer within the range that can be shown by hand calculation. is there a better way to find the biggest that meets the condition ? – musk Nov 29 '20 at 10:37
-
@musk I imagine there may be a way to approximate the finite product as a continuous function of , but even if such an approximation could be inverted to solve for , it would not give an exact solution. Therefore, you are not likely to find something that can be easily computed. If the approximation is "good," then it could get you in the neighborhood of the exact value, which could then be found by computer evaluation. – heropup Nov 29 '20 at 10:47
-
The answer I am looking for may not be the number exactly at the critical point, but the number close to the critical point in the calculable range. Is there a way to approximate the finite product? – musk Nov 29 '20 at 11:04