Use the lines from a random number table to select numbers to use in each problem. Choose 5 families to survey from a phone directory page with 950 names. 11873 57196 32209 67663 07990 12288 59245 83638 23642 61715
ive got not a clue what i need to do
Well f you don't know what to do how do we know how to help? We have no idea how to help when we don't know what the problem is asking...
Yeah, kinda unsure what the question is.
the question wants u pick "5 names" randomly from "950 names"
and it wants u use the given "random number table"
here is a screenshot of my book
this is the random number table :- 11873 57196 32209 67663 07990 12288 59245 83638 23642 61715
How do you use lines from a random table?
no idea
I think it means numbers within the same line like this message
assign "3 digits" for each name in the book
\(\color{red}{118}\)73 57196 32209 67663 07990 12288 59245 83638 23642 61715
this makes no sense to me at all :/
u wud pick the 118th name first
next, u wud pick the 735th name
next, 719
next, 632
lastly 209
Where are you getting the positions of the names?
Oh!
using the given random number table, u wud pick below names :- 1) 118 th name 2) 735 th name 3) 719 th name 4) 632 th name 5) 209 th name
every three digits.
yup ! cuz there are 950 names, we need 3 digits at the minimum
this is called "random assignment"
using the randome table, we can choose some method to assign the subjects to treatments randomly
But where does the 950 come from? Is it the total possible combinations? I doubt it since factorials grow huge.
there are a total of 950 names in the page right ?
u need some way to pick 5 ppl randomly from this group of 950 names
thats where the table generated using "random sequence generator" is handy
since the sequence of digits were random, u are sure that u wud be picking names randomly as well
Weird question no?
uhm may be, but i have seen these before lol
they cover these in statistics and data analysis
In CS you would simply use randrange (1,950)
Gives you a random number from. 1-950
yup ! that table was generated using the same funciton may be
Thanks a lot ganeshie
np :) i think, since the table was sequence of "digits" it must have been generated using randrange(0, 9), and calling it multiple times for each digit...
Agreed and for every five digits put a white space
ahh that whitespace is just for readability..
ive read it somwhere lol, im not sure though :)
Thanks :)
ok can we make this into simpler terms for the slower ones ie me lol please
i think i kinda understand what @ganeshie8 was talking about
I think they are teaching you how to randomly select a sample. In the old days, they used tables... now they would use a computer to generate the random numbers. So they seem to be teaching an old method... like learning how to multiply using a slide rule...
i just dont see why every 3 digits is a new name....
The table is a list of random numbers. If you looked at any 1 digit, it would be any digit from 0 to 9 if you had 10 things and wanted to choose one of them randomly you would use the first digit in the table. But if you have 100 things, and you used only the first digit in the table you will end up picking only from the first 10 out of that 100
in other words, if you had 100 things, and used the first digit from the table, you would not be treating all 100 fairly... you would never choose any entry past the first 10 in your list. however, if you picked *2* adjacent digits, they could be any number from 00 up to 99 that is 100 numbers. you choose two adjacent digits, read it as a 2 digit number, and use it to choose that item in your list. Example: your two digits are 33 you would choose the item labeled 33 in your list.
so because there are 950 entries 3 digits are used so i have to use 3 digits from each of the numbers?
yes. if you use 3 digits grouped together, you could get any combination from 000 to 999 That is 1000 numbers. if you used 2 digits, you would have 00 to 99, which is 100 numbers. You would never pick item 101 in your list (or any item past item 101) if you only used 2 digits.
oh ok that makes more sense now :) thanks @phi
notice that if you get the 3 digit combo 956 (for example) you would toss it, because you do not have 956 names. Just ignore that combination, and to on to the next 3 digits.
Sorry about the confusion @highschoolmom2010 :L I guess I should try understanding your question better.
Join our real-time social learning platform and learn together with your friends!