The DTREE Procedure

Example 7.6 Petroleum Distributor’s Decision Problem

The president of a petroleum distribution company currently faces a serious problem. His company supplies refined products to its customers under long-term contracts at guaranteed prices. Recently, the price for petroleum has risen substantially and his company will lose $450,000 this year because of its long-term contract with a particular customer. After a great deal of discussion with his legal advisers and his marketing staff, the president learns that the contract contains a clause that may be beneficial to his company. The clause states that when circumstances are beyond its control, the company may ask its customers to pay the prevailing market prices for up to 10% of the promised amount.

Several scenarios are possible if the clause is invoked. If the customer accepts the invocation of the clause and agrees to pay the higher price for the 10%, the company would turn a loss of $450,000 into a net profit of $600,000. If the customer does not accept the invocation, the customer may sue for damages or accept a settlement of $900,000 (resulting in a loss of $400,000) or simply decline to press the issue. In any case, the distribution company could then sell the 10% on the open market for an expected value of $500,000. However, the lawsuit would result in one of three possible outcomes: the company wins and pays no damages; the company loses and pays normal damages of $1,500,000; the company loses and pays double damages of $3,000,000. The lawyers also feel that this case might last three to five years if the customer decides to sue the company. The cost of the legal proceedings is estimated as $30,000 for the initial fee and $20,000 per year. The likelihood of the various outcomes are also assessed and reported as in Table 7.25. Suppose that the company decides to use a discount rate of 10% to determine the present value of future funds.

Table 7.25: Likelihood of the Outcomes in the Petroleum Distributor’s Decision

Uncertainty

Outcome

Probability

Customer’s Response

Accept the Invocation

0.1

 

Reject the Invocation

0.9

Customer’s Action

Press the Issue

0.1

   if the Invocation

Settle the Case

0.45

   is being Rejected

Sue for Damages

0.45

Case Last

3 Years

0.3

 

4 Years

0.4

 

5 Years

0.3

Lawsuit Result

Pay No Damages

0.15

 

Pay Normal Damages

0.65

 

Pay Double Damages

0.2


The structure for this decision problem is given in the STAGEIN= data set named Stage7.

/* -- create the STAGEIN= data set                     -- */
data Stage7;
   format _OUTCOM1 $14. _OUTCOM2 $14. ;
   input _STNAME_ $ _STTYPE_ $ _OUTCOM1 $ 
       _SUCC1 $ _OUTCOM2 $ _SUCC2 $ ;
   datalines;
Action    D   Invoking        Response  Not_Invoking    .
Response  C   Accept          .         Refuse          Lawsuit
Lawsuit   C   Press_Issue     .         Settle          .
.         .   Sue             Last      .               .
Last      C   3_Years         Result    4_Years         Result
.         .   5_Years         Result    .               .
Result    C   No_Damages      .         Normal_Damages  .
.         .   Double_Damages  .         .               .
;

The PROBIN= data set Prob7 contains the probability distributions for the chance nodes.

/* -- create the PROBIN= data set                      -- */
data Prob7;
   format _EVENT1_ _EVENT2_ $14.;
   input _EVENT1_ $ _PROB1_ _EVENT2_ $ _PROB2_ ;
   datalines;
Accept          0.1     Refuse          0.9
Press_Issue     0.1     Settle          0.45
Sue             0.45    .               .
3_Years         0.3     4_Years         0.4
5_Years         0.3     .               .
No_Damages      0.15    Normal_Damages  0.65
Double_Damages  0.20    .               .
;

The PAYOFFS= data set Payoff7 defines the payoffs for the various scenarios.

   /* -- create the PAYOFFS= data set            -- */
data Payoff7(drop=i j k D PCOST);
   length _ACTION_ _STATE1-_STATE4 $16;

      /* possible outcomes for the case last        */
   array YEARS{3}   $16. _TEMPORARY_ ('3_Years',
                                      '4_Years',
                                      '5_Years' );

      /* numerical values for the case last  */
   array Y{3}            _TEMPORARY_ (3, 4, 5);

      /* possible outcomes for the size of judgment */
   array DAMAGES{3} $16. _TEMPORARY_ ('No_Damages',
                                      'Normal_Damages',
                                      'Double_Damages' );

      /* numerical values for the size of judgment  */
   array C{3}            _TEMPORARY_ (0, 1500, 3000);

   D=0.1;                          /* discount rate */

      /* payoff for the scenario which the          */
      /* 10 percent clause is not invoked           */
   _ACTION_='Not_Invoking';   _VALUE_=-450;   output;

      /* the clause is invoked */
   _ACTION_='Invoking';

      /* payoffs for scenarios which the clause is  */
      /* invoked and the customer accepts the       */
      /* invocation                                 */
   _STATE1='Accept';           _VALUE_=600;   output;

      /* the customer refuses the invocation        */
   _STATE1='Refuse';

      /* payoffs for scenarios which the clause is  */
      /* invoked and the customer refuses the       */
      /* invocation but decline to press the issue  */
   _STATE2='Press_Issue';   _VALUE_=500;      output;

      /* payoffs for scenarios which the clause is  */
      /* invoked and the customer refuses the       */
      /* invocation but willing to settle out of    */
      /* court for 900K                             */
   _STATE2='Settle';        _VALUE_=500-900;   output;

      /* the customer will sue for damages          */
   _STATE2='Sue';
   do i=1 to 3;
      _STATE3=YEARS{i};

         /* determine the cost of proceedings       */
      PCOST=30;  /* initial cost of the proceedings */

         /* additional cost for every years in      */
         /* in present value                        */
      do k=1 to Y{i};
         PCOST=PCOST+(20/((1+D)**k));
      end;

         /* loop for all poss. of the lawsuit result */
      do j=1 to 3;
         _STATE4=DAMAGES{j}; /* the damage have to paid */

            /* compute the net return in present value  */
         _VALUE_=500-PCOST-(C{j}/((1+D)**Y{i}));

            /* output an observation for the payoffs */
            /* of this scenario                      */
         output;
      end;
   end;

