Exponential Smoothing Model: Given the annual sales (in $1000s) for a small business Year Sales.
| Year | Sales |
| 1 | 283 |
| 2 | 288 |
| 3 | 336 |
| 4 | 388 |
| 5 | 406 |
| 6 | 412 |
| 7 | 416 |
| 8 | 435 |
| 9 | 428 |
| 10 | 435 |
| 11 | 462 |
| 12 | 452 |
| 13 | 474 |
| 14 | 476 |
| 15 | 497 |
| 16 | 487 |
| 17 | 523 |
| 18 | 528 |
| 19 | 532 |
| 20 | 552 |
answer the following questions. a) Please use Exponential Smoothing method to forecast the sales in Period 21. Show your result in the spreadsheet. Notice that you should use Solver to determine the optimal value of Alpha, where the optimal Alpha minimizes the MSE. b) What is the optimal value of Alpha? c) What the corresponding MSE using this method?
Let's assume alpha = 0.5 and then later optimize it.
In exponential smoothing, we assume forecast for period 1 = Actual value for period 1




MSE is least when alpha = 1
MSE for alpha =1 is 473.150
Exponential Smoothing Model: Given the annual sales (in $1000s) for a small business Year Sales. Year...
1Year Sales (in $1000s) 283 288 336 388 406 412 416 435 428 435 462 452 474 476 497 487 523 528 532 552 4 4 6 6 9 10 11 10 12 11 13 12 14 13 1514 16 15 17 16 18 17 19 18 20 19 21 20 23 24 Module 2 Assisted Problems Note: Data for these problems are in the Module 2 Assisted Assignments Data file-there is a tab for each problem. All answers should...
*******Please show ALL WORK/FORMULAS IN EXCEL AND SEPARATE THE ANSWERS FOR A/B/C SO I CAN CLEARLY SEE THEM****** TAKE PICTURES OF FORMULAS IN EXCEL AND PASTE THEM HERE. SHOW WHERE EACH CORRESPONDING FORMULA BELONGS IN EACH CELL, ETC 1. Moving Average Model (please review spreadsheet model of Forecast 1.xlsx.) Given the annual sales (in $1000s) for a small business (See 1st worksheet in Assignment 2.xlsx), answer the following questions. Please use 2-period Moving Average method to forecast the sales in...
Western Home Inspections is a home inspection service that provides prospective homebuyers with a thorough assessment of the major systems in a house prior to the execution of the purchase contract. Prospective homebuyers often ask the company for an estimate of the average monthly heating cost of the home during the winter. To answer this question, the company wants to build a regression model to help predict the average monthly heating cost (Y) as a function of the average outside...
In C++ Programming: Using a single for loop, output the even numbers between 2 and 1004 (inclusive) that iterates (loops) exactly 502 times. The outputted numbers be aligned in a table with 10 numbers per row. Each column in the table should be 5 characters wide. Do not nest a loop inside of another loop. Hint: First create and test the code that output the numbers all on one line (the command line will automatically wrap the output to new...
Implement a method that uses insertion sort to sort numbers. Use the numbers provided in files (100.txt, 1000.txt, 5000.txt, 50000.txt, 100000.txt and 500000.txt) as input. Measure the time taken to sort these numbers (do not include the file IO time). Plot the time taken to sort the numbers [Programming, 35 points] .Files to submit. A report that briefly talks about your solution to each of the problem (the explanation should not exceed more than half pages each). Seperate file for...
need help to complete this java program // add appropriate import statements here. // These imports you can leave as is. import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.canvas.Canvas; import javafx.scene.canvas.GraphicsContext; import javafx.scene.paint.Color; import javafx.stage.Stage; /** @author yourAccountNameHere */ public class ConnectTheDots extends Application { /* * Do not add code to main(). Add it below in connectTheDots instead. */ public static void main(String[] args) { launch(args); } /*...
Create a program that will use the attached input file and perform the following operations. Read the file into an appropriate JCF data structure. Look up a (list of) names and numbers matching a last name or the first letters of a last name, ignoring case. Look up a (list of) names and numbers matching a number or the first digits of a number. Add a name and number to the list. Sort the list by first name, last name...