Search for notes by fellow students, in your own course and all over the country.
Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.
Title: 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 un
Description: 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) Notice it is B-A+1 not B-A. Everyone agrees there are 10 numbers between 1 and 10 (inclusive). But, if you take 10-1, you get 9, not 10. Also, in the formula above, replace the N by the actual number of different values. Since the calculator remembers the last formula put in, and evaluates it when you hit enter, to generate more random numbers, just hit enter again. Each time you hit enter, you will get another random number.
Description: 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) Notice it is B-A+1 not B-A. Everyone agrees there are 10 numbers between 1 and 10 (inclusive). But, if you take 10-1, you get 9, not 10. Also, in the formula above, replace the N by the actual number of different values. Since the calculator remembers the last formula put in, and evaluates it when you hit enter, to generate more random numbers, just hit enter again. Each time you hit enter, you will get another random number.
Document Preview
Extracts from the notes are below, to see the PDF you'll receive please use the links above
Generating Random Numbers- Stats Notes !
!
You can generate random numbers on the TI-82 calculator using the following sequence
...
int (N*rand+S)
INT is found under the MATH menu (math num 4)
...
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)
...
If you have two values (A and B) that you need random numbers between, then you can generate
them using the following formulas
...
Everyone agrees there are 10 numbers between 1 and 10 (inclusive)
...
Also, in the formula above, replace the N by the actual
number of different values
...
Each time you hit enter, you will get another
random number
Title: 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 un
Description: 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) Notice it is B-A+1 not B-A. Everyone agrees there are 10 numbers between 1 and 10 (inclusive). But, if you take 10-1, you get 9, not 10. Also, in the formula above, replace the N by the actual number of different values. Since the calculator remembers the last formula put in, and evaluates it when you hit enter, to generate more random numbers, just hit enter again. Each time you hit enter, you will get another random number.
Description: 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) Notice it is B-A+1 not B-A. Everyone agrees there are 10 numbers between 1 and 10 (inclusive). But, if you take 10-1, you get 9, not 10. Also, in the formula above, replace the N by the actual number of different values. Since the calculator remembers the last formula put in, and evaluates it when you hit enter, to generate more random numbers, just hit enter again. Each time you hit enter, you will get another random number.