Random number generated on a 32sii



#2

Have any of you written a random number generating program for a 32sii? Specifically generating an integer between say 1 to 5? I don't have the manual and wonder if it could be already in existance?

Best regards,
Charles


#3

It has a random number generator from 0 to 1(Prob -> R). Couldn't you just use a linear transform of that, i.e.,

Your Random Number = 1 + (4*R)


#4

I think you would need to compute 1+int(5*R) to get a random integer in the range 1..5. Most random number generators produce fractions from zero to one, including zero but not including one.

#5

.

#6

Hi!

Try it:

LBL R        #random
INPUT N #how many Nums?
INPUT I #mInimum?
INPUT A #mAximum?
LBL J #jump here
RCL A
RCL sub I
1
add
RANDOM
mul
IP
RCL add I
PSE #put another PSE, if it too fast
DSE N
GTO J
RTN

'add', 'sub', 'mul', 'div' mean
'add', 'substract', 'multiple' and 'divide' in this order.

Csaba


Possibly Related Threads...
Thread Author Replies Views Last Post
  HP Prime: RANDOM Alberto Candel 4 1,407 10-18-2013, 09:18 PM
Last Post: Alberto Candel
  Some random wish list items for the 43s Marcel Samek 18 4,017 07-11-2013, 05:35 PM
Last Post: Paul Dale
  OT: Help with Testing Random Number Generators Namir 5 1,538 08-01-2011, 11:20 PM
Last Post: Paul Dale
  Question about random number generators Namir 20 3,665 07-08-2011, 11:05 AM
Last Post: David Hayden
  Random Number Generation Challenge (sort of) Namir 9 2,105 02-15-2010, 08:05 AM
Last Post: Bart (UK)
  HP17b & it's offsprings - Random Number Generator - How? Peter A. Gebhardt 29 4,776 12-09-2009, 02:18 AM
Last Post: Marcus von Cube, Germany
  O.T. Pseodo-random noise designnut 0 587 11-25-2008, 05:31 PM
Last Post: designnut
  Man calculates the 13th root of a random 200 digit number in his head in 70 secs! BruceH 5 1,425 12-15-2007, 10:46 AM
Last Post: bt_schmidt
  Random simulation (and stimulation?) Kiyoshi Akima 7 1,894 07-28-2006, 07:08 PM
Last Post: Rodger Rosenbaum
  HP35 HP45 battery charger. Random display values. Charles Esson 3 1,019 10-26-2005, 10:13 AM
Last Post: Thomas Radtke

Forum Jump: