Perform sensitivity analysis by changing one parameter

Assignment Help Applied Statistics
Reference no: EM131069161

Requirements for Business Intelligence Capstone Project (Solve any 8 Task Out of 10)

A company produces three types of alarm systems -S1, S2, and S3 - and supplies them to a retailer. It is contractually obligated to meet the demands of the retailer for each alarm system. Because of limited capacity the company may not have sufficient machining, assembly, andfinishingtime available to satisfy the entire demand in each period through its regular production runs. Contractual obligation requires the companyto make up the shortfall in production through special production runs at higher costs. The company aims to meet the retailer's demands at minimum cost.

LP Formulation:

Task 1:

Formulate a linear programming (LP) model that may be solved to identify the optimal production plan for the company in each time period.

Specifically, you must define the decision variables, objective function, and constraints in your LP model using the following parameters:

In each time period, for each product i∈ (1,2,3):
Di is the demand (number of units required) for product i.
CiR is the cost (in dollars) for producing each unit of product i in a regular run.
CiS is the cost (in dollars) for producing each unit of product i in a special run.
tim is the machining time (in minutes) required to produce each unit of product i.
tia is the assembly time (in minutes) required to produce each unit of product i.
tif is the finishing time (in minutes) required to produce each unit of product i.

Further, assume that:
300hours of machining time is available for regular run.
240hours of assembly time is available for regular run.
240hours of finishing time is available for regular run.

LP Parameter Estimation:

You must now use available data to estimate the parameters of the LP formulated in Task 1.

Estimation of tim, tia, tif, and CiR:

The text file "production.csv" contains 7 columns: SerialNo,BatchNo, ProductCode, MachineTime, AssemblyTime, FinishTime, and Cost. Using any DBMS of your choice, create a table PRODUCTION with SerialNo as its primary key and the 6 other columns as attributes and insert the 15,000 records from production.csvinto the table. SerialNois a unique identifier assigned to each unit produced by the company; ProductCode specifies the product type; BatchNo identifies the batch in which an item is produced (items are produced in batches of 10 units of a product type); MachineTime,AssemblyTime, and FinishTime specify the time (in minutes) taken by each process (machining, assembly, and finishing) to produce a unit; the last attribute, Cost, specifies the cost (in dollars) of producing the unit in a regular run.

Task 2:

Formulate an SQL query to obtain the average machining time, assembly time, finishing time, and cost per unit for each product type as estimates of the parameters tim, tia, tif, and CiR of the LP model.

In your report, you must:

Specify your SQL query to obtain the estimates.

Specify your parameter estimates in the table below. Round all estimates to 1 decimal place.

Parameters for

Product type

Regular Production

S1

S2

S3

MachineTime (tim)




AssemblyTime (tia)




FinishTime (tif)




Regular Cost (CiR)




Estimation of special run cost CiS:

It is known that the regular production cost CiR is a linear function of the machining, assembly, and finishing times for each product type.

That is, CiR = βi0 + βimtim + βiatia + βiftif, where βi0 is the fixed cost incurred to produce each unit of i, and βim, βia, and βif are respectively the costs per minute for machining, assembly, and finishing each unit of product i during regular run.

Task 3:

Run regressions to estimate the coefficients βi0, βim, βia, and βif for each product i.

In your report, please explain how you obtained the data for the 3 regressions to estimate the coefficients. Then present your parameter estimates in the table below. Round all estimates to 1 decimal place.

Coefficients for

Product type

Regular Production

S1

S2

S3

Intercept (βi0)




MACHINETIME (βim)




ASSEMBLYTIME (βia)




FINISHTIME (βif)




The fixed costs βi0 associated with the production of each unit of i is the same under the regular and the special run, but the cost per minute for machining, assembly, and finishing are 50% higher in the special run than for the regular run.

Task 4:

Use the above relationship to estimate that the cost for producing each unit of product i in a special run as CiS = βi0 + 1.5(βim tim + βia tia + βif tif).

Present the estimates in the following format:

 Product type

S1

S2

S3

Special production cost per unit (CiS)




Estimation of demand Di

The text file "demand.csv" contains the retailer's sales data by region (North, South, East, and West) for the three alarm systems over the last 52 time periods. For example, the first row shows that 119 units of S1 were sold in the East region in time period 1, and the last row shows that 177 units of S3 were sold in the West region in time period 52.

Create a table called DEMAND with a composite primary key made up of the attributes Period, ProductCode, and Region. Salesis the fourth attribute in theDEMANDtable. Insert all 624 records from demand.csv into the DEMAND table.

Task 5:

Extract the data needed for predicting demand for S1 by formulating an SQL query that lists the Period and the sum of the total sales for S1 from all four regions in each of the 52time periods as S1demand. Similarly, formulate two more SQL queries to obtain the 52 records for S2demand and S3demand.

In your report, specify the 3 SQL queries to obtain S1demand, S2demand and S3demand.

Task 6:

Use the results returned by the queries formulated in Task 5 in forecasting models to predict the demands D_i in time period 53 for each product.

You should consider various prediction and forecasting methods that you are familiar with. Use the methodthat you think is most accurate in estimating demands. In your report, please present the estimates for time period 53 in the following format:

 Product type

S1

S2

S3

Demand (Di) in period 53




Optimal LP Solution:

Task 7:

Solve the LP formulated in Task 1 using the parameters estimated in Tasks 2, 4, and 6 to determine the optimal production plan for period 53.

Report the minimum production cost achievable, number of units of each product type to be produced under the regular and special production runs, and the resources used during regular run in the following format:

Minimum cost attainable:

 

Number of units produced

S1

S2

S3

Regular Run

 

 

 

Special Run

 

 

 

Resources in regular run

Minutes used

MACHINETIME

 

ASSEMBLYTIME

 

FINISHTIME

 

Sensitivity Analysis:

Task 8.

Perform sensitivity analysis by changing one parameter at a time (leaving all other parameters fixed at the values used in Task 7) and answer the following questions.

By how much does the total production cost change as the demand for each product type changes by 1 unit?

At most how much should the company be willing to pay to

Increase the availability of machining time by one hour during regular run?

Increase the availability of finishing time by one hour during regular run?

Increase the availability of assembly time by one hour during regular run?

Quality Control

The text file "defective.csv" contains 2 columns. The first column DefectiveID is an identifier, and the second column SerialNo specifies the serial number of a defective product. Create a table DEFECTIVE with DefectiveID as its primary key and insert all 591 records from defective.csvinto the table. Note that SerialNo in the DEFECTIVEtable is a foreign key that references the primary key in the PRODUCTION table.

The text file "quality.csv" contains 5 columns containing data from quality control tests run on 1500 batches of items produced. Create a table QUALITY with BatchNo as its primary key and Test1, Test2, Test3, and Test4 as its other 4 attributes. Insert all 1500 records from quality.csv into the table. Note that BatchNo in the PRODUCTION table is a foreign key that references the primary key BatchNo in the Quality table.

Any batch that containsmore than one defective items is deemed to be ofpoor quality; a batch with at most one defective item is considered to be of good quality.

Task 9:

Formulate an SQL query that lists all 5 columns from the QUALITY table and adds a derived column BatchQuality that contains "Poor" if the batch is of poor quality (contains at least 2 defective items) and "Good" otherwise.

In your report, include:
The SQL query for task 9
The results of the query in a file batchQuality.csv.

Task 10:

Use the data obtained from Task 9 to train and test a Classification Tree that predicts BatchQuality based on values of the featuresTest1, Test2, Test3, and Test4.

In your report:

1. Specify the rules that you obtained in Task 10 in the canonical form:
IF .... THEN ...

2. Present the classification accuracy of this set of rules in the form:

Number of batches

Actually Poor Quality

Actually Good Quality

Predicted Poor Quality

 

 

Predicted Good Quality

 

 

If you wish, you may also use other prediction and classification methods (such as Logistic Regression, Neural Nets, and Discriminant Analysis) to classify BatchQuality based on values of the featuresTest1, Test2, Test3, and Test4, and comment on the classification accuracy of these methods.

Attachment:- Data.rar

Reference no: EM131069161

Questions Cloud

