VIPSolutions logo ✨ VIPSolutions

Give step-by-step solution with explanation and final answer:Justice Computers, a major PC manufacturer in Canada, currently has a plant in Toronto. The Toronto plant has a capacity of 1 million units a year. The firm divides Canada into five markets: Atlantic, Central, Prairie, Pacific and Territories. Each PC sells for $1,800. The firm wants to build a couple of plants, each plant with a capacity of 1.6 million units per year, to accommodate the growth. Potential sites being considered are Halifax, Winnipeg and Vancouver. Annual fixed costs, production and shipping costs per unit, and the expected regional demand are shown in the following Table. | eee | $/Unit IE DVO 0 FOO FO PO == Atlantic Central | Prairies | Pacific | Territories | Cost (Million § | Toronto | 180 | iso [ 175s [19s | 21s [100 | | Mafox | 170 | 190 | 180 | 210 | 235 [iso | | winnipeg | 185 | iso [ 18s | 200 [ 20s [75 | Demand kAMMNN NN units/year, 600 400 700 300 1) If Blue Computers sets an objective of minimizing the total cost, where should it build the new plant? How should the network be structured? To solve the problem a) Formulate the problem with mathematical models (MIP) b) Solve it with the Excel solver. 2) If each market has single source policy, i.e., only one manufacturer can supply PC to each market, what is your new model and solution? ¢) Formulate the problem with mathematical models (MIP) d) Solve it with the Excel solver.

Question:

Give step-by-step solution with explanation and final answer:Uploaded ImageJustice Computers, a major PC manufacturer in Canada, currently has a plant in Toronto. The Toronto plant has a capacity of 1 million units a year. The firm divides Canada into five markets: Atlantic, Central, Prairie, Pacific and Territories. Each PC sells for $1,800. The firm wants to build a couple of plants, each plant with a capacity of 1.6 million units per year, to accommodate the growth. Potential sites being considered are Halifax, Winnipeg and Vancouver. Annual fixed costs, production and shipping costs per unit, and the expected regional demand are shown in the following Table. | eee | $/Unit IE DVO 0 FOO FO PO == Atlantic Central | Prairies | Pacific | Territories | Cost (Million § | Toronto | 180 | iso [ 175s [19s | 21s [100 | | Mafox | 170 | 190 | 180 | 210 | 235 [iso | | winnipeg | 185 | iso [ 18s | 200 [ 20s [75 | Demand kAMMNN NN units/year, 600 400 700 300 1) If Blue Computers sets an objective of minimizing the total cost, where should it build the new plant? How should the network be structured? To solve the problem a) Formulate the problem with mathematical models (MIP) b) Solve it with the Excel solver. 2) If each market has single source policy, i.e., only one manufacturer can supply PC to each market, what is your new model and solution? ¢) Formulate the problem with mathematical models (MIP) d) Solve it with the Excel solver.

This is AI generated Response.
Asked by: gvr
Created at: 2025-07-25 15:13:14

Final Answer:

Rendered Raw Text
Did you like this answer?
Let's break down the requirements step by step, starting with the mathematical formulation for both scenarios. --- ### 1) **Objective: Minimize Total Cost (Both Production and Fixed Costs)** #### **a) Formulate the Problem with Mathematical Models (MIP)** #### **Sets and Indices** - Plants/Sites: \(i \in \{\text{Toronto (T)}, \text{Halifax (H)}, \text{Winnipeg (W)}, \text{Vancouver (V)}\}\) - Markets: \(j \in \{\text{Atlantic (A)}, \text{Central (C)}, \text{Prairies (P)}, \text{Pacific (F)}, \text{Territories (R)}\}\) #### **Parameters** - \(c_{ij}\): Variable production and shipping cost from plant \(i\) to market \(j\) (see table) - \(f_i\): Fixed cost of opening plant \(i\) (in $1,000,000, from table) - \(d_j\): Demand in market \(j\) (in '000 units/year, from table) - \(K_i\): Capacity of plant \(i\) ('000 units/year) - Toronto: \(K_T = 1000\) - Halifax, Winnipeg, Vancouver (if opened): \(K_i = 1600\) #### **Decision Variables** - \(x_{ij}\): Number of units shipped from plant \(i\) to market \(j\) ('000 units/year) - \(y_i\): Binary variable, 1 if plant \(i\) is opened, 0 otherwise #### **Objective Function** Minimize total cost (fixed + variable): \[ \text{Minimize } Z = \sum_{i} f_i y_i + \sum_{i} \sum_{j} c_{ij} x_{ij} \] #### **Constraints** 1. **Demand Satisfaction**: \[ \sum_{i} x_{ij} = d_j \quad \forall j \] 2. **Plant Capacity**: \[ \sum_{j} x_{ij} \leq K_i y_i \quad \forall i \] 3. **Toronto is Always Open**: \[ y_{\text{Toronto}} = 1 \] 4. **At Most Two Additional Plants**: \[ \sum_{i \in \{\text{Halifax, Winnipeg, Vancouver}\}} y_i \leq 2 \] 5. **Non-negativity and Integer Constraints**: \[ x_{ij} \geq 0, \quad y_i \in \{0,1\} \] --- #### **b) Solve with Excel Solver** **Setup in Excel:** - Create a table for \(x_{ij}\) variables (plants vs. markets). - Create cells for \(y_i\) (binary, for Halifax, Winnipeg, Vancouver; Toronto = 1). - Objective cell: sumproduct of costs and \(x_{ij}\) + sumproduct of fixed costs and \(y_i\). - Constraints are implemented as formulas: - Sum of \(x_{ij}\) by market = demand. - Sum of \(x_{ij}\) by plant ≤ capacity × \(y_i\). - Toronto \(y_i = 1\). - Sum of \(y_i\) for new plants ≤ 2. - \(y_i\) binary; \(x_{ij}\) ≥ 0. **Solve with Excel's Solver using "Simplex LP" for LP relaxation or "GRG Nonlinear" for integer (MIP) solution.** --- ### 2) **Single Source Policy (Each Market Supplied by Only One Plant)** #### **c) Formulate with MIP** Add a new binary variable: - \(z_{ij}\): 1 if market \(j\) is supplied by plant \(i\), 0 otherwise. **Revised Decision Variables:** - \(x_{ij}\): Number of units shipped (as before) - \(y_i\): Binary (as before) - \(z_{ij}\): Binary #### **Revised Constraints** 1. **Each Market Assigned to Only One Plant**: \[ \sum_{i} z_{ij} = 1 \quad \forall j \] 2. **Flow Only if Assigned**: \[ x_{ij} = d_j z_{ij} \quad \forall i, j \] or, in some solvers, \(x_{ij} \leq d_j z_{ij}\) and \(\sum_i x_{ij} = d_j\). 3. **Plant Capacity**: \[ \sum_{j} x_{ij} \leq K_i y_i \quad \forall i \] 4. **At Most Two Additional Plants**: \[ \sum_{i \in \{\text{Halifax, Winnipeg, Vancouver}\}} y_i \leq 2 \] 5. **Plant Open if Used**: \[ z_{ij} \leq y_i \quad \forall i, j \] 6. **Non-negativity and Integer Constraints**: \[ x_{ij} \geq 0, \quad y_i, z_{ij} \in \{0,1\} \] **Objective is still:** \[ \text{Minimize } Z = \sum_{i} f_i y_i + \sum_{i} \sum_{j} c_{ij} x_{ij} \] --- #### **d) Solve with Excel Solver** - Add a table for \(z_{ij}\) (binary) in Excel. - Modify constraints as above. - Use "GRG Nonlinear" or "Evolutionary" algorithm for binary/integer programming in Excel Solver. --- ## **Summary Table for Variables and Constraints** | Symbol | Description | Type | |------------|----------------------------------------|---------| | \(x_{ij}\) | Units shipped from plant \(i\) to \(j\)| Real ≥0 | | \(y_i\) | 1 if plant \(i\) is open, 0 else | Binary | | \(z_{ij}\) | 1 if plant \(i\) supplies market \(j\) | Binary | --- ## **Final Notes** - **For part (b) and (d):** Setup in Excel as described, plug in the actual numbers from the table, and run Solver to get the specific site(s) chosen and the shipment plan. - **Optimal sites:** You will need to implement and run this in Excel to get the exact solution, but the formulation above gives you everything you need for the setup. --- **If you want, I can walk you through the actual Excel setup or provide a sample Excel layout. Let me know!**

📢 Instructions:

  • Ask anything relatd to above question only.
  • For new Question goto :

Study Help, Fast Answers

VIPSolutions focuses on clear, step‑by‑step explanations so you can learn quickly. Whether you need an AI‑generated walkthrough or a short hint to get unstuck, each solution is organized for fast reading and easy review later.

Search similar questions, compare approaches, and bookmark the best answers for revision. Our goal is simple: quick, reliable study help that feels natural—not noisy.