Art Lessons Calculator

Get accurate pricing for art lessons with this comprehensive calculator. Calculate costs based on art medium, lesson duration, skill level, and instructor qualifications. Whether you teach painting, drawing, sculpture, or mixed media, this tool helps art schools, studios, and private instructors provide transparent pricing to students.

Education

Try the Calculator

Art Lessons Calculator
๐ŸŽจ Art Medium
 
๐Ÿ‘ฅ Class Format
 
๐Ÿ‘ค Student Information
๐Ÿ‘ฉโ€๐ŸŽจ Instructor Level
 
๐Ÿ–Œ๏ธ Materials & Supplies
 
๐Ÿ“ฆ Package Options
โœจ Additional Services

๐Ÿ’ฐ Pricing
$ 90.00
$ 10.00
Package Discount: 5% off
๐Ÿงพ Summary
$ 380.00
$95/lesson
4 lessons ร— 90 minutes
Prices may vary based on specific project requirements. Trial lessons may be available at a reduced rate.
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
export function artLessonsCalculator(form: FormTs) {
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Art Lessons Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Art Medium Section
const mediumSection = form.addSubform('medium', { title: '๐ŸŽจ Art Medium' });
 
mediumSection.addRow(row => {
row.addRadioButton('artType', {
label: 'Primary Medium',
options: [
{ id: 'drawing', name: 'Drawing (Pencil, Charcoal)' },
{ id: 'painting', name: 'Painting (Oil, Acrylic, Watercolor)' },
{ id: 'sculpture', name: 'Sculpture & 3D Art' },
{ id: 'digital', name: 'Digital Art' },
{ id: 'mixed', name: 'Mixed Media' }
],
defaultValue: 'drawing',
orientation: 'vertical'
});
});
 
mediumSection.addRow(row => {
row.addDropdown('paintingType', {
label: 'Painting Type',
options: [
{ id: 'watercolor', name: 'Watercolor' },
{ id: 'acrylic', name: 'Acrylic' },
{ id: 'oil', name: 'Oil Painting' },
{ id: 'gouache', name: 'Gouache' },
{ id: 'pastel', name: 'Pastel' }
],
defaultValue: 'acrylic',
isVisible: () => mediumSection.radioButton('artType')?.value() === 'painting'
}, '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-on-1)' },
{ id: 'semi-private', name: 'Semi-Private (2-3 students)' },
{ id: 'small-group', name: 'Small Group (4-6 students)' },
{ id: 'large-group', name: 'Large Group (7-12 students)' }
],
defaultValue: 'private',
orientation: 'horizontal'
});
});
 
formatSection.addRow(row => {
row.addDropdown('duration', {
label: 'Lesson Duration',
options: [
{ id: '60', name: '1 hour' },
{ id: '90', name: '1.5 hours' },
{ id: '120', name: '2 hours' },
{ id: '180', name: '3 hours (workshop)' }
],
defaultValue: '90',
isRequired: true
}, '1fr');
row.addDropdown('frequency', {
label: 'Frequency',
options: [
{ id: 'single', name: 'Single Session' },
{ id: 'weekly', name: 'Weekly' },
{ id: 'biweekly', name: 'Bi-weekly' },
{ id: 'monthly', name: 'Monthly' }
],
defaultValue: 'weekly'
}, '1fr');
});
 
formatSection.addRow(row => {
row.addDropdown('location', {
label: 'Location',
options: [
{ id: 'studio', name: 'Art Studio/School' },
{ id: 'home', name: 'In-Home (teacher travels)' },
{ id: 'online', name: 'Online/Virtual' },
{ id: 'plein-air', name: 'Outdoor/Plein Air' }
],
defaultValue: 'studio'
}, '1fr');
});
 
// Student Info Section
const studentSection = form.addSubform('student', { title: '๐Ÿ‘ค Student Information' });
 
studentSection.addRow(row => {
row.addDropdown('ageGroup', {
label: 'Age Group',
options: [
{ id: 'child', name: 'Child (6-12 years)' },
{ id: 'teen', name: 'Teen (13-17 years)' },
{ id: 'adult', name: 'Adult (18-59 years)' },
{ id: 'senior', name: 'Senior (60+ years)' }
],
defaultValue: 'adult',
isRequired: true
}, '1fr');
row.addDropdown('skillLevel', {
label: 'Skill Level',
options: [
{ id: 'beginner', name: 'Beginner (0-1 years)' },
{ id: 'elementary', name: 'Elementary (1-2 years)' },
{ id: 'intermediate', name: 'Intermediate (2-4 years)' },
{ id: 'advanced', name: 'Advanced (4+ years)' },
{ id: 'professional', name: 'Professional/Portfolio' }
],
defaultValue: 'beginner',
isRequired: true
}, '1fr');
});
 
studentSection.addRow(row => {
row.addDropdown('goals', {
label: 'Learning Goals',
options: [
{ id: 'hobby', name: 'Hobby/Recreation' },
{ id: 'skill-building', name: 'Skill Development' },
{ id: 'portfolio', name: 'Portfolio Building' },
{ id: 'competition', name: 'Competition/Exhibition' },
{ id: 'therapy', name: 'Art Therapy' }
],
defaultValue: 'hobby'
}, '1fr');
});
 
