Let's look at my code in: HW6 Problem 1 and 2
First let's just get the TPM matrix, and call it P
Let's make the P^2 and P^3. There are many ways to do this!
You can extract elements of the matrix, if needed! Can you extract the (3,3) element? The 3rd row?, etc.
You can also perform many other matrix operations (see Examples)
Now, back to HW6 and more! Let's make the Q matrix, the T matrix, and the QT matrix. (Hint: These might be helpful for practice to check your answers.)
We also know from lecture that the from QT matrix will can calculate the probability of absorption.
The amount of money he has after each game is a Markov chain with a one-step transition probability matrix. There are 5 States where $0 is State 1, $10 is State 2, $20 is State 3, $30 is State 4 and $40 is State 5. This Markov Chain has two absorbing states, $0 is State 1 and $40 is State 5.
Let's look at my code in: game.r
(You can use this code for Homework!)
Return to Class Game Example:
Q1: What is the probability that the gambler quits in six (or fewer bets)?
Ans: Let's make the P matrix and then calculate P^6.
Beginning with $20, the gambler has the following probability of being in
an absorbing state at time 6: 0.616 + 0.274 = 0.899
So, the gambler has an 89% chance of placing six or fewer bets!
Q2: What is the expected number of bets he makes until he quits?
Ans: Using the Q matrix.
A gambler who begins with $20 will bet an average of 3.85 times before either loosing all his money or doubling it!
(A gambler who begins with $10 will bet an average of 2.54 times before he quits,
and a gambler who begins with $30 will bet on average 3.31 times before he quits)
Q3: What is the probability of absorption? What does this mean?
Here is the WOLFRAM Demonstration Project simulation
The description is below the simulation.
To simulate repeated game-playing, until one side or the other is ahead by a sufficient number,
Let's check out longrun
Let's look at the datacamp tutorial: here
Let's look at the code in: salesvelocity.r
Let's look at the code in: mcsim.r
What does this do?
If you copy and past the code you should have a trans and run
In order to run the run function you will need to:
> run()
We will need 3 functions to play poker. I have written these functions, so the help files are not in R, yet.
They are not too complicated. The 3 functions are:
There are 2 ways to get these functions for your very own.
> source("https://edoras.sdsu.edu/~babailey/stat550/cards.r")
> source("https://edoras.sdsu.edu/~babailey/stat550/rperm.r")
> source("https://edoras.sdsu.edu/~babailey/stat550/poker.r")
For practice, generate 1 hand of 5 card poker.
IMPORTANT If you want to reproduce your results, you will have to
set the seed of the random number generator.
There is an R function set.seed
To use it,
> set.seed(1)
> poker(draw=5, hand=1)
How can you draw the same hand again?
Let's play 10 poker hands:
> rhands <- matrix(NA,10,5)
> for (i in 1:10){ rhands[i,] <- poker(5) }
What's rhands?
Many tutorials available!
At the bottom of the page is how to get the "An Introduction to R"
Let's check out the Box-Muller Transformation!
Here is a reference: Wolfram's page
Here is a reference for Monte Carlo Methods: Monte Carlo Integration page
An AC unit has an exponential lifetime distribution with mean 4 years.
Use an effective annual rate of interest of 5%.
Let Zbar denote the present value random variable for the unit of payment made at the time point of failure.
Find E(Zbar). (the exact asnwer using integration by parts is 0.83670)
Let's use Monte Carlo Integration to solve this problem!
Let's take a look at a Lab from Dr. Hancock at Clark University
What expectation (integral) do we need estimate?
Here is my R code for this example. You can copy and paste the code into the R command window to run it.
We're going to follow Lab: Nonparametric Bootstrapping Example 1