0% found this document useful (0 votes)
76 views16 pages

Modeling Risk and Realities Week 4 Session 2 Slides

The document discusses using simulation to evaluate risk and reward for decisions under uncertainty. It covers modeling uncertainty, connecting random inputs to random outputs in a simulation, running simulations in Excel, and analyzing simulation outputs to evaluate alternative decisions. Specifically, it provides an example of using simulation to help a company decide how many floors of a new apartment building to allocate to regular versus luxury apartments when demand is uncertain.

Uploaded by

Muyiwacribd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
76 views16 pages

Modeling Risk and Realities Week 4 Session 2 Slides

The document discusses using simulation to evaluate risk and reward for decisions under uncertainty. It covers modeling uncertainty, connecting random inputs to random outputs in a simulation, running simulations in Excel, and analyzing simulation outputs to evaluate alternative decisions. Specifically, it provides an example of using simulation to help a company decide how many floors of a new apartment building to allocate to regular versus luxury apartments when demand is uncertain.

Uploaded by

Muyiwacribd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 16

Week 4: Balancing Risk and Reward Using Simulation

 Modeling Uncertainty: From Scenarios to Continuous Distributions

 Example: Designing a New Apartment Building

 Connecting Random Inputs and Random Outputs in a Simulation

 Setting up and Running a Simulation in Excel

 Analyzing and Interpreting Simulation Output

 Evaluating Alternative Decisions using Simulation Results

Modeling Risk and Realities, Week 4, Session 2


Week 4: Balancing Risk and Reward Using Simulation

 Modeling Uncertainty: From Scenarios to Continuous Distributions

 Example: Designing a New Apartment Building Session 1

 Connecting Random Inputs and Random Outputs in a Simulation

 Setting up and Running a Simulation in Excel

 Analyzing and Interpreting Simulation Output

 Evaluating Alternative Decisions using Simulation Results

Modeling Risk and Realities, Week 4, Session 2


Week 4: Balancing Risk and Reward Using Simulation

 Modeling Uncertainty: From Scenarios to Continuous Distributions

 Example: Designing a New Apartment Building

 Connecting Random Inputs and Random Outputs in a Simulation

 Setting up and Running a Simulation in Excel Session 2

 Analyzing and Interpreting Simulation Output

 Evaluating Alternative Decisions using Simulation Results

Modeling Risk and Realities, Week 4, Session 2


Example: Designing a New Apartment Building

 The Stargrove Development Corporation is planning a new apartment


building in Philadelphia

 The building will have two kinds of apartments, regular and luxury

 The building will have 15 floors, with the lower floors housing regular
apartments and higher floors – luxury apartments

 Each floor will contain only one kind of apartments – either regular or
luxury

 Each floor can house either 8 regular apartments or 4 luxury apartments

 Stargrove needs to decide how many floors to allocate to regular


apartments and how many floors to allocate to luxury apartments
Modeling Risk and Realities, Week 4, Session 2
Example: Designing a New Apartment Building

 Stargrove expects to complete construction within the next year, and


during that period, it plans to sell apartments to prospective buyers

 Stargrove expects to obtain a profit of PR = $500,000 for each regular


apartment it sells during next year, and a profit of PL = $900,000 for each
luxury apartment it sells during the next year

 If, at the end of the next year, there are unsold apartments, Stargrove will
sell all of them to a real estate investment company at a “salvage” profit
of SR = $100,000 for each remaining regular apartment and SL =
$150,000 for each luxury apartment

Modeling Risk and Realities, Week 4, Session 2


Example: Designing a New Apartment Building

 Stargrove analysts project that at the price levels that the company will
charge for the apartments, the total demand for regular apartments over
the next year will be normally distributed with a mean of 90 and a
standard deviation of 25, and the total demand for luxury apartments
over the next year will be normally distributed with a mean of 10 and a
standard deviation of 3. The demands for two apartment types will be
modeled as independent (non-correlated) random variables

 Normal random variables can take fractional and negative values, while
the demand values must be positive and integer. The values used for
estimating the reward and risk measures will take this into account

Modeling Risk and Realities, Week 4, Session 2


Simulation: Random Inputs and Random Outputs
 The profit (in $):
Π = 500,000*min(DR,R) + 900,000*min(DL,L) + 100,000*(R-min(DR,R)) +
150,000*(L-min(DL,L))

DR = IF(VR < 0, 0, INT(VR ))

Random Value VR

90

 Since the demand value DR must be positive and integer, we will “adjust” the
random value VR if necessary

Modeling Risk and Realities, Week 4, Session 2


