Dance School Calculator

Get accurate pricing for dance lessons with this comprehensive calculator. Whether you're interested in ballet, hip hop, salsa, ballroom, or preparing for your wedding dance, this tool covers all styles and levels. Calculate costs for drop-in classes, class packs, and unlimited memberships. Perfect for dance studios, independent instructors, and performing arts schools.

Health & FitnessPopular

Try the Calculator

Dance School Calculator
๐Ÿ’ƒ Dance Style
๐Ÿ‘ฅ Lesson Type
 
โฑ๏ธ Session Details
๐Ÿ“ฆ Packages & Memberships
โœจ Add-ons

๐Ÿ’ฐ Pricing
$ 23.00
๐Ÿงพ Summary
$ 23.00
$ 92.00
Prices may vary by location. Dance attire not included.
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
422
423
424
425
426
427
428
429
export function danceSchoolCalculator(form: FormTs) {
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Dance School Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Dance Style Section
const styleSection = form.addSubform('style', { title: '๐Ÿ’ƒ Dance Style' });
 
styleSection.addRow(row => {
row.addDropdown('danceStyle', {
label: 'Dance Style',
options: [
{ id: 'ballet', name: 'Ballet' },
{ id: 'jazz', name: 'Jazz' },
{ id: 'contemporary', name: 'Contemporary/Modern' },
{ id: 'hip-hop', name: 'Hip Hop' },
{ id: 'tap', name: 'Tap' },
{ id: 'ballroom', name: 'Ballroom' },
{ id: 'latin', name: 'Latin (Salsa, Bachata)' },
{ id: 'swing', name: 'Swing/Lindy Hop' },
{ id: 'belly', name: 'Belly Dance' },
{ id: 'pole', name: 'Pole Dancing' },
{ id: 'breakdance', name: 'Breakdancing' },
{ id: 'wedding', name: 'Wedding Dance' }
],
defaultValue: 'ballet',
isRequired: true
}, '1fr');
row.addDropdown('level', {
label: 'Experience Level',
options: [
{ id: 'absolute-beginner', name: 'Absolute Beginner' },
{ id: 'beginner', name: 'Beginner' },
{ id: 'intermediate', name: 'Intermediate' },
{ id: 'advanced', name: 'Advanced' },
{ id: 'pre-professional', name: 'Pre-Professional' }
],
defaultValue: 'beginner'
}, '1fr');
});
 
styleSection.addRow(row => {
row.addDropdown('ageGroup', {
label: 'Age Group',
options: [
{ id: 'toddler', name: 'Toddler (2-4)' },
{ id: 'child', name: 'Child (5-8)' },
{ id: 'preteen', name: 'Pre-Teen (9-12)' },
{ id: 'teen', name: 'Teen (13-17)' },
{ id: 'adult', name: 'Adult (18-54)' },
{ id: 'senior', name: 'Senior (55+)' }
],
defaultValue: 'adult'
}, '1fr');
row.addDropdown('goal', {
label: 'Your Goal',
options: [
{ id: 'fun', name: 'Fun & Fitness' },
{ id: 'skill', name: 'Skill Development' },
{ id: 'social', name: 'Social Dancing' },
{ id: 'performance', name: 'Performance/Recital' },
{ id: 'competition', name: 'Competition' },
{ id: 'wedding', name: 'Wedding Preparation' }
],
defaultValue: 'fun'
}, '1fr');
});
 
// Lesson Type Section
const lessonSection = form.addSubform('lesson', { title: '๐Ÿ‘ฅ Lesson Type' });
 
lessonSection.addRow(row => {
row.addRadioButton('lessonType', {
label: 'Class Format',
options: [
{ id: 'private', name: 'Private (1-on-1)' },
{ id: 'semi-private', name: 'Semi-Private (2-3)' },
{ id: 'group', name: 'Group Class' },
{ id: 'couples', name: 'Couples Lesson' },
{ id: 'workshop', name: 'Workshop/Masterclass' },
{ id: 'intensive', name: 'Intensive/Camp' }
],
defaultValue: 'group',
orientation: 'vertical',
isRequired: true
});
});
 
// Session Details Section
const sessionSection = form.addSubform('session', { title: 'โฑ๏ธ Session Details' });
 
sessionSection.addRow(row => {
row.addDropdown('duration', {
label: 'Class Duration',
options: [
{ id: '30', name: '30 Minutes' },
{ id: '45', name: '45 Minutes' },
{ id: '60', name: '1 Hour' },
{ id: '90', name: '1.5 Hours' },
{ id: '120', name: '2 Hours' }
],
defaultValue: '60',
isRequired: true
}, '1fr');
row.addDropdown('instructorLevel', {
label: 'Instructor Level',
options: [
{ id: 'assistant', name: 'Assistant Instructor' },
{ id: 'certified', name: 'Certified Instructor' },
{ id: 'senior', name: 'Senior Instructor' },
{ id: 'master', name: 'Master Teacher' },
{ id: 'professional', name: 'Professional Dancer' }
],
defaultValue: 'certified'
}, '1fr');
});
 
sessionSection.addRow(row => {
row.addDropdown('frequency', {
label: 'Classes per Week',
options: [
{ id: '1', name: '1x per week' },
{ id: '2', name: '2x per week' },
{ id: '3', name: '3x per week' },
{ id: '4', name: '4x per week' },
{ id: '5', name: '5+ per week (unlimited)' }
],
defaultValue: '1'
}, '1fr');
row.addInteger('weddingLessons', {
label: 'Number of Lessons',
min: 1,
max: 20,
defaultValue: 6,
isVisible: () => styleSection.dropdown('danceStyle')?.value() === 'wedding'
}, '1fr');
});
 
// Intensive/Workshop Details
const intensiveSection = form.addSubform('intensive', {
title: '๐ŸŽญ Intensive Details',
isVisible: () => ['workshop', 'intensive'].includes(lessonSection.radioButton('lessonType')?.value() || '')
});
 
intensiveSection.addRow(row => {
row.addDropdown('intensiveType', {
label: 'Intensive Type',
options: [
{ id: 'single-workshop', name: 'Single Workshop (2-3 hours)' },
{ id: 'weekend', name: 'Weekend Intensive' },
{ id: 'week', name: 'Week-Long Intensive' },
{ id: 'summer', name: 'Summer Intensive' }
],
defaultValue: 'single-workshop'
}, '1fr');
row.addInteger('intensiveDays', {
label: 'Number of Days',
min: 1,
max: 30,
defaultValue: 5,
isVisible: () => intensiveSection.dropdown('intensiveType')?.value() !== 'single-workshop'
}, '1fr');
});
 
// Package Section
const packageSection = form.addSubform('package', { title: '๐Ÿ“ฆ Packages & Memberships' });
 
packageSection.addRow(row => {
row.addDropdown('package', {
label: 'Package Type',
options: [
{ id: 'drop-in', name: 'Drop-In Class' },
{ id: 'class-pack-5', name: '5 Class Pack (5% off)' },
{ id: 'class-pack-10', name: '10 Class Pack (10% off)' },
{ id: 'class-pack-20', name: '20 Class Pack (15% off)' },
{ id: 'monthly-unlimited', name: 'Monthly Unlimited' },
{ id: 'yearly', name: 'Annual Membership' }
],
defaultValue: 'drop-in'
}, '1fr');
});
 
// Add-ons Section
const addonsSection = form.addSubform('addons', { title: 'โœจ Add-ons' });
 
addonsSection.addRow(row => {
row.addCheckbox('registrationFee', {
label: 'Registration Fee (+$25)',
defaultValue: false,
tooltip: 'One-time new student fee'
}, '1fr');
row.addCheckbox('costumeRental', {
label: 'Costume/Outfit Rental (+$30)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('shoes', {
label: 'Dance Shoes (+$40-80)',
defaultValue: false
}, '1fr');
row.addCheckbox('recitalFee', {
label: 'Recital Fee (+$75)',
defaultValue: false,
isVisible: () => styleSection.dropdown('goal')?.value() === 'performance'
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('videoReview', {
label: 'Video Review (+$20)',
defaultValue: false
}, '1fr');
row.addCheckbox('choreography', {
label: 'Custom Choreography (+$100)',
defaultValue: false,
isVisible: () => styleSection.dropdown('danceStyle')?.value() === 'wedding'
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Pricing Section
const pricingSection = form.addSubform('pricing', { title: '๐Ÿ’ฐ Pricing', isCollapsible: false });
 
const calculatePrice = () => {
const danceStyle = styleSection.dropdown('danceStyle')?.value() || 'ballet';
const level = styleSection.dropdown('level')?.value() || 'beginner';
const lessonType = lessonSection.radioButton('lessonType')?.value() || 'group';
const duration = parseInt(sessionSection.dropdown('duration')?.value() || '60');
const instructorLevel = sessionSection.dropdown('instructorLevel')?.value() || 'certified';
const frequency = parseInt(sessionSection.dropdown('frequency')?.value() || '1');
const packageType = packageSection.dropdown('package')?.value() || 'drop-in';
 
// Base rates per hour by lesson type
const lessonRates: Record<string, number> = {
'private': 75,
'semi-private': 50,
'group': 20,
'couples': 90,
'workshop': 0,
'intensive': 0
};
 
let baseRate = lessonRates[lessonType] || 20;
 
// Dance style multiplier
const styleMult: Record<string, number> = {
'ballet': 1.15,
'jazz': 1.0,
'contemporary': 1.1,
'hip-hop': 1.0,
'tap': 1.0,
'ballroom': 1.2,
'latin': 1.1,
'swing': 1.0,
'belly': 1.0,
'pole': 1.3,
'breakdance': 1.1,
'wedding': 1.25
};
baseRate *= styleMult[danceStyle] || 1.0;
 
// Instructor level
const instructorMult: Record<string, number> = {
'assistant': 0.8,
'certified': 1.0,
'senior': 1.25,
'master': 1.5,
'professional': 2.0
};
baseRate *= instructorMult[instructorLevel] || 1.0;
 
// Level adjustment
const levelMult: Record<string, number> = {
'absolute-beginner': 1.0,
'beginner': 1.0,
'intermediate': 1.05,
'advanced': 1.15,
'pre-professional': 1.3
};
baseRate *= levelMult[level] || 1.0;
 
// Duration adjustment
let classPrice = baseRate * (duration / 60);
 
// Workshop/Intensive pricing
if (lessonType === 'workshop' || lessonType === 'intensive') {
const intensiveType = intensiveSection.dropdown('intensiveType')?.value() || 'single-workshop';
const days = intensiveSection.integer('intensiveDays')?.value() || 5;
const intensiveRates: Record<string, number> = {
'single-workshop': 45,
'weekend': 150,
'week': 300,
'summer': 200
};
if (intensiveType === 'single-workshop') {
classPrice = intensiveRates[intensiveType] ?? 0;
} else if (intensiveType === 'summer') {
classPrice = (intensiveRates[intensiveType] ?? 0) * days;
} else {
classPrice = (intensiveRates[intensiveType] ?? 0) * (days / 2);
}
}
 
// Wedding dance specific
if (danceStyle === 'wedding') {
const weddingLessons = sessionSection.integer('weddingLessons')?.value() || 6;
const weddingPackagePrice = baseRate * (duration / 60) * weddingLessons * 0.9;
if (lessonType === 'private' || lessonType === 'couples') {
classPrice = weddingPackagePrice / weddingLessons;
}
}
 
// Add-ons
let addons = 0;
if (addonsSection.checkbox('registrationFee')?.value()) addons += 25;
if (addonsSection.checkbox('costumeRental')?.value()) addons += 30;
if (addonsSection.checkbox('shoes')?.value()) addons += 60;
if (addonsSection.checkbox('recitalFee')?.value()) addons += 75;
if (addonsSection.checkbox('videoReview')?.value()) addons += 20;
if (addonsSection.checkbox('choreography')?.value()) addons += 100;
 
// Package discounts and calculations
const packageDiscounts: Record<string, number> = {
'drop-in': 0,
'class-pack-5': 0.05,
'class-pack-10': 0.10,
'class-pack-20': 0.15,
'monthly-unlimited': 0.25,
'yearly': 0.35
};
const discount = packageDiscounts[packageType] || 0;
 
const packageQuantities: Record<string, number> = {
'drop-in': 1,
'class-pack-5': 5,
'class-pack-10': 10,
'class-pack-20': 20,
'monthly-unlimited': frequency * 4,
'yearly': frequency * 48
};
const sessions = packageQuantities[packageType] || 1;
 
const discountedPrice = classPrice * (1 - discount);
let packageTotal = discountedPrice * sessions + addons;
 
// Monthly unlimited cap
if (packageType === 'monthly-unlimited') {
const unlimitedMonthly = Math.min(packageTotal, 150 * (frequency / 3));
packageTotal = unlimitedMonthly + addons;
}
 
const monthlyEstimate = discountedPrice * frequency * 4;
 
return {
perClass: Math.round(classPrice),
discountedClass: Math.round(discountedPrice),
packageTotal: Math.round(packageTotal),
monthlyEstimate: Math.round(monthlyEstimate),
discount: Math.round(discount * 100),
sessions,
addons: Math.round(addons),
duration
};
};
 
pricingSection.addRow(row => {
row.addPriceDisplay('perClass', {
label: () => `Per Class (${calculatePrice().duration} min)`,
computedValue: () => calculatePrice().perClass,
variant: 'default'
}, '1fr');
row.addPriceDisplay('discounted', {
label: () => `After ${calculatePrice().discount}% Discount`,
computedValue: () => calculatePrice().discountedClass,
variant: 'success',
isVisible: () => calculatePrice().discount > 0
}, '1fr');
});
 
pricingSection.addRow(row => {
row.addPriceDisplay('addons', {
label: 'Add-ons & Fees',
computedValue: () => calculatePrice().addons,
variant: 'default',
isVisible: () => calculatePrice().addons > 0
});
});
 
// Summary Section
const summarySection = form.addSubform('summary', {
title: '๐Ÿงพ Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
summarySection.addRow(row => {
row.addPriceDisplay('total', {
label: () => calculatePrice().sessions > 1 ? `Package Total (${calculatePrice().sessions} classes)` : 'Class Total',
computedValue: () => calculatePrice().packageTotal,
variant: 'large'
}, '1fr');
row.addPriceDisplay('monthly', {
label: 'Monthly Estimate',
computedValue: () => calculatePrice().monthlyEstimate,
variant: 'default',
isVisible: () => calculatePrice().sessions === 1
}, '1fr');
});
 
summarySection.addRow(row => {
row.addTextPanel('note', {
computedValue: () => 'Prices may vary by location. Dance attire not included.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
form.configureSubmitButton({
label: 'Register for Classes'
});
}
 

Frequently Asked Questions

How much do dance lessons cost?

Group classes typically cost $15-30 per class. Private lessons range from $50-150 per hour depending on the instructor and style. Packages and memberships offer 10-25% savings.

What age can children start dance?

Most studios offer creative movement for toddlers (2-3 years). Formal dance training typically begins at age 4-5 for ballet, with other styles starting around age 6-7.

How many lessons do I need for my wedding dance?

Most couples need 6-10 lessons for a basic wedding dance. Complex choreography may require 12-15 lessons. Start at least 2-3 months before your wedding.

Are drop-in classes or packages better?

If you plan to attend regularly (1+ times per week), packages save 10-25%. Drop-ins are better for occasional dancers or those trying different styles.

Can dance studios customize this calculator?

Yes! Dance studios and instructors can customize styles, pricing, packages, and add-ons to match their offerings and embed it on their website.