Reorder Point Formula Explained (Without the Textbook)

The exact reorder point formula, broken into its two terms, with a worked example showing why safety stock has to be calculated first — not derived automatically inside this formula.

7 min readBeginner

The reorder point formula itself is short. The part that trips people up isn’t the math — it’s what has to happen before you can use it.

The Formula

Reorder Point = (Average Daily Demand × Lead Time) + Safety Stock

Three inputs, two terms, one addition. That’s the whole thing. The Reorder Point Calculator implements exactly this — no hidden adjustments, no rounding rules baked in behind the scenes.

Term One: Expected Demand During Lead Time

Average Daily Demand × Lead Time answers a narrower question than it looks like it does: not “how much will I sell,” but “how much do I expect to sell during the specific window where I have no new stock coming in — the gap between placing an order and receiving it.” If your lead time is 9 days and you sell 45 units a day on average, you’d expect to sell roughly 405 units before a freshly placed order arrives. That’s the number an order needs to cover, at minimum, just to avoid running out under perfectly average conditions.

Term Two: Safety Stock

The + Safety Stock term is where the formula stops assuming average conditions and starts protecting against everything that isn’t average — a supplier running a few days late, a week of unusually high demand, or both at once. Here’s the detail worth being precise about: the reorder point formula does not calculate safety stock for you. It expects safety stock as an already-computed number, handed to it as an input. If you look at the actual implementation, safetyStock is simply a parameter — the function adds it to the lead-time-demand term and returns the sum. It never touches the Safety Stock formula itself.

This matters because it means reorder point calculation is really a two-step process, even though the final formula looks like one line:

Step 1: Safety Stock = Z × σ(demand) × √(Lead Time)
Step 2: Reorder Point = (Average Daily Demand × Lead Time) + Safety Stock

Skip step 1, and step 2 either breaks (you have no number to plug in) or silently defaults to treating safety stock as zero — which means accepting a reorder point that offers no protection at all against variability, only against average conditions. Safety Stock vs. Reorder Point covers this composition relationship in full detail if you want the complete picture.

A Worked Example

Take an item with:

Reorder Point = (45 × 9) + 99
             = 405 + 99
             = 504 units

The policy that comes out the other end reads as one sentence: when on-hand inventory for this item drops to 504 units, place the next order. Not before — that ties up cash and shelf space holding inventory you don’t yet need. Not after — that risks a stockout before the new order arrives.

What Happens Without the Safety Stock Term

It’s worth seeing the same example with safety stock left out, because it illustrates exactly what that term is buying you:

Reorder Point (no safety stock) = 405 + 0 = 405 units

Ordering at 405 units means you’re betting the next 9 days will play out at exactly average demand — not a single day above 45 units, and the shipment arriving not a single day late. Any day above average, or any delay at all, and you run out before the new order lands. The 99-unit gap between 405 and 504 is the entire amount of protection this reorder point offers against the ordinary variability of running a real business — not a padding number, a specifically calculated buffer sized to a target service level.

Why All Three Inputs Have to Be Right

Because the formula is a straight sum, an error in any one input carries through unchanged into the result. An average daily demand pulled from a short or unusually quiet sales period understates term one. A lead time measured from a single fast shipment, rather than a typical one, does the same. And a safety stock figure calculated with the wrong service level target — or not calculated at all — undermines the entire buffer the formula is supposed to provide. None of the three inputs is optional, and none is more “approximate” than the others.

Where to Go From Here

How to Calculate Reorder Point: Step-by-Step walks through sourcing each of these three inputs from your own sales and purchasing data, in order, before combining them. If you haven’t calculated a safety stock figure yet, How to Calculate Safety Stock covers that first step in the same level of detail.

Put This Into Practice

Read Next