Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
|
|
@ -0,0 +1,13 @@
|
|||
func R(n,p) {
|
||||
n.of { 1.rand < p ? 1 : 0}.sum;
|
||||
}
|
||||
|
||||
const t = 100;
|
||||
say ('t=', t);
|
||||
|
||||
range(.1, .9, .2).each { |p|
|
||||
printf("p= %f, K(p)= %f\n", p, p*(1-p));
|
||||
[10, 100, 1000].each { |n|
|
||||
printf (" R(n, p)= %f\n", t.of { R(n, p) }.sum/n / t);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue