Hi Pablo,
I think you need a couple things. First for random-normal, you can
read and see examples here:
https://ccl.northwestern.edu/netlogo/bind/primitive/random-normal.html
Note that it takes 2 parameters (a mean and standard deviation)
where random-float only takes 1 parameter (the maximum bound).
Next, by "number of each turtle", maybe you mean the "who" ID?
That's described here:
http://ccl.northwestern.edu/netlogo/docs/dict/who.html
With "who", the first turtle created is 0, the second is 1, etc.
Assuming that's what you mean, then you need to specify what you
mean by "using the number of each turtle as an input". We could use
who for either the mean, or the standard deviation, or even
both:
This uses
who for the mean with a fixed standard deviation:
ask turtles [ show random-normal who 1 ]
This uses
who for the standard deviation with a fixed mean:
ask turtles [ show random-normal 1 who ]
This uses
who for both:
ask turtles [ show random-normal who who ]
Though maybe you intend to use a population-level value from a
number from the turtles, so something like this uses the mean of the
IDs as the "mean" parameter (fixed SD = 1):
show random-normal mean [who] of turtles 1
And of course where we've used
who, you can use any other
variable the turtles own (xcor, or some other variable defined in a
"turtles-own" section.
I hope that helps!
Dale