Calculateus

Turkey Thawing & Roasting Time Calculator

Calculate how long to thaw and roast a turkey based on its weight.

Result

Refrigerator Thaw Time
4 days
Roast Time at 325°F
3 hr 28 min

Always confirm doneness with a meat thermometer: 165°F (74°C) in the thickest part of the breast and innermost thigh, regardless of calculated time.

About the Turkey Calculator

This calculator estimates refrigerator thaw time and oven roasting time for a whole turkey based on its weight, whether it's stuffed, and the oven temperature. It's designed for anyone planning a holiday turkey backward from the meal time, working out when to pull the bird from the freezer and when to put it in the oven.

How It Works

You enter the turkey's weight in pounds, whether it's stuffed, and the oven temperature. Thaw time is calculated as one refrigerator day for every 4 pounds, rounded up to a whole day. Roast time is the weight multiplied by a per-pound minute rate that's higher for a stuffed bird than an unstuffed one, then converted from total minutes into hours and minutes.

thawDays = ceil(weight / 4); roastMinutes = weight x (stuffed ? 15 : 13); displayed as hours = floor(roastMinutes / 60), minutes = round(roastMinutes mod 60).

Formula & Methodology

Thaw time rounds up to whole refrigerator days at a rate of 4 lb per day, so any weight that isn't an exact multiple of 4 still gets a full extra day - a 15 lb turkey needs ceil(15/4) = ceil(3.75) = 4 days. Roast time uses a flat per-pound minute rate: 13 minutes per pound if unstuffed, or 15 minutes per pound if stuffed, reflecting that stuffing inside the cavity insulates the center and needs to reach a safe temperature itself. That total in minutes is then split into whole hours and remaining minutes for display; a 16 lb unstuffed turkey computes to 16 x 13 = 208 minutes, which splits into 3 hours 28 minutes.

Examples

16 lb unstuffed turkey at 325°F

At the default 16 lb weight, unstuffed, the calculator returns a 4 day refrigerator thaw time (ceil(16/4) = 4) and a roast time of 3 hr 28 min (16 x 13 = 208 minutes).

20 lb stuffed turkey

For a 20 lb stuffed turkey, thaw time is ceil(20/4) = 5 days, and roast time is 20 x 15 = 300 minutes, which converts to exactly 5 hr 0 min.

Advantages

  • Combines both thaw planning and roast planning into a single calculation instead of requiring two separate lookups
  • Adjusts the roast time automatically for whether the turkey is stuffed, reflecting the real difference in cook time that stuffing requires
  • Rounds thaw time up to a full day so you don't underestimate how early to move the turkey from freezer to refrigerator

Common Mistakes

  • Starting the refrigerator thaw the day before cooking instead of counting back the full number of days the weight requires, which can leave a large bird partially frozen
  • Relying on the calculated roast time alone as proof of doneness rather than confirming with a meat thermometer reading of 165°F in the thigh and breast
  • Forgetting that a stuffed turkey needs a higher per-pound roast time (15 min/lb versus 13 min/lb) and using the unstuffed estimate by mistake

Edge Cases to Watch For

  • A weight of zero or less returns an explicit error ('Weight must be greater than zero') instead of a calculated result.
  • Thaw days always round up to a whole number, so a turkey just over a 4 lb increment (like 12.1 lb) still requires the full next day of thawing, not a fractional day.
  • The oven temperature field is used only to label the output; roast time itself is calculated purely from weight and stuffed status and is not mathematically adjusted for a temperature other than the assumed 325°F baseline the guidance is based on.
  • The result note stresses that a meat thermometer reading of 165°F should always override the calculated roast time, since the formula is a planning estimate, not a doneness guarantee.

Common Use Cases

  • Holiday cooks working backward from a planned dinner time to figure out when thawing needs to start
  • Anyone roasting a turkey for the first time who wants a starting estimate for total oven time
  • Cooks comparing stuffed versus unstuffed timing before deciding how to prepare the bird
Written & fact-checked by the Calculateus TeamLast updated August 5, 2026How we verify our formulas

Frequently asked questions

How is thaw time calculated?

The USDA guideline is about 24 hours of refrigerator thawing for every 4-5 pounds of turkey - this calculator uses 1 day per 4 lb, rounded up, as a safe estimate.

Why does a stuffed turkey take longer to cook?

Stuffing inside the cavity insulates the center of the bird and also needs to reach a safe temperature itself, so a stuffed turkey needs a longer roasting time per pound (about 15 min/lb vs. 13 min/lb unstuffed) at 325°F to ensure both the meat and stuffing reach 165°F.

Conclusion

The Turkey Thawing & Roasting Time Calculator gives a day-level thaw estimate and an hour-and-minute roast estimate driven entirely by weight and stuffing status. Because it's a planning tool rather than a doneness measurement, always finish by checking internal temperature with a thermometer regardless of what the calculated time shows.