Skip to main content

Recipe Scaler

Scale recipe ingredients up or down proportionally for any number of servings.

Reviewed by · Last reviewed

Using the Recipe Scaler

Point the scaler at a recipe you already have and tell it how many servings you want instead. It recalculates every ingredient to hold proportions exactly and renders friendly kitchen fractions wherever the math cooperates.

  1. Original servings - the number printed on the recipe.
  2. Target servings - what you actually want to make.
  3. Ingredients - add each row with name, amount, and unit (cups, tablespoons, teaspoons, fluid ounces, grams, kilograms, millilitres, or litres).
  4. Scale Recipe - the button runs the math and shows a side-by-side table of original and scaled amounts.

What the Scaler Does Under the Hood

The core operation is a scale factor of target / original applied to every amount. For 4 servings scaled to 10, the factor is 2.5 - 1 cup becomes 2.5 cups, 1.5 tsp becomes 3.75 tsp (rendered as 3 3/4 tsp). The fraction rendering compares the decimal part against common denominators (2, 3, 4, 6, 8, 16) and picks the closest match under a small tolerance. Arithmetic runs on JavaScript IEEE 754 doubles, which is more than accurate enough - kitchen scales round to the gram anyway.

Real Moments the Scaler Earns Its Keep

  • Thanksgiving dinner for 12 from a pie recipe written for one 9-inch pie.
  • Halving a four-serving pasta recipe because it is just you tonight.
  • Batch-cooking chilli or curry - 5x a standard recipe into a Dutch oven.
  • Converting an old family recipe that feeds 20 down to a household casserole.
  • Bread dough when you have enough flour for 1.5 loaves, not 2.
  • Scaling a cocktail recipe from 1 serving to a pitcher for 8.

Where Linear Scaling Breaks Down

Spices do not scale linearly. Tripling a recipe often calls for 2.5x the salt, not 3x - start at 75% of the scaled amount and taste up. Baking is worse: leavening agents scale imperfectly because gas release depends on surface area and oven dynamics. Eggs are a whole-unit problem - 2.5 eggs means beating three and using weight (a large egg is 50 g without the shell). Thickeners like cornstarch have a nonlinear relationship with liquid volume. Cooking vessel size and evaporation change with scale, which affects cook time. The calculator gets the ingredient list right; the cook adjusts technique.

A Short Lesson in Kitchen Fractions

US kitchen measurements form a specific ladder: 3 tsp equal 1 tbsp, 16 tbsp equal 1 cup, 2 cups equal 1 pint, 4 quarts equal 1 gallon. Within that system, fractions like 1/8, 1/4, 1/3, 1/2, 2/3, and 3/4 cup correspond to physical measuring cups. A scaled value like 0.875 cups ideally rounds to 7/8 cup, but nobody has an 7/8-cup measure - most cooks use 3/4 + 2 tbsp instead. Metric recipes (grams, millilitres) scale cleanly because there is no fractional conversion step. If you can, scale a metric recipe with a kitchen scale - it is far more precise than volumetric cups, especially for flour where packing density alone swings volume by 20%.

How the Scaler Compares to Alternatives

Most recipe apps (Paprika, NYT Cooking, AllRecipes) include built-in scaling but lock it to recipes in their database. A spreadsheet column with =A2 * $B$1 gives full control but no fraction rendering. A kitchen scale plus a gram-first recipe is most accurate for baking. This scaler is the fastest option when you have a printed or web recipe in cups-and-teaspoons and want the scaled numbers in the same units, without retyping the whole recipe into an app. It will not convert volume to weight; for that use King Arthur's ingredient weight chart.

Frequently Asked Questions

What happens when scaling produces an egg fraction?

The tool returns the decimal - 2.5 eggs, for example. In practice, beat three eggs together, weigh the mix (a large egg is about 50 g out of the shell), and use 125 g. For unfussy recipes like pancakes, round to the nearest whole egg. For custards and souffles where eggs are structural, the weight method is the only reliable approach.

Why does the fraction output sometimes fall back to a decimal?

The converter picks from the culinary denominator set (2, 3, 4, 6, 8, 16) and only shows a fraction if the match is within tolerance. If your scaled value is 0.41 cups - not cleanly 1/3, 3/8, or 1/2 - it falls back to the decimal. Forcing every number into an approximate fraction hides the fact that you cannot measure 0.41 cups with standard cups anyway.

Can I scale a sourdough starter feeding?

Yes, and it is one of the best uses. Starter feeding is pure ratio work - 1:1:1 flour, water, starter by weight, or 1:2:2 for a long fermentation. Enter quantities at any multiple and the scaler holds the ratio. Pick grams or ounces as your unit, not cups - flour volume is too inconsistent for hydration math.

Do I need to adjust oven temperature when scaling up?

Usually not. Oven temperature stays the same whether you are baking one pie or three. What changes is cook time: three pies share oven space poorly. Rotate trays halfway through and use a probe thermometer for bread or a cake tester for everything else. Never extend total time more than 20% based on instinct alone.

Does it handle weight-to-weight conversion, like ounces to grams?

No. The scaler preserves whatever unit you chose and multiplies by the scale factor. Scaling 4 oz of butter to 1.5x gives 6 oz of butter, not the gram equivalent. Convert between unit systems before scaling, or use a dedicated unit-conversion tool. Mixing systems mid-recipe is where most scaling errors happen.

Is my recipe sent anywhere when I use the scaler?

No. Ingredient names, amounts, and units stay in Preact component state - they never leave the browser tab. There is no network request, no autosave, no telemetry on the recipe content itself. Closing the tab discards the data, so copy the scaled results into a note app if you want them later.

What scaling factor is too extreme to trust?

Past 4x in either direction, expect to taste and adjust. Scaling 10x strains pot capacity, evaporation rates, and seasoning - a stockpot of stew takes longer to come to temperature, loses less water per unit volume, and needs less salt proportionally. Scaling below 0.25x makes egg and leavening amounts awkward. For major changes, search for a recipe already written near your target size.

How do I scale "pinch" or "to taste"?

The calculator cannot scale qualitative amounts - leave those out of the input, scale the measurable ingredients, then adjust the pinches and dashes by feel. A pinch of salt is approximately 1/16 teaspoon and a dash is roughly 1/8 teaspoon, so if you really want to scale them, convert first. For most recipes the whole point of those phrases is that they are taste-driven.

Does the tool know ingredient-specific density?

No. It treats a cup of flour and a cup of honey identically, even though flour is 120 g and honey is 340 g. The scaled output in cups will be correct; the scaled output converted to grams will not match unless you use an ingredient-aware converter. For baking, work in grams from a scale and skip the volume step entirely.

More Home & Lifestyle