run;

   /* -- print the payoff table                      -- */
title "Petroleum Distributor's Decision";
title3 "Payoff Table";

proc print;
run;

The payoff table of this problem is displayed in Output 7.6.1.

Output 7.6.1: Payoffs for the Petroleum Distributor’s Problem

Petroleum Distributor's Decision
 
Payoff Table

Obs _ACTION_ _STATE1 _STATE2 _STATE3 _STATE4 _VALUE_
1 Not_Invoking         -450.00
2 Invoking Accept       600.00
3 Invoking Refuse Press_Issue     500.00
4 Invoking Refuse Settle     -400.00
5 Invoking Refuse Sue 3_Years No_Damages 420.26
6 Invoking Refuse Sue 3_Years Normal_Damages -706.71
7 Invoking Refuse Sue 3_Years Double_Damages -1833.68
8 Invoking Refuse Sue 4_Years No_Damages 406.60
9 Invoking Refuse Sue 4_Years Normal_Damages -617.92
10 Invoking Refuse Sue 4_Years Double_Damages -1642.44
11 Invoking Refuse Sue 5_Years No_Damages 394.18
12 Invoking Refuse Sue 5_Years Normal_Damages -537.20
13 Invoking Refuse Sue 5_Years Double_Damages -1468.58


Note that the payoffs of the various scenarios in Output 7.6.1 are in thousands of dollars and are net present values (NPV) (Baird 1989). For example, the payoff for the following scenario invoking the clause; the customer refuses to accept this and sues for damages; the case lasts four years and the petroleum distribution company loses and pays double damages is calculated as

$\displaystyle  \mbox{\textrm{Payoff}}  $
$\displaystyle  =  $
$\displaystyle  500 - \mbox{\textrm{NPV~ of~ proceedings~ cost}}  $
$\displaystyle  $
$\displaystyle  $
$\displaystyle  \mbox{~ ~ ~ ~ ~ ~ } - \mbox{\textrm{NPV~ of~ damages~ of~ 3,000,000}}  $
$\displaystyle  $
$\displaystyle  =  $
$\displaystyle  -1642.44  $

where

\[  \mr {NPV\  of\  proceedings\  cost} = 30 + \sum _{k=1}^4 20/(1+0.1)^ k  \]

and

\[  \mr {NPV\  of\  damages\  of\  3,000,000} = 3000 / (1+0.1)^4  \]

This is because the company can sell the 10% for $500,000 immediately and pay the $3,000,000 damages four years from now. The net present value of the proceedings is determined by paying the $30,000 initial fee now and a fee of $20,000 after every year up to four years. The value of 0.1 is the discount rate used.

The following statements evaluate the problem and plot the optimal solution.

   /* -- define graphics options                         -- */
goptions colors=(green red blue);
goptions hsize=8 in vsize=8.4 in;

   /* -- define title                                    -- */
title h=2.5 "Petroleum Distributor's Decision";

   /* -- PROC DTREE statements                           -- */
proc dtree stagein=Stage7 probin=Prob7 payoffs=Payoff7;
   evaluate / summary;
   treeplot / graphics compress nolg name="dt6p1" ftext='Cumberland AMT'
           ybetween=1 cell lwidth=2 lwidthb=3 hsymbol=3;
quit;

The optimal decision summary in Output 7.6.2 suggests that the president should invoke the 10% clause because it would turn a loss of $450,000 into an expected loss of $329,000 in present value.

Output 7.6.2: Summary of the Petroleum Distributor’s Decision

Petroleum Distributor's Decision

The DTREE Procedure
Optimal Decision Summary

Order of Stages
Stage Type
Action Decision
Response Chance
Lawsuit Chance
Last Chance
Result Chance
_ENDST_ End

Decision Parameters
Decision Criterion: Maximize Expected Value (MAXEV)
Optimal Decision Yields: -329

Optimal Decision Policy
Up to Stage Action
Alternatives or Outcomes Cumulative Reward Evaluating
Value
Invoking   -329*
Not_Invoking   -450


