st.petersburg paradox in python
$begingroup$
I have been trying to do the St.Petersburg paradox( the player wins 2 dollars if tail appears on the first toss, 4 dollars if heads appear on the first toss and tails on the second, 8 dollars if heads appear on the first two tosses and tails on the third, and so on.) in python.
But I cannot do it correctly. I want to know if we flip the coin 100 times, how much money we will get.
import random
def St(number):
l=
money=0
signs=["head","tail"]
for i in range(number):
choices=random.choice(signs)
while choices=="head":
l.append(2)
if choices=="tail":
money=money+sum(l)+2
del l[:]
result=round(money/number,3)
return(money,result)
print(St(100))
but it doesnt give any results or just 2
i tried in another way but its the same:
import random
def St(number):
l=
money=0
signs=["head","tail"]
for i in range(number):
choices=random.choice(signs)
while choices=="head":
l.append(choices)
if choices=="tail":
money=money+2**(len(l)+1)
del l[:]
result=round(money/number,3)
return(money,result)
print(St(100))
Can you help me?
probability random python
$endgroup$
add a comment |
$begingroup$
I have been trying to do the St.Petersburg paradox( the player wins 2 dollars if tail appears on the first toss, 4 dollars if heads appear on the first toss and tails on the second, 8 dollars if heads appear on the first two tosses and tails on the third, and so on.) in python.
But I cannot do it correctly. I want to know if we flip the coin 100 times, how much money we will get.
import random
def St(number):
l=
money=0
signs=["head","tail"]
for i in range(number):
choices=random.choice(signs)
while choices=="head":
l.append(2)
if choices=="tail":
money=money+sum(l)+2
del l[:]
result=round(money/number,3)
return(money,result)
print(St(100))
but it doesnt give any results or just 2
i tried in another way but its the same:
import random
def St(number):
l=
money=0
signs=["head","tail"]
for i in range(number):
choices=random.choice(signs)
while choices=="head":
l.append(choices)
if choices=="tail":
money=money+2**(len(l)+1)
del l[:]
result=round(money/number,3)
return(money,result)
print(St(100))
Can you help me?
probability random python
$endgroup$
$begingroup$
The while loop you've written is an infinite loop. (Have you tried stepping through your code line by line using a debugger? That can help a lot to understand what's going on in your code.)
$endgroup$
– littleO
Dec 1 '18 at 22:25
$begingroup$
Sorry I am not familiar with debugger. Can you explain?
$endgroup$
– Egshiglen Bat-Erdene
Dec 2 '18 at 9:41
$begingroup$
It's possible to use a debugger to step through your code line by line and look closely at every step. This can be very helpful, especially when you're learning to code, to understand what your code is doing. I recommend googling to learn how to use a debugger and trying it out. Python has a debugger called pdb that you can use. Alternatively, if you're using the Spyder IDE (which comes with the Anaconda Python distribution), Spyder makes it easy to put a breakpoint in your code and debug it.
$endgroup$
– littleO
Dec 2 '18 at 9:54
$begingroup$
Thank you for explaining
$endgroup$
– Egshiglen Bat-Erdene
Dec 2 '18 at 15:41
add a comment |
$begingroup$
I have been trying to do the St.Petersburg paradox( the player wins 2 dollars if tail appears on the first toss, 4 dollars if heads appear on the first toss and tails on the second, 8 dollars if heads appear on the first two tosses and tails on the third, and so on.) in python.
But I cannot do it correctly. I want to know if we flip the coin 100 times, how much money we will get.
import random
def St(number):
l=
money=0
signs=["head","tail"]
for i in range(number):
choices=random.choice(signs)
while choices=="head":
l.append(2)
if choices=="tail":
money=money+sum(l)+2
del l[:]
result=round(money/number,3)
return(money,result)
print(St(100))
but it doesnt give any results or just 2
i tried in another way but its the same:
import random
def St(number):
l=
money=0
signs=["head","tail"]
for i in range(number):
choices=random.choice(signs)
while choices=="head":
l.append(choices)
if choices=="tail":
money=money+2**(len(l)+1)
del l[:]
result=round(money/number,3)
return(money,result)
print(St(100))
Can you help me?
probability random python
$endgroup$
I have been trying to do the St.Petersburg paradox( the player wins 2 dollars if tail appears on the first toss, 4 dollars if heads appear on the first toss and tails on the second, 8 dollars if heads appear on the first two tosses and tails on the third, and so on.) in python.
But I cannot do it correctly. I want to know if we flip the coin 100 times, how much money we will get.
import random
def St(number):
l=
money=0
signs=["head","tail"]
for i in range(number):
choices=random.choice(signs)
while choices=="head":
l.append(2)
if choices=="tail":
money=money+sum(l)+2
del l[:]
result=round(money/number,3)
return(money,result)
print(St(100))
but it doesnt give any results or just 2
i tried in another way but its the same:
import random
def St(number):
l=
money=0
signs=["head","tail"]
for i in range(number):
choices=random.choice(signs)
while choices=="head":
l.append(choices)
if choices=="tail":
money=money+2**(len(l)+1)
del l[:]
result=round(money/number,3)
return(money,result)
print(St(100))
Can you help me?
probability random python
probability random python
asked Dec 1 '18 at 21:39
Egshiglen Bat-ErdeneEgshiglen Bat-Erdene
1
1
$begingroup$
The while loop you've written is an infinite loop. (Have you tried stepping through your code line by line using a debugger? That can help a lot to understand what's going on in your code.)
$endgroup$
– littleO
Dec 1 '18 at 22:25
$begingroup$
Sorry I am not familiar with debugger. Can you explain?
$endgroup$
– Egshiglen Bat-Erdene
Dec 2 '18 at 9:41
$begingroup$
It's possible to use a debugger to step through your code line by line and look closely at every step. This can be very helpful, especially when you're learning to code, to understand what your code is doing. I recommend googling to learn how to use a debugger and trying it out. Python has a debugger called pdb that you can use. Alternatively, if you're using the Spyder IDE (which comes with the Anaconda Python distribution), Spyder makes it easy to put a breakpoint in your code and debug it.
$endgroup$
– littleO
Dec 2 '18 at 9:54
$begingroup$
Thank you for explaining
$endgroup$
– Egshiglen Bat-Erdene
Dec 2 '18 at 15:41
add a comment |
$begingroup$
The while loop you've written is an infinite loop. (Have you tried stepping through your code line by line using a debugger? That can help a lot to understand what's going on in your code.)
$endgroup$
– littleO
Dec 1 '18 at 22:25
$begingroup$
Sorry I am not familiar with debugger. Can you explain?
$endgroup$
– Egshiglen Bat-Erdene
Dec 2 '18 at 9:41
$begingroup$
It's possible to use a debugger to step through your code line by line and look closely at every step. This can be very helpful, especially when you're learning to code, to understand what your code is doing. I recommend googling to learn how to use a debugger and trying it out. Python has a debugger called pdb that you can use. Alternatively, if you're using the Spyder IDE (which comes with the Anaconda Python distribution), Spyder makes it easy to put a breakpoint in your code and debug it.
$endgroup$
– littleO
Dec 2 '18 at 9:54
$begingroup$
Thank you for explaining
$endgroup$
– Egshiglen Bat-Erdene
Dec 2 '18 at 15:41
$begingroup$
The while loop you've written is an infinite loop. (Have you tried stepping through your code line by line using a debugger? That can help a lot to understand what's going on in your code.)
$endgroup$
– littleO
Dec 1 '18 at 22:25
$begingroup$
The while loop you've written is an infinite loop. (Have you tried stepping through your code line by line using a debugger? That can help a lot to understand what's going on in your code.)
$endgroup$
– littleO
Dec 1 '18 at 22:25
$begingroup$
Sorry I am not familiar with debugger. Can you explain?
$endgroup$
– Egshiglen Bat-Erdene
Dec 2 '18 at 9:41
$begingroup$
Sorry I am not familiar with debugger. Can you explain?
$endgroup$
– Egshiglen Bat-Erdene
Dec 2 '18 at 9:41
$begingroup$
It's possible to use a debugger to step through your code line by line and look closely at every step. This can be very helpful, especially when you're learning to code, to understand what your code is doing. I recommend googling to learn how to use a debugger and trying it out. Python has a debugger called pdb that you can use. Alternatively, if you're using the Spyder IDE (which comes with the Anaconda Python distribution), Spyder makes it easy to put a breakpoint in your code and debug it.
$endgroup$
– littleO
Dec 2 '18 at 9:54
$begingroup$
It's possible to use a debugger to step through your code line by line and look closely at every step. This can be very helpful, especially when you're learning to code, to understand what your code is doing. I recommend googling to learn how to use a debugger and trying it out. Python has a debugger called pdb that you can use. Alternatively, if you're using the Spyder IDE (which comes with the Anaconda Python distribution), Spyder makes it easy to put a breakpoint in your code and debug it.
$endgroup$
– littleO
Dec 2 '18 at 9:54
$begingroup$
Thank you for explaining
$endgroup$
– Egshiglen Bat-Erdene
Dec 2 '18 at 15:41
$begingroup$
Thank you for explaining
$endgroup$
– Egshiglen Bat-Erdene
Dec 2 '18 at 15:41
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
In Python, there's usually an easy way. Here's what you could do, using the $U(0,,1)$-sampling numpy.random.random
:
from numpy.random import random
def St(number):
result = 2
for i in range(number):
if random() < 0.5: return result
result *= 2
return result
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3021867%2fst-petersburg-paradox-in-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
In Python, there's usually an easy way. Here's what you could do, using the $U(0,,1)$-sampling numpy.random.random
:
from numpy.random import random
def St(number):
result = 2
for i in range(number):
if random() < 0.5: return result
result *= 2
return result
$endgroup$
add a comment |
$begingroup$
In Python, there's usually an easy way. Here's what you could do, using the $U(0,,1)$-sampling numpy.random.random
:
from numpy.random import random
def St(number):
result = 2
for i in range(number):
if random() < 0.5: return result
result *= 2
return result
$endgroup$
add a comment |
$begingroup$
In Python, there's usually an easy way. Here's what you could do, using the $U(0,,1)$-sampling numpy.random.random
:
from numpy.random import random
def St(number):
result = 2
for i in range(number):
if random() < 0.5: return result
result *= 2
return result
$endgroup$
In Python, there's usually an easy way. Here's what you could do, using the $U(0,,1)$-sampling numpy.random.random
:
from numpy.random import random
def St(number):
result = 2
for i in range(number):
if random() < 0.5: return result
result *= 2
return result
answered Dec 1 '18 at 22:06
J.G.J.G.
24.1k22539
24.1k22539
add a comment |
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3021867%2fst-petersburg-paradox-in-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
$begingroup$
The while loop you've written is an infinite loop. (Have you tried stepping through your code line by line using a debugger? That can help a lot to understand what's going on in your code.)
$endgroup$
– littleO
Dec 1 '18 at 22:25
$begingroup$
Sorry I am not familiar with debugger. Can you explain?
$endgroup$
– Egshiglen Bat-Erdene
Dec 2 '18 at 9:41
$begingroup$
It's possible to use a debugger to step through your code line by line and look closely at every step. This can be very helpful, especially when you're learning to code, to understand what your code is doing. I recommend googling to learn how to use a debugger and trying it out. Python has a debugger called pdb that you can use. Alternatively, if you're using the Spyder IDE (which comes with the Anaconda Python distribution), Spyder makes it easy to put a breakpoint in your code and debug it.
$endgroup$
– littleO
Dec 2 '18 at 9:54
$begingroup$
Thank you for explaining
$endgroup$
– Egshiglen Bat-Erdene
Dec 2 '18 at 15:41