Hello, dear friend, you can consult us at any time if you have any questions, add WeChat: daixieit

MSIN0041 – Individual Coursework 1

2022

Problem 1. Conjoint Analysis

(5 marks) What are the steps in designing a conjoint study? Explain the first step in the context of a specific company or industry that could implement conjoint designs to improve product designs or pricing decisions.

Problem 2. Market Simulator

Download the conjoint.R script posted to the Moodle page and start by running the first three sections of code. That is, load the bayesm package and its camera data, load the custom functions, and estimate the conjoint model using rhierMnlRwMixture() from bayesm.1 If bayesm is not installed on your device, run install.packages("bayesm") to install the required package. The script defines a custom function mktsharesim() that sim- ulates the market shares of products in a given scenario using estimation results from a conjoint model. Read the function’s documentation to understand what the function does.

From its marketing research, Canon learns that young people enjoy taking selfies and there is an increasing trend of making video blogs. To appeal to this potential customer base, Canon comes up with a camera that is selfie-friendly and has good picture and video quality. Specifically, the camera has a sensor with 16 megapixels (high)6× zoom (low)1080p video (high), has swivel screen, and no Wi-Fi. Assume the marginal cost is 0.5 ($50).

Through additional marketing research, Canon learns that there are mainly four compet- ing products in the market. The three other cameras are produced by Sony, Nikon, and Panasonic respectively. These cameras are very similar: they all have low specs (ie low megapiexels, low zoom level, low video quality, no swivel screen, and no Wi-Fi) and are priced at 2 ($200).

You are now tasked to find the optimal price for the product.

a. (2 marks) Use the seq() function to create a sequence of prices (called price) from

0.5 to 5 ($50–$500) with an interval of 0.1 ($10). Print the first ten values of the price sequence. Show your R code.

b. 

(10 marks) Now simulate Canon’s profit for each candidate price in the price sequence you generated in (a). To do this, create a vector called profit with its length equal to the length of the price sequence. There are multiple ways to do so. For example, you could just create a copy of the price sequence and assign it to profit, or you could create a vector of zeros with double() or rep().2


Consult the following pseudocodes to calculate profit for each candidate price:

for i in 1:length(price) do

create a matrix X representing the choice set

# Use defaults for function arguments with default values. # Remember to correctly index the output from mktsharesim() # for you simulation.

use mktsharesim() to simulate market shares with Canon's price set to price[i]

Compute the profit in the current choice scenario and save it to profit[i]

end for

Make sure to show your R codeInclude set.seed(1012) at the top of your code for replication of your results.

c. (5 marks) Plot profits against the price range. Draw a vertical line at the optimal price. Show your R code and display the figure below. Both the x- and y-axes should be labelled. What is the profit maximizing price?

d. (3 marks) Canon is thinking about adding the Wi-Fi feature to the device so that users can transfer photos to phones for Instagram posts. Assume including this new fea- ture raises the marginal cost to 0.55 ($55), what is the optimal price and profit for this new product? Would you recommend that Cannon further include the Wi-Fi feature to the camera? Make sure to show you R codeInclude set.seed(1026) at the top of code for replication of your results.

Problem 3. Multinomial Logit Model

In this problem, you will be guided to derive an important empirical prediction by the stan- dard multinomial logit model on consumers’ substitution pattern.

Assume every customer faces the choice set {(������, ������)}��� , where ������ is product ���’s specifica-

tions and ������ is its price. The standard multinomial logit model assumes that every customer shares the same preference parameter vector ��� over the product specifications and price parameter ��� for the price. According to the model, the market share of ������ in the choice set

is

exp(������ ������ )

������ = ��� .


a. (3 marks) What is the cross elasticity of demand for product ��� with respect to ������ for some ��� ≠ ��� in the choice set, ie ���������   ������ ? Your result should be expressed with respect

���  ���

to ���������, and ������Remember to show your steps. (Hint:  you may find this fact useful:

���������   ������    ��� log ������ ������)

��������� ������ ���������

b. (4 marks) Suppose there are three different cereal products in the choice set: ���1���2, and ���3. Among these products, ���1 is an adult cereal product, and ���2 and ���3 are two kid cereal products. The two kid cereal products are similar in ingredients, nutrition, and tastes, and often considered good substitutes for each other.

Assume you have estimated a standard logit model for cereal products. Based on the

estimated model parameters, you deduced that  ������1  ���2

2    1

= 0.5. Using this information

and your finding in the previous part, if ���2 rises by 1%, ie the price of the first kid cereal product rises by 1%, how much do you expect ���3, the demand for the other kid cereal product, to change in percentage? Explain your answer. (Hint: in the hint for the previous part, are the required parameters in your answer about product ���?)

c. (3 marks) Do you find your answer about the substitution pattern between the cereal products in the previous part empirically or intuitively realistic? Why or why not?