Pizza Dough Calculator Formula
Understand the math behind the pizza dough calculator. Each variable explained with a worked example.
Formulas Used
Bread Flour
flour = round(flour_g)Water
water = round(flour_g * hydration_pct / 100)Salt
salt = round(flour_g * 0.02 * 10) / 10Instant Yeast
yeast = round(flour_g * 0.005 * 10) / 10Olive Oil
oil = round(flour_g * 0.03 * 10) / 10Per Dough Ball
dough_ball_weight = round(dough_ball_g)Variables
| Variable | Description | Default |
|---|---|---|
num_pizzas | Number of Pizzas | 2 |
pizza_size_in | Pizza Diameter | 12 |
hydration_pct | Hydration % | 65 |
dough_ball_g | Derived value= pow(pizza_size_in, 2) * 0.7 | calculated |
total_dough_g | Derived value= dough_ball_g * num_pizzas | calculated |
flour_g | Derived value= total_dough_g / (1 + hydration_pct / 100 + 0.02 + 0.005 + 0.03) | calculated |
How It Works
How Pizza Dough Is Calculated
Baker's Percentages
Pizza dough ingredients are expressed as percentages of flour weight:
Dough Ball Size
The dough ball weight is calculated from the pizza diameter. A 12-inch pizza needs about 100.8 g of dough (diameter^2 x 0.7).
Hydration
Higher hydration makes softer, more open-crumb dough. Neapolitan-style uses 65-70%. Crispy thin crust uses 55-60%.
Worked Example
Make 2 medium (12-inch) pizzas at 65% hydration.
num_pizzas = 2pizza_size_in = 12hydration_pct = 65
- 01Dough ball weight = 12^2 x 0.7 = 100.8 g.
- 02Total dough = 100.8 x 2 = 201.6 g.
- 03Flour = 201.6 / (1 + 0.65 + 0.02 + 0.005 + 0.03) = 201.6 / 1.705 = 118.2 g.
- 04Water = 118.2 x 0.65 = 76.8 g.
- 05Salt = 118.2 x 0.02 = 2.4 g.
- 06Yeast = 118.2 x 0.005 = 0.6 g.
- 07Oil = 118.2 x 0.03 = 3.5 g.
Ready to run the numbers?
Open Pizza Dough Calculator