{% extends "otree/Page.html" %} {% block title %} Newsvendor Model Explained {% endblock %} {% block styles %} {% endblock %} {% block content %}
The Newsvendor model helps you pick a one-time order quantity when demand for the product is uncertain and you cannot reorder within the selling period. You trade off two risks: ordering too few (lost sales) versus ordering too many (leftover units). The goal is to choose the quantity that maximizes expected profit for this single period.
Order quantity Q for this single selling period.
The optimal order quantity Q* is the demand quantile at this probability. Intuitively, you order enough so that demand is below your order quantity with probability equal to the critical fractile.
Where D is realized demand:
You only earn revenue on units sold, you pay for all units ordered, and you recover v for each leftover unit.
Suppose p = 10, c = 6, v = 2. Then Cu = 10 − 6 = 4 and Co = 6 − 2 = 4, so the critical fractile is 4 / (4 + 4) = 0.5. If demand is symmetric (e.g., Normal), Q* is the median of demand. If μ = 100 and σ = 20 (Normal), the 50th percentile is μ, so Q* ≈ 100.
If demand were discrete with cumulative probabilities crossing 0.5 at Q = 100, you'd choose Q = 100.