🏠 Home

Quiz Questions

Question 1: The green represents success, red failure, what is the probability of reaching the success node starting at node 1?

Question 2: What is the probability of reaching the success node starting at node 2?

Question 3: What is the probability of reaching the success node starting at node 0?

Question 4: Consider the same situation but with n nodes pictured here, what is the probability of reaching the success node from node n?

Question 5: What is the probability of reaching the success node from node 0 in the new n walk?

Question 6: What is the probability of reaching the success node from node j? (Hint: use recursion)

Question 7: How many steps will it take to finish the walk starting from node j?

Question 8: What is the expected number of steps to reach the success node from node j in 1 attempt?

Question 9: Is the expected number of steps to succeed or fail the sum of the expectation to fail, and succeed?

Question 10: Explain the previous response