• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Roll a Die

Joined
12/14/10
Messages
27
Points
13
Got this problem in Max Dama hand out. Could not figure out a solution.
"Roll a die repeatedly. Say that you stop when the sum goes above 63. What is the probability that the second to last value was X. Make a market on this probability. Ie what is your 90 percent confi dence interval."
 
T=Terminal, set P(T|62)= P(62)= x, then for value 61, P(T|61)=5/6P(61); 1/6P(61)=P(62), so P(T|61)=5x.
For value 60, P(T|60)= 4/6P(60); 2/6P(60) = P(61)+P(62) = x+6x=7x, so P(T|60)= 14x.
continue this process to get value up to P(T|57) in terms of x, then addind them equal to 1, solve for x, then we are done.
 
Back
Top