B Solving a RNG Problem: What is the Expected Value of N?

AI Thread Summary
The discussion centers on determining the expected value of N in a random number generator (RNG) scenario where an integer is picked uniformly from 1 to N, and a specific value (e.g., 4) is observed. The main inquiry is whether there is a specific name for this type of problem, where the parameters of the RNG are unknown and need to be estimated. The German tank problem is referenced as a related concept, highlighting its relevance in estimating population sizes based on sampled data. The thread emphasizes the mathematical approach to solving such estimation problems. Understanding the expected value in this context is crucial for applications in statistics and probability theory.
{???}
Messages
57
Reaction score
7
TL;DR Summary
A RNG picks an integer uniformly from 1 to N. It picks 4. What is the expected value of N?
Hey all,

So this time I have a different kind of question - namely, "what is this called?"
I recall hearing/reading this in at least two places, one of which was YouTube. The idea is the following:
A RNG picks an integer uniformly from 1 to N. It picks 4. What is the expected value of N?
I'm pretty sure I know how to solve this problem. My question is the following: Is there a name for this problem, or problems like it? Where the parameters of the random number generator are the thing you're trying to determine?

Cheers,
QM
 
Physics news on Phys.org
I was reading documentation about the soundness and completeness of logic formal systems. Consider the following $$\vdash_S \phi$$ where ##S## is the proof-system making part the formal system and ##\phi## is a wff (well formed formula) of the formal language. Note the blank on left of the turnstile symbol ##\vdash_S##, as far as I can tell it actually represents the empty set. So what does it mean ? I guess it actually means ##\phi## is a theorem of the formal system, i.e. there is a...
I was reading a Bachelor thesis on Peano Arithmetic (PA). PA has the following axioms (not including the induction schema): $$\begin{align} & (A1) ~~~~ \forall x \neg (x + 1 = 0) \nonumber \\ & (A2) ~~~~ \forall xy (x + 1 =y + 1 \to x = y) \nonumber \\ & (A3) ~~~~ \forall x (x + 0 = x) \nonumber \\ & (A4) ~~~~ \forall xy (x + (y +1) = (x + y ) + 1) \nonumber \\ & (A5) ~~~~ \forall x (x \cdot 0 = 0) \nonumber \\ & (A6) ~~~~ \forall xy (x \cdot (y + 1) = (x \cdot y) + x) \nonumber...
Back
Top