Tagged Questions
The coin-flipping tag has no wiki summary.
10
votes
10answers
2k views
ACM Problem: Coin-Flipping, help me identify the type of problem this is
I'm practicing for the upcoming ACM programming competition in a week and I've gotten stumped on this programming problem.
The problem is as follows:
You have a puzzle consisting of a square grid ...
9
votes
4answers
3k views
How do I simulate flip of biased coin in python?
In unbiased coin flip H or T occurs 50% of times.
But I want to simulate coin which gives H with probability 'p' and T with probability '(1-p)'.
something like this:
def flip(p):
'''this ...
4
votes
7answers
262 views
Python code for the coin toss issues
I've been writing a program in python that simulates 100 coin tosses and gives the total number of tosses. The problem is that I also want to print the total number of heads and tails.
Here's my ...
3
votes
4answers
463 views
Count number of alternations in a coin flip sequence
I have a sequence of ones and zeros and I would like to count the number of alternations. e.g.
x <- rbinom(10, 1, 1/2)
> x
[1] 0 0 1 1 1 1 1 0 1 0
Thus I would like to count (in R) how many ...
2
votes
3answers
103 views
Nested loops with C++ coin toss
I have to write a program that runs a loop for a coin toss. I am supported to enter a number into the console and have it run a loop of the coin toss for that many times. I need to use nested loops. I ...
1
vote
2answers
67 views
Function to output probability in PHP
I'm trying to find a function that takes a number and outputs the expected results as follows:
if input=1
then output should be Array{'0','1'}
if input=2
then output should be ...
1
vote
3answers
295 views
Flip a coin problem
I have been playing around and wrote this little piece of code. I am trying to flip a coin defined number of times and then count how many tails and heads I am getting. So here it is:
private void ...
1
vote
9answers
1k views
Do you have a better idea to simulate coin flip?
Right now i have
return 'Heads' if Math.random() < 0.5
Is there a better way to do this?
Thanks
edit: please ignore the return value and "better" means exact 50-50 probability.
0
votes
5answers
82 views
coin flip generator [closed]
what do you guys think will be the outcome if a program is coded to simulate a coin flip where there is a 50% of the coin landing either heads or tails when the results are looked at; Mainly will ...
0
votes
0answers
25 views
build a model to analyze the randomness of coin dropping in different height
suppose we drop a coin at a certain height: if we drop it in a very low height carefully, the result would most likely be the same as the way we drop it - if we drop it as Head, we will get Head ...
0
votes
1answer
479 views
How to use coin-slider plugin dynamically?
i have used coin slider for my application.My application supported for all resolution .But if i wants to use coin-slider i have to be set width or else it takes its default width 585.But according to ...
0
votes
1answer
344 views
Coin Toss Plot similar to Feller
From Feller (1950) An Introduction to Probability Theory:
A path of length n can be interpreted as the record of an ideal experiment consisting of n successive tosses of a coin. If +1 stands for ...
0
votes
6answers
1k views
Simple recursion problem
I'm taking my first steps into recursion and dynamic programming and have a question about forming subproblems to model the recursion.
Problem:
How many different ways are there to
flip a ...