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
| Variable | Description | Default |
|---|---|---|
brine_cups | Total Brine Needed(cups) | 4 |
pickle_type | Pickle Type | 1 |
brine_ml | Derived value= brine_cups * 240 | calculated |
How It Works
How Pickling Brine Is Calculated
Standard Ratios
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
- 01Total brine = 4 x 240 = 960 mL.
- 02Vinegar = 960 x 0.5 = 480 mL.
- 03Water = 960 x 0.5 = 480 mL.
- 04Salt = 960 x 0.03 = 29 g (about 2 tbsp pickling salt).
- 05Sugar = 0 g (dill pickles have no sugar).
Ready to run the numbers?
Open Pickling Brine Calculator