Pickling Brine Calculator Formula

Understand the math behind the pickling brine calculator. Each variable explained with a worked example.

Formulas Used

White Vinegar (5% acidity)

vinegar_ml = round((pickle_type == 1) * brine_ml * 0.5 + (pickle_type == 2) * brine_ml * 0.5 + (pickle_type == 3) * brine_ml)

Water

water_ml = round((pickle_type == 1) * brine_ml * 0.5 + (pickle_type == 2) * brine_ml * 0.5 + (pickle_type == 3) * 0)

Pickling Salt

salt_g = round(brine_ml * 0.03)

Sugar

sugar_g = round((pickle_type == 2) * brine_ml * 0.15)

Variables

VariableDescriptionDefault
brine_cupsTotal Brine Needed(cups)4
pickle_typePickle Type1
brine_mlDerived value= brine_cups * 240calculated

How It Works

How Pickling Brine Is Calculated

Standard Ratios

  • Dill pickles: 50% vinegar (5% acidity), 50% water, 3% salt.
  • Bread & butter: 50% vinegar, 50% water, 3% salt, 15% sugar.
  • Quick pickles: 100% vinegar, 3% salt. Refrigerator only (not for canning).
  • Safety

    For shelf-stable canning, the brine must contain at least 50% vinegar with 5% acidity. This ensures a pH below 4.6, which prevents botulism. Quick pickles stored in the fridge are safe with any ratio but will not keep as long.

    Worked Example

    Make 4 cups of standard dill pickle brine.

    brine_cups = 4pickle_type = 1
    1. 01Total brine = 4 x 240 = 960 mL.
    2. 02Vinegar = 960 x 0.5 = 480 mL.
    3. 03Water = 960 x 0.5 = 480 mL.
    4. 04Salt = 960 x 0.03 = 29 g (about 2 tbsp pickling salt).
    5. 05Sugar = 0 g (dill pickles have no sugar).

    Ready to run the numbers?

    Open Pickling Brine Calculator