Find the best least squares approximation for temperature : Consider a uniform bar such that α(x) = 1, β(x) = 0.5 with q(x) = x(1 - x). Find the best least squares approximation for the temperature distribution in the bar from S
What are the factors considered in making this determination : Suppose you are interested in how children with severe autism experienced the receipt of special education assistance in public schools. This population is characterized by underdevelopment of social cognition, social skills, and language skills. ..
Explore the possibility of establishing a factory : Axetem, Inc. wants to explore the possibility of establishing a factory and a customer service center in a developing nation to take advantage of a less expensive labor force. The first step in a series of various feasibility studies is a politica..
Describe the global car industry characteristics : Describe NASCAR in terms of product design, manufacturing, marketing, and corporate culture. How do you suggest NASCAR increase its presence in the global automobile market?
Perform sensitivity analysis by changing one parameter : Formulate a linear programming (LP) model that may be solved to identify the optimal production plan for the company in each time period - Formulate an SQL query to obtain the average machining time, assembly time, finishing time.
Determine the taylor series expansion : Determine the Taylor series expansion for f(x) through the quadratic term. Calculate the error in this approxi- mation and compare to the error in the least squares approximation
Which strategy do you feel netflix should use : Explain how Netflix focuses on the three functional concerns (product, peole, and support processes). Look at design and how it is delivered to the customer. Mention production and operations also.
Possible results of the throws : Suppose that you throw a dice 2 consecutive times and that you have to make a probabilities chart that show all the possible results of the 2 throws. How many branches will result?
Gathering data regarding working conditions : A personnel office is gathering data regarding working conditions. Employees are given a list of five conditions that they might want to see improved. They are asked to select the one item that is most critical to them.

Reviews

Write a Review

Applied Statistics Questions & Answers

  Find a confidence interval for the proportion of adults

Find a 95 percent confidence interval for the proportion of all U.S. adults who would say they take part in some form of daily activity to keep physically fit.

  Number of days absent per term for all the students

A random sample of [n=64 children] of working mothers showed that they were absent from school a sample average of [x=5.3] days per term, with a standard deviation [s=1.8 days].  Provide a 96% confidence interval for the average number of days absent..

  Draw a frequency ogive for the bottle design ratings

Construct a cumulative frequency distribution and a cumulative percent frequency distribution. Draw a frequency ogive for the bottle design ratings.

  Find the ppv and npv for a population

Are the events of being man-made and being polluted independent and write out the sample space - Find the PPV and NPV for a population where 2% of the people have the disease.

  What can not represent the probabilty of a event

What can not represent the probabilty of a event0, .008, - -.6,  55%   605/1269,  50/37 choose answer below

  Henry performed a two-tailed test for an experiment

Henry performed a two-tailed test for an experiment in which N=24. He could not find his table of t critical values, but he remembered the tcv at df=13. He decided to compare his tobt with this tcv. Is he more likely to make a Type I or a Type II err..

  Compute the quarterly forecasts for next year

Use a regression model with dummy variables as follows to develop an equation to account for seasonal effects in the data.  Qtr1 = 1 if Quarter 1, 0 otherwise; Qtr2 = 1 if Quarter 2, 0 otherwise; Qtr3 = 1 if Quarter 3, 0 otherwise.

  The level of calcium in the blood in healthy young adults

The level of calcium in the blood in healthy young adults varies with mean about u = 9.50 milligrams per deciliter and standard deviation about .40 milligram per deciliter. A clinic in rural Guatemala measures the blood calcium level of 64 healthy pr..

  The population have a smart phone

It has been stated that 75% of the population have a smart phone. If you randomly choose 10 people, what is the probability that at least 9 people will say they have a smart phone?

  Compute all relevant summary statistics

You are expected to complete a project related to inferential statistics - show that the random variable X is exponential and compute the probability of the wait time when it is greater

  How do you interpret the results

Based on our sample, how do you interpret the results and what do these results suggest about the population means for male and female salaries

  1 eithernbsp find a newspaper tv radio or web article that

1. eithernbsp find a newspaper tv radio or web article that reports some scientific study or statistical analysis of

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd