Baby Formula Calculator Formula

Understand the math behind the baby formula calculator. Each variable explained with a worked example.

Formulas Used

Daily Formula Intake

daily_formula_oz = min(daily_oz, 32)

Approximate Feedings/Day

daily_feedings = ceil(min(daily_oz, 32) / 4)

Monthly Formula Cost

monthly_cost = min(daily_oz, 32) / 2 * formula_cost_per_oz_powder * 30

Variables

VariableDescriptionDefault
baby_weight_lbsBaby Weight(lbs)12
formula_cost_per_oz_powderFormula Cost (per oz powder)(USD/oz)1.2
daily_ozDerived value= baby_weight_lbs * 2.5calculated

How It Works

Baby Formula Intake Estimation

Infants typically need about 2.5 ounces of formula per pound of body weight per day, with a maximum of about 32 oz/day.

Formula

Daily Intake (oz) = Baby Weight (lbs) x 2.5 (max 32 oz)

Monthly Cost = Daily oz / 2 (powder oz) x Cost per oz x 30 days

One ounce of powder typically makes 2 fluid ounces of formula. Always follow the specific mixing instructions on your formula brand.

Worked Example

A 12 lb baby using formula that costs $1.20/oz of powder.

baby_weight_lbs = 12formula_cost_per_oz_powder = 1.2
  1. 01Daily intake = 12 x 2.5 = 30 fl oz/day
  2. 02Feedings = ceil(30 / 4) = 8 feedings of ~3.75 oz each
  3. 03Powder needed = 30 / 2 = 15 oz powder/day
  4. 04Monthly cost = 15 x $1.20 x 30 = $540

Ready to run the numbers?

Open Baby Formula Calculator