Scale recipes to any number of servings, adjust baking pans and convert units.
| Scaled | Original | Ingredient |
|---|---|---|
| {{ smartRound(ing.amount * factor) }} {{ getUnitLabel(ing.unit) }} | {{ ing.amount }} {{ getUnitLabel(ing.unit) }} | {{ ing.name }} |
Add ingredient
{{ panOriginalArea }} cm² → {{ panTargetArea }} cm²
| {{ ref.label }} | {{ ref.value }} |
The Recipe Scaler helps you scale cooking recipes to any number of servings. Enter your ingredients or import an ingredient list as text, and the calculator automatically scales all amounts. Smart rounding ensures you get practical quantities — for example '3 eggs' instead of '2.67 eggs'.
Scale servings, import ingredient lists from text, convert baking pans (round and rectangular), convert kitchen units (cups, ounces, tbsp, tsp to grams and milliliters), smart rounding, print view and save recipes locally.
At first glance, scaling is pure rule-of-three: to take a 4-serving recipe to 6, multiply every ingredient by 1.5. That works for most everyday dishes — pasta sauces, casseroles, salads, soups, smoothies. As soon as baking, doughs or confectionery enter the picture, two effects appear that a flat factor does not capture: pan geometry (the baking-area effect) and the chemistry of leavenings and binders.
Pan-area effect: scaling a round cake from a 26 cm pan to a 20 cm pan is not a factor of 20/26 ≈ 0.77, but (20/26)^2 ≈ 0.59. Area scales with the square of the radius, and the batter has to be scaled to the area so that depth and bake time stay roughly the same. A 26 cm round pan has π * 13² = 531 cm² of base area, a 20 cm round pan 314 cm² — pouring the full batter into the smaller pan risks an uncooked center. The pan tab of this tool calculates this factor automatically.
Chemistry: with yeast, baking powder, salt and spices, scaling is not strictly linear. Doubling the yeast in a bread dough does not give you double the rise, but a yeasty taste and a weaker crumb structure. Bakers recommend taking only 1.6 - 1.8x yeast when scaling 1x to 2x; about 0.6x instead of 0.5x when scaling down. Salt also acts disproportionately: 1.5 % of flour weight is a classic baker's rule, and scaling should follow that percentage, not the original gram amount.
For most ingredients a single scaling factor is enough. For baking pans, area is decisive — quadratic in the radius for round pans. Pseudo-code:
scale_factor = target_servings / original_servings
new_amount = original_amount * scale_factor
Pan-area scaling (round):
area = pi * (diameter / 2)^2
pan_factor = area_target / area_original
Pan-area scaling (rectangular):
area = width * height
Five realistic scalings, worked through:
Below 10 g or 10 ml it rarely pays to weigh exactly — a pinch of salt, a hint of nutmeg, a splash of olive oil stay by feel. Scaling beyond a factor of 0.5 - 4× also turns unstable: reaction times in the pan, evaporation in the pot and the cake-depth effect no longer line up. With frozen doughs, yeast breads and any recipe that depends on rise times, scaling is no longer a single factor but a combination of scaling and process-time adjustment. For very precise baking, baker's percentages (flour = 100 %, all other ingredients in % of flour) are more reliable than serving sizes. This page is a tool, not a substitute for a recipe.