开发者

Count the number of heads per set in Mathematica

开发者 https://www.devze.com 2023-02-21 07:33 出处:网络
First of all, thank you for all your responces. I am doing my best to keep up with all the suggestions. However I\'m trying to stay on track.

First of all, thank you for all your responces. I am doing my best to keep up with all the suggestions. However I'm trying to stay on track.

So now I have

s = Table[RandomChoice[{Heads, Tails}, 2 i + 1], {i, 10}];

Next, I want to count the num开发者_StackOverflow中文版ber of "Heads" that occur for each "i".

I can do this for one case....say 5,

n = RandomChoice[{Heads, Tails}, 5];
n1 = Count[n, Heads];

But I am having trouble expanding this....

Thanks again.

p.s. what are down votes? Too easy?


Map (/@) the function of counting heads in a list:

Count[#, Heads]&

to each sublist in s. Hence:

Count[#, Heads]& /@ s


If you are doing a simulation of coin flips, I believe that BinomialDistribution is what you want.

Histogram[
  Count[#, "Heads"] & /@
    Table[RandomChoice[{"Heads", "Tails"}, 9], {25000}]
]

Count the number of heads per set in Mathematica

BarChart@Table[PDF[BinomialDistribution[9, 1/2], k], {k, 0, 9}]

Count the number of heads per set in Mathematica

By the way, the symbol Heads is a built-in function and should probably not be used the way you are using it.

0

精彩评论

暂无评论...
验证码 换一张
取 消