Potluck Serving Planner Formula
Understand the math behind the potluck serving planner. Each variable explained with a worked example.
Formulas Used
Total Servings Needed
total_servings = guests * servings_per_guestServings per Contributor
servings_per_dish = ceil(guests * servings_per_guest / contributors)Coverage Ratio
coverage_ratio = round(contributors * ceil(guests * servings_per_guest / contributors) / (guests * servings_per_guest) * 100)Variables
| Variable | Description | Default |
|---|---|---|
guests | Total Guests | 20 |
contributors | Number of Contributors | 8 |
servings_per_guest | Dishes Sampled per Guest | 5 |
How It Works
How to Plan Potluck Portions
Formula
Total Servings = Guests x Dishes per Guest
Servings per Contributor = ceil(Total Servings / Contributors)
At a potluck, each guest typically samples 4-6 different dishes. Each contributor should bring enough servings so that every guest can try their dish if they want to.
Planning Tips
Worked Example
20 guests with 8 contributors, each guest sampling 5 dishes.
guests = 20contributors = 8servings_per_guest = 5
- 01Total servings = 20 x 5 = 100 servings
- 02Per contributor = ceil(100 / 8) = 13 servings each
- 03This means each person brings a dish that serves 13.
Ready to run the numbers?
Open Potluck Serving Planner