Last updated 2018-07-25 by Muchen He (44638154)

Assignment 3Problem 1DescriptionAnalysisSimulationMinimum and MaximumProblem 2DescriptionAnalysisBonus

Assignment 3

Image result for pablo escobar narcos sitting Copyright 2015 Netflix

Problem 1

Description

Through a series of strange and unlikely events, you find yourself in the lucrative business of cocaine smuggling. A new lab in your organization has recently started production, and you are responsible for distributing it.

The lab will produce 5000 kg of cocaine per year, at a cost of $2000 per kg. You are looking at shipping the cocaine to Miami by smuggling it in shipping containers through the port. You can smuggle 1000 kg of cocaine in a single shipment in this manner. Your cost of shipping is $500 per kg.

Based on historical records, you estimate each shipment has between a 5% and 15% chance of being caught and confiscated. If a shipment is not confiscated, it will be sold to your network of dealers in the area. Sales prices have typically had an average of $14,000 per kg, with a standard deviation of $3,000 per kg.

Use a simulation to estimate your expected profits for running this operation for one year. Also evaluate the risks by looking at other characteristics, such as the likelihood of losing money, maximum and minimum expected profits, and other such factors.

Analysis

We have a yearly production of 5000kg and can ship 1000kg at once. So there are five shipments a year.

The total variable cost of production and shipping for each shipment is

If the shipment is caught, then the revenue for that shipment is $0. Otherwise, it is a realization of a random variable which follows the normal distribution with and .


Theoretically, this is what we expect to happen:

Since the chance of being caught is 5-15% uniformly distributed, the expected value is simply

When the shipment is not caught, the expected value of the revenue is simply . Thus we have two case with probabilities, where is profit and the $2500 deficit per kg is the total cost for one kg in one shipment:

The final expected value of profit is:

The variance and standard deviation of the profit is

Simulation

The simulation is ran in R, here is the code:

The simulation ran for 10000 iterations, each iteration represents a year. The output of the simulation is the average profit each year, and the standard deviation of profits per year.

Which reads $50,487,797 in profit per year. Or average of $10,098 per kg. The standard deviation is $11,287,709 per year, or $2257.54 per kg. This is very close to our calculated result.

The overall probability of having a shipment caught is 10%. So there is a 10% chance that the shipment will be a loss.

Out of 10000 iterations/years, on average 1.6 iterations/years are operating at a loss. This translates to 0.016% chance of negative profit in one year of operation.

A histogram of all iterations/years in the simulation is show as below:

1532488890138

Notice that the shape is loosely resembling a normal distribution curve, except it’s asymmetrical and tends towards the lower side. This is due to the 5-15% chance of being caught.

Also notice that even though the chance is small, there are occurrences where we make zero to negative profits.

Minimum and Maximum

We shall look at the minimum and maximum profit by using the general rule where the minimum is (the bottom 0.2 percentile) and maximum is (the top 99.7 percentile). Where , the average profit, established in the previous section is $10,098/kg or $50.5M a year. The standard deviation, , is $11.29M a year.

The minimum expected profit is then $16.63M, or $3,326/kg, and the maximum expected profit is $84.37M, or $16.874k/kg.

 

Problem 2

Description

You are considering purchasing a small aircraft as an alternate means of smuggling the cocaine. The aircraft would cost $2,000,000 and should last for five years, with no resale value (you can guess why).

There are two potential scenarios for cocaine demand – low demand, which would result in a net benefit of $2,000,000 per year for the next five years. Or high demand, which would result in a net benefit of $3,000,000 per year for the next five years. You estimate the likelihood is about 60% for low demand and 40% for high.

There is a chance the aircraft will be caught and confiscated by the border authorities. You estimate there is a 20% chance of this happening, in which case you would only get one year of benefits from the aircraft. You estimate the odds of the aircraft not being confiscated at 80%, for which you would get a full five years of benefits.

What is your expected IRR for purchasing this aircraft, and using the rule of thumb about acceptable risk levels, would you recommend moving ahead with it?

Analysis

The spreadsheet scrap work for this problem is available here.

There are four possible outcomes. First it is randomly determined that there will be high or low demand. Then it will be determined if the plane gets confiscated or not. Here is a table of the possible outcome and their associate joint probabilities:

 High demand (40%)Low demand (60%)
Confiscated (20%)Case A: (20%)(40%)=8%Case B: (20%)(60%)=12%
Not confiscated (80%)Case C: (80%)(40%)=32%Case D: (80%)(60%)=48%

We can then plot the cashflow for all four cases for five years:

1532532110332

The internal rate of return is computed using the =IRR(...) function. From now, we can compute the statistical values.

The expected value of IRR is

The variance of the IRR is

Take the square root of the variance reveals the standard deviation:

The rule of thumb expresses that economic decision should be taken if the risk to rate of return ratio is low, such as a 2:1 ratio. In this case, . Therefore it would be wise to buy the aircraft to transport drugs.

Furthermore, in this particular scenario, we actually don’t need to use the general rule of thumb because the worst case, the case where there is low demand and plane confiscated would return zero loss. There is literally nothing to lose.

narcos-plane

 

Bonus

The cartel operated under Pablo Escobar is the Medellín Cartel. (Source: Wikipedia, but actually Netflix 😂)