Simulation: Random Inputs and Random Outputs
 The profit (in $):
Π = 500,000*min(DR,R) + 900,000*min(DL,L) + 100,000*(R-min(DR,R)) +
150,000*(L-min(DL,L))

DR = IF(VR < 0, 0, INT(VR ))

Random Value VR

90

 Since the demand value DR must be positive and integer, we will “adjust” the
random value VR if necessary

Modeling Risk and Realities, Week 4, Session 2


Simulation: Random Inputs and Random Outputs
 The profit (in $):
Π = 500,000*min(DR,R) + 900,000*min(DL,L) + 100,000*(R-min(DR,R)) +
150,000*(L-min(DL,L))
=IF(Condition, Choice1, Choice2)

DR = IF(VR < 0, 0, INT(VR ))

Random Value VR

90

 The IF function looks at the Condition: if the Condition is true, then the value of
IF is equal to Choice1; if the Condition is false, then the value of IF is equal to
Choice2
Modeling Risk and Realities, Week 4, Session 2
Simulation: Random Inputs and Random Outputs
 The profit (in $):
Π = 500,000*min(DR,R) + 900,000*min(DL,L) + 100,000*(R-min(DR,R)) +
150,000*(L-min(DL,L))
=IF(VR < 0, Choice1, Choice2)

DR = IF(VR < 0, 0, INT(VR ))

Random Value VR

90

 The IF function looks at the Condition: if the Condition is true, then the value of
IF is equal to Choice1; if the Condition is false, then the value of IF is equal to
Choice2
Modeling Risk and Realities, Week 4, Session 2
Simulation: Random Inputs and Random Outputs
 The profit (in $):
Π = 500,000*min(DR,R) + 900,000*min(DL,L) + 100,000*(R-min(DR,R)) +
150,000*(L-min(DL,L))
=IF(VR < 0, 0, Choice2)

DR = IF(VR < 0, 0, INT(VR ))

Random Value VR

90

 The IF function looks at the Condition: if the Condition is true, then the value of
IF is equal to Choice1; if the Condition is false, then the value of IF is equal to
Choice2
Modeling Risk and Realities, Week 4, Session 2
Simulation: Random Inputs and Random Outputs
 The profit (in $):
Π = 500,000*min(DR,R) + 900,000*min(DL,L) + 100,000*(R-min(DR,R)) +
150,000*(L-min(DL,L))
=IF(VR < 0, 0, INT(VR ))

DR = IF(VR < 0, 0, INT(VR ))

Random Value VR

90

 The IF function looks at the Condition: if the Condition is true, then the value of
IF is equal to Choice1; if the Condition is false, then the value of IF is equal to
Choice2
Modeling Risk and Realities, Week 4, Session 2
Simulation: Random Inputs and Random Outputs
 The profit (in $):
Π = 500,000*min(DR,R) + 900,000*min(DL,L) + 100,000*(R-min(DR,R)) +
150,000*(L-min(DL,L))
=IF(VR < 0, 0, INT(VR ))

DR = IF(VR < 0, 0, INT(VR ))

Random Value VR

90

 INT(VR) calculates the integer part of VR. For example, INT(92.9) = 92

Modeling Risk and Realities, Week 4, Session 2


Simulation: Random Inputs and Random Outputs
 The profit (in $):
Π = 500,000*min(DR,R) + 900,000*min(DL,L) + 100,000*(R-min(DR,R)) +
150,000*(L-min(DL,L))

DR = IF(VR < 0, 0, INT(VR ))

Random Value VR

90

Modeling Risk and Realities, Week 4, Session 2


Simulation: Random Inputs and Random Outputs
 The profit (in $):
Π = 500,000*min(DR,R) + 900,000*min(DL,L) + 100,000*(R-min(DR,R)) +
150,000*(L-min(DL,L))

DL = IF(VL < 0, 0, INT(VL ))

Random Value VL

Modeling Risk and Realities, Week 4, Session 2


Simulation: Random Inputs and Random Outputs
 The profit (in $):
Π = 500,000*min(DR,R) + 900,000*min(DL,L) + 100,000*(R-min(DR,R)) +
150,000*(L-min(DL,L))

 We can repeat this simulation step (called the “simulation run”) as many times
as necessary to generate the “sample distribution” of the “output” value Π

 Once this “sample distribution” of the random output is generated, it can be used
to calculate estimates for any reward and risk measures

 We will use Excel for running the simulation and for the analysis of the simulation
output

 Stargrove_0.xlsx

Modeling Risk and Realities, Week 4, Session 2

You might also like