The decision tree for this problem is shown in Output 7.6.3. There you can find the expected value of each scenario.

Output 7.6.3: Decision Tree for the Petroleum Distributor’s Decision

Decision Tree for the Petroleum Distributor’s Decision


The president feels that the estimated likelihood of lawsuit outcomes is fairly reliable. However, the assessment of the likelihood of the customer’s response and reaction is extremely difficult to estimate. Because of this, the president would like to keep the analysis as general as possible. His staff suggests using the symbols p and q to represent the probability that the customer will accept the invocation and the probability that the customer will decline to press the issue if he refuses the invocation, respectively. The probabilities of the other possible outcomes about the customer’s response and reaction to the invocation of the 10% clause are listed in Table 7.26.

Table 7.26: Probabilities of the Petroleum Distributor’s Decision

Uncertainty

Outcome

Probability

Customer’s Response

Accept the Invocation

p

 

Reject the Invocation

1 - p

Customer’s Action

Press the Issue

q

   if the Invocation

Settle the Case

$(1-q)/2$

   is being Rejected

Sue for Damages

$(1-q)/2$


Now from the decision tree shown in Output 7.6.3, the expected value of the outcome 'Refuse' is

$\displaystyle  \textrm{EV}  $
$\displaystyle  =  $
$\displaystyle  500q - 400(1 - q) / 2 - 672(1 - q) / 2  $
$\displaystyle  $
$\displaystyle  =  $
$\displaystyle  500q - 200 + 200q - 336 + 336q  $
$\displaystyle  $
$\displaystyle  =  $
$\displaystyle  1036q - 536  $

Hence, the expected payoff if the petroleum distribution company invokes the clause is

$\displaystyle  \textrm{EV}  $
$\displaystyle  =  $
$\displaystyle  600p + (1036q - 536)(1 - p)  $
$\displaystyle  $
$\displaystyle  =  $
$\displaystyle  1136p + 1036q - 1036pq -536  $
$\displaystyle  $
$\displaystyle  =  $
$\displaystyle  1136p + 1036(1 - p)q -536  $

Therefore, the president should invoke the 10% clause if

\[  1136p + 1036(1 - p)q -536 > -450  \]

or

\[  q > \frac{86 - 1136p}{1036 - 1036p}  \]

This result is depicted in Output 7.6.4, which is produced by the following statements:

   /* -- create data set for decision diagram        -- */
data Data7(drop=i);
   P=0.0;                  /* initialize P */

      /* loop for all possible values of P */
   do i=1 to 21;

         /* determine the corresponding Q  */
      Q=(86-(1136*P))/(1036*(1.0-P));
      if Q < 0.0 then Q=0.0;

         /* output this data point */
      output;

         /* set next possible value of P   */
      P=P+0.005;
   end;

run;

   /* create the ANNOTATE= data set for labels of  */
   /* decision diagram                             */
data label;
   length FUNCTION STYLE COLOR $8;
   length XSYS YSYS            $1;
   length WHEN POSITION        $1;
   length X Y                   8;
   length SIZE ROTATE           8;

   WHEN = 'A';
   POSITION='0';
   XSYS='2';
   YSYS='2';
   input FUNCTION $ X Y STYLE $ SIZE COLOR $
         ROTATE TEXT $ & 16.;
   datalines;
label   0.01    0.04    centx   2       black   .    Do Not
label   0.01    0.03    centx   2       black   .    Invoke
label   0.01    0.02    centx   2       black   .    The Clause
label   0.06    0.06    centx   2       black   .    Invoke The
label   0.06    0.05    centx   2       black   .    Clause
;

   /* -- define symbol characteristics for boundary  -- */
symbol1 i=joint v=NONE l=1 ci=black;

   /* -- define pattern for area fill                -- */
pattern1 value=msolid color=cyan;
pattern2 value=msolid color=green;

   /* -- define axis characteristics                 -- */
axis1 label=('Pr(Accept the Invocation)')
      order=(0 to 0.1 by 0.01) minor=none;
axis2 label=(angle=90 'Pr(Press the Issue)')
      order=(0 to 0.1 by 0.01) minor=none;

   /* -- plot decision diagram                       -- */
title h=2.5 "Petroleum Distributor's Decision";
proc gplot data=Data7 ;
   plot Q*P=1 / haxis=axis1
                vaxis=axis2
                annotate=label
                name="dt6p2"
                frame
                areas=2;
run;
quit;

Output 7.6.4: Decision Diagram for the Petroleum Distributor’s Problem

Decision Diagram for the Petroleum Distributor’s Problem


The decision diagram in Output 7.6.4 is an analysis of the sensitivity of the solution to the probabilities that the customer will accept the invocation and that the customer will decline to press the issue. He should invoke the clause if he feels the customer’s probabilities of outcomes 'Accept' and 'Press_Issue', p and q, are located in the upper-right area marked as 'Invoke The Clause' in Output 7.6.4 and should not invoke the clause otherwise. Note that the values p = 0.1 and q = 0.1 used in this example are located on the upper right corner on the diagram.