I'm trying to understand algorithm L from reservoir sampling. One of the steps mentions that given n samples independently drawn from a uniform distribution U(0,1), we can simulate drawing n samples and getting the max with just drawing 1 sample can raising it to the power of 1/n.
That is max{random()_1, ...random()_n} = random()^(1/n)
Does anyone know how we get this result? Thanks