00:01
So you have a grid of 1 ,410 equally spaced circular plots over a map.
00:07
And we want to sample, we're going to sample 10 % of these plots.
00:15
And so that means you will need to take a sample size of 141.
00:19
And you want to use a technology or a table to obtain that.
00:23
We want to explain how we would do that.
00:25
And so i would use rand, int, and have.
00:33
It generate numbers from 1 to 1 ,410.
00:40
With each plot is assigned a unique number from 1 to 1 ,410.
01:02
And then we need to select 141.
01:08
And if there are repeats, we will skip those, skip the repeat, and get 141 unique values.
01:29
Now if you have on your calculator something that will generate with no repetition, that was best.
01:37
My calculator does not happen to have that.
01:40
So we're going to go back here and i'm going to generate 141 numbers.
01:45
And what i'm going to do is i'm going to put those values, i would put those numbers into a list.
01:53
And we only have to find the first three.
01:57
But i would put those numbers into a list by doing the following...