Question

In: Statistics and Probability

A small car dealer, who is eager to estimate his inventory cost, can hold up to...

A small car dealer, who is eager to estimate his inventory cost, can hold up to 4 cars in the showroom. The periodic demand for the cars is following a Poisson distribution with mean 2, except for the maximum inventory level. In the case of maximum inventory level, the dealer makes a special discount by offering a price much below the market which results in depletion of its entire inventory. Once all the cars are sold, the dealer immediately orders 3 or 4 cars with equally likely probabilities. Apart from maximum and minimum inventory levels, the dealer can sell all his cars and also seek to refill its inventory. The Inventory cost is given as; $500 per car per period.

(a) Construct the transition probability matrix, by properly defining the states and the state space.

(b) Find the average inventory holding cost per period.

Solutions

Expert Solution

Let the random variable : number of cars in the inventory at time t

Then the state space of

The transition matrix is as follows:

where is the probability of transitioning to state X=j from state X=i

Once all the cars are sold, the dealer immediately orders 3 or 4 cars with equally likely probabilities

Now let's the consider the transition probabilities :

when there is no demand, the number of vehicle remain unsold
The probability of demand follows a poisson distribution,

so

now consider the transition probabilities :

= Probability of demand is exactly equal to i - j

Note:

So that,

But note that the transition from state i = 4 and j = 0 can happen when the demand exceeds 4,
so thate

Now consider the transition probabilities :

Note that

  • when i = 0, we already calculated
  • the transition from any state  
    will happen when the demand is exactly j, so that
    This gives us:


  • the transition from any state to a state  , happens when the
    demand is 4 or more than 4, so that

    This gives us:

So finally this gives us the transition matrix as follows:

(b) The average inventory holding cost per period =


, where is the stationary distribution of the given Stochastic process chain

The stationary distribution \pi can be found by the eigen decomposition of the transition matrix

you can do this in R software using the following command:

> P <- matrix(c(0, 0, 0, 0.5, 0.5, 0.2706, 0.1353, 0.2706, 0.18044, 0.1428, 0.2706, 0.2706, 0.1353, 0.18044, 0.1428, 0.18044, 0.2706, 0.2706, 0.1353, 0.1428, 0.1428, 0.18044, 0.2706, 0.2706, 0.1353), nrow=5, ncol=5, byrow=T) > P [,1] [,2] [,3] [,4] [,5] [1,] 0.00000 0.00000 0.0000 0.50000 0.5000 [2,] 0.27060 0.13530 0.2706 0.18044 0.1428 [3,] 0.27060 0.27060 0.1353 0.18044 0.1428 [4,] 0.18044 0.27060 0.2706 0.13530 0.1428 [5,] 0.14280 0.18044 0.2706 0.27060 0.1353 > stnry.distr = Re(eigen(t(P))$vectors[, 1]) > stnry.distr <- stnry.distr/sum(stnry.distr) > stnry.distr [1] 0.1751886 0.1804367 0.1966319 0.2438510 0.2038919

Hence  

This gives the average inventory holding cost per period =

Please upvote and provide feedback if this solution helped you. I will be more than happy to clear your doubts in the comment section below. Thanks :)


Related Solutions

A small car dealer, who is eager to estimate his inventory cost, can hold up to...
A small car dealer, who is eager to estimate his inventory cost, can hold up to 4 cars in the showroom. The periodic demand for the cars is following a Poisson distribution with mean 2, except for the maximum inventory level. In the case of maximum inventory level, the dealer makes a special discount by offering a price much below the market which results in depletion of its entire inventory. Once all the cars are sold, the dealer immediately orders...
C# A car dealer wants an application that calculates the cost of a car. The GUI...
C# A car dealer wants an application that calculates the cost of a car. The GUI application should link the “BuildYourCar.accdb” database and display all the data in four different “ListBox” based on the category. Each “ListBox” should display all the items in that category. The user can only choose one item from each “ListBox” to add an item to a car. As each item is selected, the application displays the item in a separate “ListBox” to display. If user...
Historically, the proportion of people who trade in their old car to a car dealer when...
Historically, the proportion of people who trade in their old car to a car dealer when purchasing a new car is 50%. Over the previous 4 months, in a sample of 128 new-car buyers, 54 have traded in their old car. To determine (at the 10% level of significance) whether the proportion of new-car buyers that trade in their old car has statistically significantly decreased, what is the test statistic? (please round your answer to 2 decimal places)
Historically, the proportion of people who trade in their old car to a car dealer when...
Historically, the proportion of people who trade in their old car to a car dealer when purchasing a new car is 48%. Over the previous 6 months, in a sample of 115 new-car buyers, 46 have traded in their old car. To determine (at the 5% level of significance) whether the proportion of new-car buyers that trade in their old car has statistically significantly decreased; what is the critical value? (please round your answer to 2 decimal places)
A car dealer wants to use a software to display his or her cars’ information. As...
A car dealer wants to use a software to display his or her cars’ information. As a software developer, you are going to develop a simple program for the dealer. You will have a Car class which has the following member variables:  Car’s Brand  Car’s Color  Car’s MPG (Mile Per Gallon) This class has setters and getter for all member variables. This class has four different constructors: 1. A constructor with no argument. 2. A constructor with...
A car dealer leases a small computer with software for $5,000 per year. As an alterative...
A car dealer leases a small computer with software for $5,000 per year. As an alterative he could buy the computer for $7,500 and lease the software for $3,500 per year. Any time he would decide to switch to some other computer he could cancel software lease and sell the computer for $500.   A. If he buys the computer and leases the software, what is the payback period? B. If he kept the computer and software for 8 years, what...
Create an application named Rusty2 that asks the user for the dealer cost of a car,...
Create an application named Rusty2 that asks the user for the dealer cost of a car, and the cleaning cost, and then displays the retail cost. Your application should simply send the dealer cost and cleaning cost to the getRetailPrice method in the Dealership class to obtain the retail cost. here below is the dealership class code amd meed to create rusty2 code import java.util.Calendar; public class Dealership { // public static final class variables public static final int YEAR_STARTED...
ASAP PLEASE Problem Statement A car dealer wants to use a software to display his or...
ASAP PLEASE Problem Statement A car dealer wants to use a software to display his or her cars’ information. As a software developer, you are going to develop a simple program for the dealer. You will have a Car class which has the following member variables:  Car’s Brand  Car’s Color  Car’s MPG (Mile Per Gallon) This class has setters and getter for all member variables. This class has four different constructors: 1. A constructor with no argument....
Problem Statement A car dealer wants to use a software to display his or her cars’...
Problem Statement A car dealer wants to use a software to display his or her cars’ information. As a software developer, you are going to develop a simple program for the dealer. You will have a Car class which has the following member variables:  Car’s Brand  Car’s Color  Car’s MPG (Mile Per Gallon) This class has setters and getter for all member variables. This class has four different constructors: 1. A constructor with no argument. 2. A...
Estimate the cost of the ending merchandise inventory
Based on the following data , estimate the cost of the ending merchandise inventoryParticularsAmount$Sales92,50,000Estimated Gross profit rate 36%Beginning merchandise inventory1,80,000Purchase (net)59,45,000Merchandise available for sale61,25,000 
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT