Bagel Batch Calculator Formula
Understand the math behind the bagel batch calculator. Each variable explained with a worked example.
Formulas Used
Bread Flour (high gluten)
flour = round(flour_g)Water
water = round(flour_g * 0.5)Barley Malt Syrup
malt = round(flour_g * 0.03 * 10) / 10Salt
salt = round(flour_g * 0.02 * 10) / 10Instant Yeast
yeast = round(flour_g * 0.005 * 10) / 10Total Dough Weight
total_dough = round(total_dough_g)Variables
| Variable | Description | Default |
|---|---|---|
num_bagels | Number of Bagels | 8 |
bagel_weight_g | Bagel Size | 110 |
total_dough_g | Derived value= num_bagels * bagel_weight_g | calculated |
flour_g | Derived value= total_dough_g / 1.585 | calculated |
How It Works
How Bagel Dough Is Calculated
Baker's Percentages for Bagels
Bagel dough is a low-hydration, high-protein dough:
Bagel Sizes
Worked Example
Make a batch of 8 standard bagels.
num_bagels = 8bagel_weight_g = 110
- 01Total dough = 8 x 110 = 880 g.
- 02Flour = 880 / 1.585 = 555 g.
- 03Water = 555 x 0.50 = 278 g.
- 04Malt = 555 x 0.03 = 16.7 g.
- 05Salt = 555 x 0.02 = 11.1 g.
- 06Yeast = 555 x 0.005 = 2.8 g.
Ready to run the numbers?
Open Bagel Batch Calculator