Decision theory
- Dr. Jarad Niemi
STAT 544 - Iowa State University
March 7, 2017
Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 1 / 13
Decision theory Dr. Jarad Niemi STAT 544 - Iowa State University - - PowerPoint PPT Presentation
Decision theory Dr. Jarad Niemi STAT 544 - Iowa State University March 7, 2017 Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 1 / 13 Bayesian statistician Definition A Bayesian statistician is an individual who makes decisions
Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 1 / 13
Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 2 / 13
Bayesian decision theory
Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 3 / 13
Bayesian decision theory
1 2 3 4 −2 −1 1 2
theta Loss Decision
d_1 d_2 d_3
Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 4 / 13
Bayesian decision theory Parameter estimation
Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 5 / 13
Bayesian decision theory Choosing a hand
Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 6 / 13
Bayesian decision theory Choosing a hand
Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 7 / 13
Bayesian decision theory Choosing a hand
Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 8 / 13
Bayesian decision theory Choosing a hand
Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 9 / 13
Bayesian decision theory Choosing a hand
# p(theta) \propto N(theta;mu,sigma^2)I(1<= theta <= 400) mu=160; sigma=60; U=400
0.000 0.002 0.004 0.006 100 200 300 400
theta value fxn
expected_utility probability_mass_function
Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 10 / 13
Bayesian decision theory Choosing a hand
log_f = Vectorize(function(q, mu, sigma, U) { if (q<0 | q>U) return(-Inf) return(log(q) + dnorm(q, mu, sigma, log=TRUE)) }) # Evaluate all options log_expected_utility = log_f(1:U, mu=mu, sigma=sigma, U=U) which.max(log_expected_utility) # since we are using integers 1:U [1] 180 # Numerical optimization
$maximum [1] 180 $objective [1] 0.1241182 Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 11 / 13
Bayesian decision theory Choosing a hand
(mu+sqrt(mu^2+4*sigma^2))/2 [1] 180 Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 12 / 13
Bayesian decision theory Sequential decisions
Jarad Niemi (STAT544@ISU) Decision theory March 7, 2017 13 / 13