0
0
Excelspreadsheet~20 mins

Solver for optimization in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Solver Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🎯 Scenario
intermediate
2:00remaining
Maximize profit with Solver

You have a product that sells for $50 each. The cost to make one product is $30. You want to find how many products to make to maximize profit, but you can only make up to 100 products. Which cell should you set as the objective in Solver?

AThe cell calculating profit (=total revenue - total cost)
BThe cell calculating total cost (=30 * quantity)
CThe cell calculating total revenue (=50 * quantity)
DThe cell containing the quantity of products
Attempts:
2 left
💡 Hint

Think about what you want to maximize: revenue, cost, or profit?

📊 Formula Result
intermediate
2:00remaining
Solver changing variable cell

You use Solver to find the best number of items to produce. The quantity is in cell B2. After running Solver, what will happen to cell B2?

AIt will stay the same as before running Solver
BIt will be cleared and become empty
CIt will show an error because Solver cannot change input cells
DIt will change to the value that maximizes or minimizes the objective
Attempts:
2 left
💡 Hint

Solver changes certain cells to reach the goal. Which cells does it change?

Function Choice
advanced
2:00remaining
Choosing constraints in Solver

You want to use Solver to ensure the number of products made is at least 10 and at most 100. Which constraints should you add?

A"B2 = 10" and "B2 = 100"
B"B2 > 10" and "B2 < 100"
C"B2 >= 10" and "B2 <= 100"
D"B2 != 10" and "B2 != 100"
Attempts:
2 left
💡 Hint

Think about how to include the boundary values 10 and 100.

data_analysis
advanced
2:00remaining
Interpreting Solver results

After running Solver to minimize cost, the status message says "Solver found a solution. All constraints and optimality conditions are satisfied." What does this mean?

ASolver could not find any solution that meets the constraints
BSolver found a solution that meets all constraints and is the best possible
CSolver found a solution but some constraints are violated
DSolver stopped before completing the optimization
Attempts:
2 left
💡 Hint

Look for words like "all constraints" and "optimality" in the message.

🧠 Conceptual
expert
2:00remaining
Why use integer constraints in Solver?

You are using Solver to decide how many whole products to make. Why should you add an integer constraint to the quantity cell?

ATo ensure the quantity is a whole number because you cannot make part of a product
BTo prevent Solver from changing the quantity cell
CTo allow Solver to use decimal numbers for more precise results
DTo speed up Solver calculations by limiting options
Attempts:
2 left
💡 Hint

Think about what it means to produce a fraction of a product.