Cooking Classes Calculator

Get accurate pricing for cooking classes with this comprehensive calculator. Calculate costs based on cuisine type, class format, skill level, and ingredient quality. Whether you teach baking, international cuisine, or specialized techniques, this tool helps culinary schools, private chefs, and cooking instructors provide transparent pricing.

Education

Try the Calculator

Cooking Classes Calculator
๐Ÿณ Cuisine & Style
 
๐Ÿ‘ฅ Class Format
 
๐Ÿ‘ค Student Information
๐Ÿ‘จโ€๐Ÿณ Chef/Instructor
 
๐Ÿฅ— Ingredients & Equipment
 
๐Ÿ“ฆ Package Options
โœจ Additional Services

๐Ÿ’ฐ Pricing
$ 140.00
$ 25.00
๐Ÿงพ Summary
$ 165.00
$165/class
1 class ร— 120 minutes
Price per person. Dietary restrictions accommodated. Please inform us of any allergies in advance.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
export function cookingClassesCalculator(form: FormTs) {
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Cooking Classes Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Cuisine Section
const cuisineSection = form.addSubform('cuisine', { title: '๐Ÿณ Cuisine & Style' });
 
cuisineSection.addRow(row => {
row.addRadioButton('cuisineType', {
label: 'Cuisine Type',
options: [
{ id: 'general', name: 'General Cooking Skills' },
{ id: 'italian', name: 'Italian Cuisine' },
{ id: 'french', name: 'French Cuisine' },
{ id: 'asian', name: 'Asian Cuisine' },
{ id: 'baking', name: 'Baking & Pastry' },
{ id: 'specialty', name: 'Specialty/Fusion' }
],
defaultValue: 'general',
orientation: 'vertical'
});
});
 
cuisineSection.addRow(row => {
row.addDropdown('classStyle', {
label: 'Class Style',
options: [
{ id: 'hands-on', name: 'Hands-on Cooking' },
{ id: 'demonstration', name: 'Chef Demonstration' },
{ id: 'competition', name: 'Cooking Competition' },
{ id: 'team-building', name: 'Team Building Event' },
{ id: 'date-night', name: 'Date Night/Couples' }
],
defaultValue: 'hands-on'
}, '1fr');
});
 
// Class Format Section
const formatSection = form.addSubform('format', { title: '๐Ÿ‘ฅ Class Format' });
 
formatSection.addRow(row => {
row.addRadioButton('classType', {
label: 'Class Type',
options: [
{ id: 'private', name: 'Private Lesson (1-2 people)' },
{ id: 'small-group', name: 'Small Group (3-6 people)' },
{ id: 'standard', name: 'Standard Class (7-12 people)' },
{ id: 'large', name: 'Large Class (13-20 people)' }
],
defaultValue: 'small-group',
orientation: 'horizontal'
});
});
 
formatSection.addRow(row => {
row.addDropdown('duration', {
label: 'Class Duration',
options: [
{ id: '90', name: '1.5 hours' },
{ id: '120', name: '2 hours' },
{ id: '180', name: '3 hours' },
{ id: '240', name: '4 hours (full course)' },
{ id: '360', name: '6 hours (intensive)' }
],
defaultValue: '120',
isRequired: true
}, '1fr');
row.addDropdown('location', {
label: 'Location',
options: [
{ id: 'studio', name: 'Cooking Studio/School' },
{ id: 'home', name: 'In-Home (chef travels)' },
{ id: 'online', name: 'Online/Virtual' },
{ id: 'outdoor', name: 'Outdoor/BBQ' }
],
defaultValue: 'studio'
}, '1fr');
});
 
// Student Info Section
const studentSection = form.addSubform('student', { title: '๐Ÿ‘ค Student Information' });
 
studentSection.addRow(row => {
row.addDropdown('skillLevel', {
label: 'Skill Level',
options: [
{ id: 'beginner', name: 'Beginner (Little to no experience)' },
{ id: 'home-cook', name: 'Home Cook (Basic skills)' },
{ id: 'intermediate', name: 'Intermediate (Comfortable cooking)' },
{ id: 'advanced', name: 'Advanced (Complex techniques)' },
{ id: 'professional', name: 'Professional Development' }
],
defaultValue: 'home-cook',
isRequired: true
}, '1fr');
row.addDropdown('focus', {
label: 'Learning Focus',
options: [
{ id: 'technique', name: 'Cooking Techniques' },
{ id: 'recipes', name: 'Recipe Mastery' },
{ id: 'meal-prep', name: 'Meal Planning/Prep' },
{ id: 'healthy', name: 'Healthy Cooking' },
{ id: 'entertainment', name: 'Entertainment/Party' }
],
defaultValue: 'technique'
}, '1fr');
});
 
// Instructor Section
const instructorSection = form.addSubform('instructor', { title: '๐Ÿ‘จโ€๐Ÿณ Chef/Instructor' });
 
instructorSection.addRow(row => {
row.addRadioButton('chefLevel', {
label: 'Chef Experience',
options: [
{ id: 'culinary-student', name: 'Culinary Student' },
{ id: 'junior', name: 'Junior Chef (1-5 yrs)' },
{ id: 'experienced', name: 'Experienced Chef (5-15 yrs)' },
{ id: 'executive', name: 'Executive Chef (15+ yrs)' },
{ id: 'celebrity', name: 'Celebrity/Award-Winning Chef' }
],
defaultValue: 'experienced',
orientation: 'vertical'
});
});
 
// Ingredients Section
const ingredientsSection = form.addSubform('ingredients', { title: '๐Ÿฅ— Ingredients & Equipment' });
 
ingredientsSection.addRow(row => {
row.addRadioButton('ingredientQuality', {
label: 'Ingredient Quality',
options: [
{ id: 'standard', name: 'Standard Quality' },
{ id: 'premium', name: 'Premium/Organic' },
{ id: 'luxury', name: 'Luxury/Specialty' }
],
defaultValue: 'standard',
orientation: 'horizontal'
});
});
 
ingredientsSection.addRow(row => {
row.addCheckbox('wineParingOption', {
label: 'Wine Pairing Included',
defaultValue: false
}, '1fr');
row.addCheckbox('takeHome', {
label: 'Take-Home Portions',
defaultValue: false
}, '1fr');
});
 
ingredientsSection.addRow(row => {
row.addCheckbox('apronIncluded', {
label: 'Apron Provided',
defaultValue: true
}, '1fr');
row.addCheckbox('recipeBook', {
label: 'Recipe Cards/Book',
defaultValue: true
}, '1fr');
});
 
// Package Section
const packageSection = form.addSubform('package', { title: '๐Ÿ“ฆ Package Options' });
 
packageSection.addRow(row => {
row.addDropdown('paymentPlan', {
label: 'Payment Plan',
options: [
{ id: 'single', name: 'Single Class' },
{ id: '4-pack', name: '4-Class Package (5% off)' },
{ id: '8-pack', name: '8-Class Package (10% off)' },
{ id: '12-pack', name: '12-Class Package (15% off)' },
{ id: 'membership', name: 'Monthly Membership (20% off)' }
],
defaultValue: 'single',
isRequired: true
}, '1fr');
});
 
// Add-ons Section
const addonsSection = form.addSubform('addons', { title: 'โœจ Additional Services' });
 
addonsSection.addRow(row => {
row.addCheckbox('privateChefDinner', {
label: 'Private Chef Dinner Experience',
defaultValue: false
}, '1fr');
row.addCheckbox('marketTour', {
label: 'Market/Grocery Tour',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('videoRecording', {
label: 'Video Recording of Class',
defaultValue: false
}, '1fr');
row.addCheckbox('certificate', {
label: 'Completion Certificate',
defaultValue: false
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Pricing Section
const pricingSection = form.addSubform('pricing', { title: '๐Ÿ’ฐ Pricing', isCollapsible: false });
 
const calculatePrice = () => {
const cuisineType = cuisineSection.radioButton('cuisineType')?.value() || 'general';
const classStyle = cuisineSection.dropdown('classStyle')?.value() || 'hands-on';
const classType = formatSection.radioButton('classType')?.value() || 'small-group';
const duration = parseInt(formatSection.dropdown('duration')?.value() || '120');
const location = formatSection.dropdown('location')?.value() || 'studio';
const skillLevel = studentSection.dropdown('skillLevel')?.value() || 'home-cook';
const chefLevel = instructorSection.radioButton('chefLevel')?.value() || 'experienced';
const ingredientQuality = ingredientsSection.radioButton('ingredientQuality')?.value() || 'standard';
const paymentPlan = packageSection.dropdown('paymentPlan')?.value() || 'single';
 
// Base rate per person per hour
const baseRates: Record<string, number> = {
'culinary-student': 30,
'junior': 45,
'experienced': 70,
'executive': 100,
'celebrity': 175
};
let hourlyRate = baseRates[chefLevel] || 70;
 
// Cuisine type adjustment
const cuisineMult: Record<string, number> = {
'general': 1.0,
'italian': 1.1,
'french': 1.25,
'asian': 1.15,
'baking': 1.15,
'specialty': 1.3
};
hourlyRate *= cuisineMult[cuisineType] || 1.0;
 
// Class style adjustment
const styleMult: Record<string, number> = {
'hands-on': 1.0,
'demonstration': 0.7,
'competition': 1.3,
'team-building': 1.4,
'date-night': 1.2
};
hourlyRate *= styleMult[classStyle] || 1.0;
 
// Duration calculation
const hours = duration / 60;
let classPrice = hourlyRate * hours;
 
// Class type adjustment (per person)
const classMult: Record<string, number> = {
'private': 2.5,
'small-group': 1.0,
'standard': 0.75,
'large': 0.6
};
classPrice *= classMult[classType] || 1.0;
 
// Location adjustment
const locationMult: Record<string, number> = {
'studio': 1.0,
'home': 1.4,
'online': 0.6,
'outdoor': 1.2
};
classPrice *= locationMult[location] || 1.0;
 
// Skill level adjustment
const levelMult: Record<string, number> = {
'beginner': 1.0,
'home-cook': 1.0,
'intermediate': 1.1,
'advanced': 1.2,
'professional': 1.35
};
classPrice *= levelMult[skillLevel] || 1.0;
 
// Ingredient quality adjustment
let ingredientCost = 0;
const ingredientMult: Record<string, number> = {
'standard': 15,
'premium': 30,
'luxury': 55
};
ingredientCost = ingredientMult[ingredientQuality] || 15;
 
// Add-ons for ingredients section
if (ingredientsSection.checkbox('wineParingOption')?.value()) ingredientCost += 25;
if (ingredientsSection.checkbox('takeHome')?.value()) ingredientCost += 15;
if (ingredientsSection.checkbox('apronIncluded')?.value()) ingredientCost += 5;
if (ingredientsSection.checkbox('recipeBook')?.value()) ingredientCost += 5;
 
// Package calculations
const packageDiscount: Record<string, number> = {
'single': 0,
'4-pack': 0.05,
'8-pack': 0.10,
'12-pack': 0.15,
'membership': 0.20
};
const discount = packageDiscount[paymentPlan] || 0;
 
const packageClasses: Record<string, number> = {
'single': 1,
'4-pack': 4,
'8-pack': 8,
'12-pack': 12,
'membership': 4
};
const numClasses = packageClasses[paymentPlan] || 1;
 
// Add-ons
let addonsPrice = 0;
if (addonsSection.checkbox('privateChefDinner')?.value()) addonsPrice += 200;
if (addonsSection.checkbox('marketTour')?.value()) addonsPrice += 75;
if (addonsSection.checkbox('videoRecording')?.value()) addonsPrice += 35;
if (addonsSection.checkbox('certificate')?.value()) addonsPrice += 20;
 
const classWithIngredients = classPrice + ingredientCost;
const packageTotal = (classWithIngredients * numClasses * (1 - discount)) + addonsPrice;
const effectivePerClass = (packageTotal - addonsPrice) / numClasses;
 
return {
classPrice: Math.round(classPrice),
ingredientCost: Math.round(ingredientCost),
classWithIngredients: Math.round(classWithIngredients),
discount: Math.round(discount * 100),
packageTotal: Math.round(packageTotal),
numClasses,
effectivePerClass: Math.round(effectivePerClass),
addonsPrice: Math.round(addonsPrice),
duration
};
};
 
pricingSection.addRow(row => {
row.addPriceDisplay('perClass', {
label: 'Per Class',
computedValue: () => calculatePrice().classPrice,
variant: 'default'
}, '1fr');
row.addPriceDisplay('ingredients', {
label: 'Ingredients',
computedValue: () => calculatePrice().ingredientCost,
variant: 'default'
}, '1fr');
});
 
pricingSection.addRow(row => {
row.addTextPanel('discount', {
computedValue: () => {
const price = calculatePrice();
if (price.discount > 0) {
return `Package Discount: ${price.discount}% off`;
}
return 'No package discount (single class)';
},
customStyles: { 'font-size': '0.95rem', 'color': '#16a34a', 'font-weight': '500' },
isVisible: () => calculatePrice().discount > 0
});
});
 
// Summary Section
const summarySection = form.addSubform('summary', {
title: '๐Ÿงพ Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
summarySection.addRow(row => {
row.addPriceDisplay('total', {
label: 'Total',
computedValue: () => calculatePrice().packageTotal,
variant: 'large'
}, '1fr');
row.addTextPanel('perClassFinal', {
computedValue: () => {
const price = calculatePrice();
return `$${price.effectivePerClass}/class`;
},
customStyles: { 'font-size': '1rem', 'color': '#64748b', 'text-align': 'center', 'align-self': 'center' }
}, '1fr');
});
 
summarySection.addRow(row => {
row.addTextPanel('packageInfo', {
computedValue: () => {
const price = calculatePrice();
return `${price.numClasses} class${price.numClasses > 1 ? 'es' : ''} ร— ${price.duration} minutes`;
},
customStyles: { 'font-size': '0.9rem', 'color': '#475569', 'text-align': 'center' }
});
});
 
summarySection.addRow(row => {
row.addTextPanel('note', {
computedValue: () => 'Price per person. Dietary restrictions accommodated. Please inform us of any allergies in advance.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
form.configureSubmitButton({
label: 'Book Cooking Class'
});
}
 

Frequently Asked Questions

How much do cooking classes cost?

Cooking class prices vary based on cuisine, instructor experience, and class format. Group classes typically range from $50-150 per session, while private lessons can cost $100-300+ per hour. Premium ingredients and specialized cuisines may cost more.

Are ingredients included?

Most cooking classes include ingredients in the price. Our calculator allows you to specify whether ingredients are included and at what quality level (basic, premium, or specialty).

Do I get to eat what I cook?

In most cooking classes, participants enjoy the dishes they prepare. Some classes also include take-home portions or recipes.

What should I bring to class?

Most classes provide all equipment. Students typically need to bring an apron (sometimes provided), closed-toe shoes, and hair ties. Check with your instructor for specific requirements.

Can I customize this for my culinary school?

Yes! Culinary schools and private chefs can customize cuisines, class sizes, ingredient costs, and special features to match their offerings.