// Instructor Section
const instructorSection = form.addSubform('instructor', { title: '๐Ÿ‘ฉโ€๐ŸŽจ Instructor Level' });
 
instructorSection.addRow(row => {
row.addRadioButton('teacherLevel', {
label: 'Instructor Experience',
options: [
{ id: 'student', name: 'Art Student/Assistant' },
{ id: 'junior', name: 'Junior Instructor (1-5 yrs)' },
{ id: 'experienced', name: 'Experienced Artist (5-15 yrs)' },
{ id: 'master', name: 'Master Artist (15+ yrs)' },
{ id: 'renowned', name: 'Renowned/Gallery Artist' }
],
defaultValue: 'experienced',
orientation: 'vertical'
});
});
 
// Materials Section
const materialsSection = form.addSubform('materials', { title: '๐Ÿ–Œ๏ธ Materials & Supplies' });
 
materialsSection.addRow(row => {
row.addRadioButton('materialsIncluded', {
label: 'Materials Provision',
options: [
{ id: 'included', name: 'All materials included' },
{ id: 'basic', name: 'Basic materials included' },
{ id: 'student', name: 'Student brings own materials' }
],
defaultValue: 'basic',
orientation: 'horizontal'
});
});
 
materialsSection.addRow(row => {
row.addCheckbox('canvas', {
label: 'Canvas/Paper',
defaultValue: false,
isVisible: () => materialsSection.radioButton('materialsIncluded')?.value() !== 'student'
}, '1fr');
row.addCheckbox('paints', {
label: 'Paints/Pigments',
defaultValue: false,
isVisible: () => materialsSection.radioButton('materialsIncluded')?.value() !== 'student' &&
(mediumSection.radioButton('artType')?.value() === 'painting' || mediumSection.radioButton('artType')?.value() === 'mixed')
}, '1fr');
});
 
materialsSection.addRow(row => {
row.addCheckbox('brushes', {
label: 'Brushes/Tools',
defaultValue: false,
isVisible: () => materialsSection.radioButton('materialsIncluded')?.value() !== 'student'
}, '1fr');
row.addCheckbox('easel', {
label: 'Easel Usage',
defaultValue: false,
isVisible: () => materialsSection.radioButton('materialsIncluded')?.value() !== 'student'
}, '1fr');
});
 
// Package Section
const packageSection = form.addSubform('package', { title: '๐Ÿ“ฆ Package Options' });
 
packageSection.addRow(row => {
row.addDropdown('paymentPlan', {
label: 'Payment Plan',
options: [
{ id: 'per-lesson', name: 'Pay Per Lesson' },
{ id: 'monthly', name: 'Monthly Package (4 lessons, 5% off)' },
{ id: '8-pack', name: '8-Lesson Package (10% off)' },
{ id: '12-pack', name: '12-Lesson Package (15% off)' },
{ id: 'semester', name: 'Semester (16 lessons, 20% off)' }
],
defaultValue: 'monthly',
isRequired: true
}, '1fr');
});
 
// Add-ons Section
const addonsSection = form.addSubform('addons', { title: 'โœจ Additional Services' });
 
addonsSection.addRow(row => {
row.addCheckbox('portfolioReview', {
label: 'Portfolio Review',
defaultValue: false
}, '1fr');
row.addCheckbox('exhibition', {
label: 'Student Exhibition Entry',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('certification', {
label: 'Completion Certificate',
defaultValue: false
}, '1fr');
row.addCheckbox('digitalCopy', {
label: 'Digital Documentation',
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 artType = mediumSection.radioButton('artType')?.value() || 'drawing';
const classType = formatSection.radioButton('classType')?.value() || 'private';
const duration = parseInt(formatSection.dropdown('duration')?.value() || '90');
const location = formatSection.dropdown('location')?.value() || 'studio';
const skillLevel = studentSection.dropdown('skillLevel')?.value() || 'beginner';
const goals = studentSection.dropdown('goals')?.value() || 'hobby';
const teacherLevel = instructorSection.radioButton('teacherLevel')?.value() || 'experienced';
const materialsIncluded = materialsSection.radioButton('materialsIncluded')?.value() || 'basic';
const paymentPlan = packageSection.dropdown('paymentPlan')?.value() || 'monthly';
 
// Base rate per hour for private lesson
const baseRates: Record<string, number> = {
'student': 25,
'junior': 40,
'experienced': 60,
'master': 85,
'renowned': 125
};
let hourlyRate = baseRates[teacherLevel] || 60;
 
// Art medium adjustment
const mediumMult: Record<string, number> = {
'drawing': 1.0,
'painting': 1.15,
'sculpture': 1.25,
'digital': 1.1,
'mixed': 1.2
};
hourlyRate *= mediumMult[artType] || 1.0;
 
// Duration calculation
const hours = duration / 60;
let lessonPrice = hourlyRate * hours;
 
// Class type adjustment (per student)
const classMult: Record<string, number> = {
'private': 1.0,
'semi-private': 0.7,
'small-group': 0.5,
'large-group': 0.35
};
lessonPrice *= classMult[classType] || 1.0;
 
// Location adjustment
const locationMult: Record<string, number> = {
'studio': 1.0,
'home': 1.3,
'online': 0.85,
'plein-air': 1.15
};
lessonPrice *= locationMult[location] || 1.0;
 
// Skill level adjustment
const levelMult: Record<string, number> = {
'beginner': 1.0,
'elementary': 1.0,
'intermediate': 1.1,
'advanced': 1.2,
'professional': 1.35
};
lessonPrice *= levelMult[skillLevel] || 1.0;
 
// Goals adjustment
const goalsMult: Record<string, number> = {
'hobby': 1.0,
'skill-building': 1.05,
'portfolio': 1.15,
'competition': 1.2,
'therapy': 1.1
};
lessonPrice *= goalsMult[goals] || 1.0;
 
// Materials cost
let materialsCost = 0;
if (materialsIncluded === 'included') {
materialsCost = 20;
} else if (materialsIncluded === 'basic') {
materialsCost = 10;
}
 
// Additional materials
if (materialsSection.checkbox('canvas')?.value()) materialsCost += 8;
if (materialsSection.checkbox('paints')?.value()) materialsCost += 12;
if (materialsSection.checkbox('brushes')?.value()) materialsCost += 5;
if (materialsSection.checkbox('easel')?.value()) materialsCost += 5;
 
// Package calculations
const packageDiscount: Record<string, number> = {
'per-lesson': 0,
'monthly': 0.05,
'8-pack': 0.10,
'12-pack': 0.15,
'semester': 0.20
};
const discount = packageDiscount[paymentPlan] || 0;
 
const packageLessons: Record<string, number> = {
'per-lesson': 1,
'monthly': 4,
'8-pack': 8,
'12-pack': 12,
'semester': 16
};
const numLessons = packageLessons[paymentPlan] || 1;
 
// Add-ons
let addonsPrice = 0;
if (addonsSection.checkbox('portfolioReview')?.value()) addonsPrice += 50;
if (addonsSection.checkbox('exhibition')?.value()) addonsPrice += 35;
if (addonsSection.checkbox('certification')?.value()) addonsPrice += 25;
if (addonsSection.checkbox('digitalCopy')?.value()) addonsPrice += 15;
 
const lessonWithMaterials = lessonPrice + materialsCost;
const packageTotal = (lessonWithMaterials * numLessons * (1 - discount)) + addonsPrice;
const effectivePerLesson = (packageTotal - addonsPrice) / numLessons;
 
return {
lessonPrice: Math.round(lessonPrice),
materialsCost: Math.round(materialsCost),
lessonWithMaterials: Math.round(lessonWithMaterials),
discount: Math.round(discount * 100),
packageTotal: Math.round(packageTotal),
numLessons,
effectivePerLesson: Math.round(effectivePerLesson),
addonsPrice: Math.round(addonsPrice),
duration
};
};
 
pricingSection.addRow(row => {
row.addPriceDisplay('perLesson', {
label: 'Per Lesson',
computedValue: () => calculatePrice().lessonPrice,
variant: 'default'
}, '1fr');
row.addPriceDisplay('materials', {
label: 'Materials',
computedValue: () => calculatePrice().materialsCost,
variant: 'default',
isVisible: () => calculatePrice().materialsCost > 0
}, '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 (pay per lesson)';
},
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: 'Package Total',
computedValue: () => calculatePrice().packageTotal,
variant: 'large'
}, '1fr');
row.addTextPanel('perLessonFinal', {
computedValue: () => {
const price = calculatePrice();
return `$${price.effectivePerLesson}/lesson`;
},
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.numLessons} lesson${price.numLessons > 1 ? 's' : ''} ร— ${price.duration} minutes`;
},
customStyles: { 'font-size': '0.9rem', 'color': '#475569', 'text-align': 'center' }
});
});
 
summarySection.addRow(row => {
row.addTextPanel('note', {
computedValue: () => 'Prices may vary based on specific project requirements. Trial lessons may be available at a reduced rate.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
form.configureSubmitButton({
label: 'Book Art Lesson'
});
}
 

Frequently Asked Questions

How much do art lessons cost?

Art lesson prices vary widely based on medium, instructor experience, and location. Private lessons typically range from $40-100+ per hour, while group classes may cost $20-50 per session. Supplies are often additional.

Are materials included in the price?

It depends on the instructor. Some include basic materials in the lesson fee, while others charge separately for supplies. Our calculator lets you factor in material costs.

What's better - private or group lessons?

Private lessons offer personalized attention and faster progress, while group classes provide social interaction and are more affordable. Many students benefit from a combination of both.

How long should art lessons be?

Typical lessons range from 1-3 hours. Beginners often start with 1-hour sessions, while intermediate and advanced students may prefer longer sessions for complex projects.

Can I customize this calculator for my art studio?

Yes! Art schools and private instructors can customize pricing, mediums, class sizes, and material costs to match their specific offerings.