AP Notes, Outlines, Study Guides, Vocabulary, Practice Exams and more!

TI-82

TI-82: Generating Random Numbers

Subject: 
Rating: 
0
No votes yet
SocialTags: 
IP
Tags: 
You can generate random numbers on the TI-82 calculator using the following sequence. N is the number of different values which could be and S is the minimum number. int (N*rand+S) INT is found under the MATH menu (math num 4). RAND is also found under the MATH menu (math prb 1). Simulate the rolling of a die (1-6): int (6*rand+1) Simulate the flipping of a coin (0-1): int (2*rand) This works because the rand function returns a random number between 0 and 1 (including 0 but not including 1). When it is multiplied by N, it becomes between 0 and N, and then S is added, so it becomes between S and S+N. If you have two values (A and B) that you need random numbers between, then you can generate them using the following formulas. N=B-A+1 int (N*rand+A)
Subscribe to RSS - TI-82

Need Help?

We hope your visit has been a productive one. If you're having any problems, or would like to give some feedback, we'd love to hear from you.

For general help, questions, and suggestions, try our dedicated support forums.

If you need to contact the Course-Notes.Org web experience team, please use our contact form.

Need Notes?

While we strive to provide the most comprehensive notes for as many high school textbooks as possible, there are certainly going to be some that we miss. Drop us a note and let us know which textbooks you need. Be sure to include which edition of the textbook you are using! If we see enough demand, we'll do whatever we can to get those notes up on the site for you!