Music Lesson Calculator

Help students and parents understand music lesson costs with this comprehensive calculator. Customize pricing by instrument type, lesson duration, teacher experience, and student skill level. Offer package discounts and recurring lesson options. Perfect for music schools, private instructors, and music studios looking to provide transparent pricing and convert website visitors into students.

Education

Try the Calculator

Music Lesson Calculator
🎵 Instrument Selection
📚 Lesson Details
 
👨‍🏫 Teacher Experience
Balanced experience and value, most popular choice
📦 Package Options
 

💰 Price Breakdown
$ 50.00
$
$ 0.00
$ 48.00
📅 Monthly Investment
$ 4.00
lessons
$ 0.00
$ 190.00
You save $10/month with monthly package!
🎹 Summary
Piano lessons, 30 min weekly
Prices are estimates. Actual rates vary by location and teacher. Contact us for exact pricing.
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
export function musicLessonCalculator(form: FormTs) {
// Base rates by instrument (per 30 min)
const instrumentRates: Record<string, number> = {
'piano': 40,
'guitar': 35,
'violin': 45,
'drums': 40,
'voice': 45,
'bass': 35,
'saxophone': 50,
'flute': 45,
'clarinet': 45,
'trumpet': 45,
'cello': 50,
'ukulele': 30
};
 
// Experience multipliers
const experienceMultipliers: Record<string, number> = {
'student': 0.7,
'beginner': 1.0,
'intermediate': 1.25,
'advanced': 1.5,
'professional': 2.0
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Music Lesson Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Instrument Section
const instrumentSection = form.addSubform('instrument', { title: '🎵 Instrument Selection' });
 
instrumentSection.addRow(row => {
row.addDropdown('instrument', {
label: 'Instrument',
options: [
{ id: 'piano', name: 'Piano/Keyboard' },
{ id: 'guitar', name: 'Guitar (Acoustic/Electric)' },
{ id: 'violin', name: 'Violin/Viola' },
{ id: 'drums', name: 'Drums/Percussion' },
{ id: 'voice', name: 'Voice/Singing' },
{ id: 'bass', name: 'Bass Guitar' },
{ id: 'saxophone', name: 'Saxophone' },
{ id: 'flute', name: 'Flute' },
{ id: 'clarinet', name: 'Clarinet' },
{ id: 'trumpet', name: 'Trumpet/Brass' },
{ id: 'cello', name: 'Cello' },
{ id: 'ukulele', name: 'Ukulele' }
],
defaultValue: 'piano',
isRequired: true
}, '1fr');
row.addDropdown('studentLevel', {
label: 'Student Level',
options: [
{ id: 'beginner', name: 'Beginner (0-1 years)' },
{ id: 'elementary', name: 'Elementary (1-3 years)' },
{ id: 'intermediate', name: 'Intermediate (3-5 years)' },
{ id: 'advanced', name: 'Advanced (5+ years)' },
{ id: 'professional', name: 'Professional/College' }
],
defaultValue: 'beginner',
isRequired: true,
tooltip: 'Your current skill level'
}, '1fr');
});
 
// Lesson Details Section
const lessonSection = form.addSubform('lesson', { title: '📚 Lesson Details' });
 
lessonSection.addRow(row => {
row.addRadioButton('lessonLength', {
label: 'Lesson Duration',
options: [
{ id: '30', name: '30 minutes' },
{ id: '45', name: '45 minutes' },
{ id: '60', name: '60 minutes' },
{ id: '90', name: '90 minutes' }
],
defaultValue: '30',
isRequired: true
});
});
 
lessonSection.addRow(row => {
row.addDropdown('lessonFormat', {
label: 'Lesson Format',
options: [
{ id: 'in-person', name: 'In-Person (at studio)' },
{ id: 'home', name: 'In-Home (teacher travels)' },
{ id: 'online', name: 'Online (video call)' }
],
defaultValue: 'in-person'
}, '1fr');
row.addDropdown('frequency', {
label: 'Lesson Frequency',
options: [
{ id: 'weekly', name: 'Weekly (4x/month)' },
{ id: 'biweekly', name: 'Bi-weekly (2x/month)' },
{ id: 'single', name: 'Single Lesson' }
],
defaultValue: 'weekly',
isRequired: true
}, '1fr');
});
 
// Teacher Section
const teacherSection = form.addSubform('teacher', { title: '👨‍🏫 Teacher Experience' });
 
teacherSection.addRow(row => {
row.addDropdown('teacherExperience', {
label: 'Teacher Level',
options: [
{ id: 'student', name: 'Student Teacher (learning to teach)' },
{ id: 'beginner', name: 'New Teacher (1-3 years teaching)' },
{ id: 'intermediate', name: 'Experienced (3-10 years teaching)' },
{ id: 'advanced', name: 'Senior Teacher (10+ years)' },
{ id: 'professional', name: 'Professional/Performer' }
],
defaultValue: 'intermediate',
isRequired: true
});
});
 
teacherSection.addRow(row => {
row.addTextPanel('teacherNote', {
computedValue: () => {
const experience = teacherSection.dropdown('teacherExperience')?.value() || 'intermediate';
const notes: Record<string, string> = {
'student': 'Great for young beginners, most affordable option',
'beginner': 'Enthusiastic teachers building their practice',
'intermediate': 'Balanced experience and value, most popular choice',
'advanced': 'Seasoned professionals, ideal for serious students',
'professional': 'Performers and conservatory graduates, premium instruction'
};
return notes[experience] || '';
},
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
// Package Options Section
const packageSection = form.addSubform('package', { title: '📦 Package Options' });
 
packageSection.addRow(row => {
row.addRadioButton('packageType', {
label: 'Payment Option',
options: [
{ id: 'single', name: 'Pay Per Lesson' },
{ id: 'monthly', name: 'Monthly Package (5% off)' },
{ id: 'semester', name: 'Semester Package (10% off)' }
],
defaultValue: 'monthly',
isRequired: true
});
});
 
packageSection.addRow(row => {
row.addCheckbox('materials', {
label: 'Include Lesson Materials',
defaultValue: false,
tooltip: 'Sheet music, method books, practice materials (+$15/month)'
}, '1fr');
row.addCheckbox('recital', {
label: 'Recital Fee',
defaultValue: false,
tooltip: 'Performance opportunities and recital participation (+$25/semester)'
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Price Breakdown Section
const priceSection = form.addSubform('price', { title: '💰 Price Breakdown', isCollapsible: false });
 
priceSection.addRow(row => {
row.addPriceDisplay('baseRate', {
label: 'Base Lesson Rate',
computedValue: () => {
const instrument = instrumentSection.dropdown('instrument')?.value() || 'piano';
const lessonLength = lessonSection.radioButton('lessonLength')?.value() || '30';
const teacherExp = teacherSection.dropdown('teacherExperience')?.value() || 'intermediate';
 
const baseRate = instrumentRates[instrument] || 40;
const lengthMultiplier = parseInt(lessonLength) / 30;
const expMultiplier = experienceMultipliers[teacherExp] || 1.0;
 
return Math.round(baseRate * lengthMultiplier * expMultiplier);
},
variant: 'default',
tooltip: 'Rate per lesson before discounts'
}, '1fr');
row.addPriceDisplay('formatAdjustment', {
label: 'Format Adjustment',
computedValue: () => {
const format = lessonSection.dropdown('lessonFormat')?.value() || 'in-person';
const instrument = instrumentSection.dropdown('instrument')?.value() || 'piano';
const lessonLength = lessonSection.radioButton('lessonLength')?.value() || '30';
const teacherExp = teacherSection.dropdown('teacherExperience')?.value() || 'intermediate';
 
const baseRate = instrumentRates[instrument] || 40;
const lengthMultiplier = parseInt(lessonLength) / 30;
const expMultiplier = experienceMultipliers[teacherExp] || 1.0;
const lessonRate = baseRate * lengthMultiplier * expMultiplier;
 
if (format === 'home') return Math.round(lessonRate * 0.2); // +20% for travel
if (format === 'online') return Math.round(lessonRate * -0.1); // -10% for online
return 0;
},
variant: 'default',
prefix: () => {
const format = lessonSection.dropdown('lessonFormat')?.value() || 'in-person';
if (format === 'home') return '+$';
if (format === 'online') return '-$';
return '$';
}
}, '1fr');
});
 
priceSection.addRow(row => {
row.addPriceDisplay('perLessonRate', {
label: 'Per Lesson Rate',
computedValue: () => {
const instrument = instrumentSection.dropdown('instrument')?.value() || 'piano';
const lessonLength = lessonSection.radioButton('lessonLength')?.value() || '30';
const teacherExp = teacherSection.dropdown('teacherExperience')?.value() || 'intermediate';
const format = lessonSection.dropdown('lessonFormat')?.value() || 'in-person';
const packageType = packageSection.radioButton('packageType')?.value() || 'monthly';
 
const baseRate = instrumentRates[instrument] || 40;
const lengthMultiplier = parseInt(lessonLength) / 30;
const expMultiplier = experienceMultipliers[teacherExp] || 1.0;
 
let lessonRate = baseRate * lengthMultiplier * expMultiplier;
 
// Format adjustment
if (format === 'home') lessonRate *= 1.2;
if (format === 'online') lessonRate *= 0.9;
 
// Package discount
if (packageType === 'monthly') lessonRate *= 0.95;
if (packageType === 'semester') lessonRate *= 0.90;
 
return Math.round(lessonRate);
},
variant: 'success'
});
});
 
// Monthly Cost Section
const monthlySection = form.addSubform('monthly', { title: '📅 Monthly Investment', isCollapsible: false });
 
monthlySection.addRow(row => {
row.addPriceDisplay('lessonsPerMonth', {
label: 'Lessons per Month',
computedValue: () => {
const frequency = lessonSection.dropdown('frequency')?.value() || 'weekly';
if (frequency === 'weekly') return 4;
if (frequency === 'biweekly') return 2;
return 1;
},
variant: 'default',
prefix: '',
suffix: ' lessons'
}, '1fr');
row.addPriceDisplay('addOns', {
label: 'Add-ons',
computedValue: () => {
const materials = packageSection.checkbox('materials')?.value() || false;
const recital = packageSection.checkbox('recital')?.value() || false;
 
let addOns = 0;
if (materials) addOns += 15;
if (recital) addOns += Math.round(25 / 4); // Semester fee divided by months
 
return addOns;
},
variant: 'default',
tooltip: 'Materials and recital fees'
}, '1fr');
});
 
monthlySection.addRow(row => {
row.addPriceDisplay('monthlyTotal', {
label: 'Monthly Total',
computedValue: () => {
const instrument = instrumentSection.dropdown('instrument')?.value() || 'piano';
const lessonLength = lessonSection.radioButton('lessonLength')?.value() || '30';
const teacherExp = teacherSection.dropdown('teacherExperience')?.value() || 'intermediate';
const format = lessonSection.dropdown('lessonFormat')?.value() || 'in-person';
const frequency = lessonSection.dropdown('frequency')?.value() || 'weekly';
const packageType = packageSection.radioButton('packageType')?.value() || 'monthly';
const materials = packageSection.checkbox('materials')?.value() || false;
const recital = packageSection.checkbox('recital')?.value() || false;
 
const baseRate = instrumentRates[instrument] || 40;
const lengthMultiplier = parseInt(lessonLength) / 30;
const expMultiplier = experienceMultipliers[teacherExp] || 1.0;
 
let lessonRate = baseRate * lengthMultiplier * expMultiplier;
 
if (format === 'home') lessonRate *= 1.2;
if (format === 'online') lessonRate *= 0.9;
 
if (packageType === 'monthly') lessonRate *= 0.95;
if (packageType === 'semester') lessonRate *= 0.90;
 
let lessonsPerMonth = 4;
if (frequency === 'biweekly') lessonsPerMonth = 2;
if (frequency === 'single') lessonsPerMonth = 1;
 
let monthlyTotal = lessonRate * lessonsPerMonth;
 
if (materials) monthlyTotal += 15;
if (recital) monthlyTotal += Math.round(25 / 4);
 
return Math.round(monthlyTotal);
},
variant: 'large'
});
});
 
monthlySection.addRow(row => {
row.addTextPanel('savings', {
computedValue: () => {
const packageType = packageSection.radioButton('packageType')?.value() || 'monthly';
const instrument = instrumentSection.dropdown('instrument')?.value() || 'piano';
const lessonLength = lessonSection.radioButton('lessonLength')?.value() || '30';
const teacherExp = teacherSection.dropdown('teacherExperience')?.value() || 'intermediate';
const format = lessonSection.dropdown('lessonFormat')?.value() || 'in-person';
const frequency = lessonSection.dropdown('frequency')?.value() || 'weekly';
 
if (packageType === 'single') return 'Pay per lesson - most flexible option';
 
const baseRate = instrumentRates[instrument] || 40;
const lengthMultiplier = parseInt(lessonLength) / 30;
const expMultiplier = experienceMultipliers[teacherExp] || 1.0;
 
let lessonRate = baseRate * lengthMultiplier * expMultiplier;
if (format === 'home') lessonRate *= 1.2;
if (format === 'online') lessonRate *= 0.9;
 
let lessonsPerMonth = 4;
if (frequency === 'biweekly') lessonsPerMonth = 2;
 
const fullPrice = lessonRate * lessonsPerMonth;
const discount = packageType === 'monthly' ? 0.05 : 0.10;
const savings = Math.round(fullPrice * discount);
 
return `You save $${savings}/month with ${packageType} package!`;
},
customStyles: { 'font-size': '0.95rem', 'color': '#059669', 'text-align': 'center', 'font-weight': '500' }
});
});
 
// Summary Section
const summarySection = form.addSubform('summary', {
title: '🎹 Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryText', {
computedValue: () => {
const instrument = instrumentSection.dropdown('instrument')?.value() || 'piano';
const lessonLength = lessonSection.radioButton('lessonLength')?.value() || '30';
const frequency = lessonSection.dropdown('frequency')?.value() || 'weekly';
 
const instrumentNames: Record<string, string> = {
'piano': 'Piano', 'guitar': 'Guitar', 'violin': 'Violin',
'drums': 'Drums', 'voice': 'Voice', 'bass': 'Bass',
'saxophone': 'Saxophone', 'flute': 'Flute', 'clarinet': 'Clarinet',
'trumpet': 'Trumpet', 'cello': 'Cello', 'ukulele': 'Ukulele'
};
 
const freqLabels: Record<string, string> = {
'weekly': 'weekly', 'biweekly': 'bi-weekly', 'single': 'one-time'
};
 
return `${instrumentNames[instrument] || 'Piano'} lessons, ${lessonLength} min ${freqLabels[frequency] || 'weekly'}`;
},
customStyles: { 'font-size': '1rem', 'font-weight': '600', 'text-align': 'center', 'color': '#1e293b' }
});
});
 
summarySection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Prices are estimates. Actual rates vary by location and teacher. Contact us for exact pricing.',
customStyles: { 'font-size': '0.8rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
form.configureSubmitButton({
label: 'Book Trial Lesson'
});
}
 

Frequently Asked Questions

How much do music lessons typically cost?

Music lesson rates vary widely based on location, teacher experience, and instrument. Typical rates range from $30-$60 for 30-minute lessons with beginner teachers, to $80-$150+ for experienced professionals or specialized instruments.

Are longer lessons better?

It depends on the student's age and level. Young beginners (under 8) often do best with 30-minute lessons. Intermediate students benefit from 45-60 minute lessons, while advanced students may need 60-90 minutes for technique and repertoire work.

Do package deals save money?

Yes, most teachers offer 5-10% discounts for monthly packages (4 lessons) and 10-15% for semester commitments. Packages also ensure consistent scheduling and better progress.

Should I choose in-person or online lessons?

Both have benefits. In-person allows for hands-on correction and better audio quality. Online offers convenience and often lower rates. Many teachers offer hybrid options.

Can I customize this calculator?

Yes. You can set your own rates, instruments, and package options. Embed it on your music school website to help prospective students understand your pricing.