Question

Assume that, in one day, a stock price can go up by 1 point with probability...

Assume that, in one day, a stock price can go up by 1 point with probability 0.4, or down by 1 point with probability 0.3; the price can also remain the same. After 40 days, what is the probability that the stock price increases by more than 6.5 points?

Homework Answers

Answer #1

First , lest us start by defining the pmf:-

P(X =+1 ) = 0.4

P(X=0) = 0.3

P(X=-1) =0.3 , Where x is the increment

This problem will be very difficult to do by hand so I use R(simulation) to do the same.Here is the code.

s <- c(1,0,-1) # points of increment
p <- c(0.4,0.3,0.3) # their respective probabilities
d <- c() #an empty vector where we store the total increment over 40 days
for (i in 1:1000) { # simulate 1000 times
z <- sample(s,40,replace = T,prob = p) #sample from the above pmf for each day 40 times
d[i] <- sum(z) #each element save the total increase over 40 days
}

sum(d>6.5)/1000 # proportion of instances satisying the conndition

0.321 is the answer

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Assume that, in one day, a stock price can go up by 1 point with probability...
Assume that, in one day, a stock price can go up by 1 point with probability 0.4, or down by 1 point with probability 0.3; the price can also remain the same. After 40 days, what is the probability that the stock price increases by more than 6.5 points?
if a stock price today is 100. Every day it can go up or down by...
if a stock price today is 100. Every day it can go up or down by 10% with probability 0.5. What is this stock’s 4-days VaR with 5% confidence?
The current price of a stock is $35. It can either go up to $65 with...
The current price of a stock is $35. It can either go up to $65 with probability 0.5 or it can go down to $25 with probability 0.5. The risk free rate of interest is 6%. 1. What is the value of a call on the stock with an exercise price of $35 which expires in 1 year's time? 2. What is the value of a put with an exercise price of $30?
A stock price is currently priced at $65 and after one year it can go up...
A stock price is currently priced at $65 and after one year it can go up 30% or down 22%. The risk-free rate is 8% per annum with continuous compounding. The price of price of a one-year European call option with strike price of $70 is: Select one: a. $7.81 b. $7.65 c. $7.83 d. None of the answers provided is correct.
Consider a one-step binomial tree on stock with a current price of $100 that can go...
Consider a one-step binomial tree on stock with a current price of $100 that can go either up to $115 or down to $85 in 1 year. The stock does not pay dividend and interest rates are zero. Compute the payoff of a 1-year $100-strike European put option on the stock if the stock price ends up at the $115 node of the tree in 1 year.
Consider a one-step binomial tree on stock with a current price of $100 that can go...
Consider a one-step binomial tree on stock with a current price of $100 that can go either up to $115 or down to $85 in 1 year. The stock does not pay dividend and interest rates are zero. Use the tree to compute the value of a 1-year $100-strike European put option on the stock.
Consider a one-step binomial tree on stock with a current price of $100 that can go...
Consider a one-step binomial tree on stock with a current price of $100 that can go either up to $115 or down to $85 in 1 year. The stock does not pay dividend and interest rates are zero. Use the tree to compute the value of a 1-year $100-strike European put option on the stock.
Consider a one-step binomial tree on stock with a current price of $100 that can go...
Consider a one-step binomial tree on stock with a current price of $100 that can go either up to $115 or down to $85 in 1 year. The stock does not pay dividend and interest rates are zero. Use the tree to compute the delta of a 1-year $100-strike European put option on the stock.
Consider a one-step binomial tree on stock with a current price of $100 that can go...
Consider a one-step binomial tree on stock with a current price of $100 that can go either up to $115 or down to $85 in 1 year. The stock does not pay dividend and interest rates are zero. Use the tree to compute the value of a 1-year $100-strike European put option on the stock.
A simplified model for the movement of the price of a stock supposes that on each...
A simplified model for the movement of the price of a stock supposes that on each day the stocks price changes and it either moves up 1 unit with probability S or moves down 1 unit with probability 1 " S. The changes on different days are assumed to be independent. L. What is the probability that after 2 days the stock will be at its original price? LL. What is the probability that after 3 days the stocks price...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT