Is there any way on the TI-84 calculators to create a "true" random number generator? I know the one built into the calculator is a pseudo-random number generator but is it at all possible to create a true RNG so that no matter what the user wants to seed the built in RNG with the result will always be random and not predictable even if they reseed it with the same seed after getting a set of numbers? My initial thought was to use the RNG in a For
loop like this to randomize the seed but it occurred to me that by seeding the initial RNG it's still predictable. Here is the code I was using:
For(I,1,int(rand*100),1)
int(rand*100)→rand
End
But as I stated that didn't work.