From 6e4633f6486d7d997c6ba8385949d5d515fbf487 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiana=20=F0=9F=9A=80=20=20Campanari?= <113218619+FabianaCampanari@users.noreply.github.com> Date: Sun, 13 Apr 2025 20:45:08 -0300 Subject: [PATCH] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabiana 🚀 Campanari <113218619+FabianaCampanari@users.noreply.github.com> --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b2eb3a6..4430608 100644 --- a/README.md +++ b/README.md @@ -419,7 +419,7 @@ In the context of Linear Programming (LP) and the Simplex Method, Excel Solver c This example shows how to solve a Linear Programming (LP) problem using the **Simplex Method** via **Excel Solver**. -### Problem +### ➢ [Problem](): Maximize the objective function: @@ -433,12 +433,19 @@ x, y ≥ 0
-### [Excel Spreadsheet Setup]() +### [Excel Spreadsheet Setup](): Fill the spreadsheet with the following structure: #### Variables and Objective +| Cell | Description | Formula / Value | +|------|------------------------|----------------------| +| B1 | x (Decision Variable) | *(leave blank)* | +| B2 | y (Decision Variable) | *(leave blank)* | +| B3 | Objective Function Z | `=3*B1 + 5*B2` | + +