Sports Coaching Calculator

Find the right coaching program for your budget with this comprehensive sports coaching calculator. Whether you're looking for private one-on-one training, group sessions, or full team programs, get instant pricing across various sports and skill levels. Great for sports coaches, academies, and training facilities.

Health & Fitness

Try the Calculator

Sports Coaching Calculator
⚽ Sport Selection
👥 Coaching Format
 
⏰ Session Details
✨ Additional Services

📊 Pricing Breakdown
$ 55.00
No package discount
🏆 Investment Summary
$ 55.00
$ 220.00
Pricing varies by coach availability and specific program requirements.
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
export function sportsCoachingCalculator(form: FormTs) {
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Sports Coaching Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Sport Selection Section
const sportSection = form.addSubform('sport', { title: '⚽ Sport Selection' });
 
sportSection.addRow(row => {
row.addDropdown('sport', {
label: 'Sport',
options: [
{ id: 'soccer', name: 'Soccer/Football' },
{ id: 'basketball', name: 'Basketball' },
{ id: 'tennis', name: 'Tennis' },
{ id: 'golf', name: 'Golf' },
{ id: 'swimming', name: 'Swimming' },
{ id: 'baseball', name: 'Baseball/Softball' },
{ id: 'volleyball', name: 'Volleyball' },
{ id: 'hockey', name: 'Hockey' },
{ id: 'gymnastics', name: 'Gymnastics' },
{ id: 'martial-arts', name: 'Martial Arts' },
{ id: 'track', name: 'Track & Field' },
{ id: 'skiing', name: 'Skiing/Snowboarding' },
{ id: 'other', name: 'Other Sport' }
],
defaultValue: 'soccer',
isRequired: true
}, '1fr');
row.addDropdown('skillLevel', {
label: 'Current Skill Level',
options: [
{ id: 'beginner', name: 'Beginner' },
{ id: 'intermediate', name: 'Intermediate' },
{ id: 'advanced', name: 'Advanced' },
{ id: 'competitive', name: 'Competitive/Travel' },
{ id: 'elite', name: 'Elite/Pre-Professional' }
],
defaultValue: 'beginner',
isRequired: true
}, '1fr');
});
 
sportSection.addRow(row => {
row.addDropdown('ageGroup', {
label: 'Age Group',
options: [
{ id: 'youth', name: 'Youth (5-10)' },
{ id: 'preteen', name: 'Pre-Teen (11-13)' },
{ id: 'teen', name: 'Teen (14-17)' },
{ id: 'college', name: 'College (18-22)' },
{ id: 'adult', name: 'Adult (23+)' }
],
defaultValue: 'youth',
isRequired: true
}, '1fr');
row.addDropdown('goals', {
label: 'Training Goal',
options: [
{ id: 'recreation', name: 'Recreation/Fun' },
{ id: 'skill-building', name: 'Skill Development' },
{ id: 'team-prep', name: 'Team/Tryout Prep' },
{ id: 'competition', name: 'Competition Prep' },
{ id: 'college-prep', name: 'College Recruitment' },
{ id: 'professional', name: 'Professional Development' }
],
defaultValue: 'skill-building'
}, '1fr');
});
 
// Coaching Format Section
const formatSection = form.addSubform('format', { title: '👥 Coaching Format' });
 
formatSection.addRow(row => {
row.addRadioButton('coachingType', {
label: 'Coaching Type',
options: [
{ id: 'private', name: 'Private (1-on-1)' },
{ id: 'semi-private', name: 'Semi-Private (2-3)' },
{ id: 'small-group', name: 'Small Group (4-8)' },
{ id: 'team', name: 'Team Training' },
{ id: 'camp', name: 'Camp/Clinic' }
],
defaultValue: 'private',
isRequired: true
});
});
 
formatSection.addRow(row => {
row.addInteger('participants', {
label: 'Number of Participants',
min: 2,
max: 30,
defaultValue: 2,
isVisible: () => ['semi-private', 'small-group', 'team'].includes(formatSection.radioButton('coachingType')?.value() || ''),
tooltip: 'Cost is split among participants'
}, '1fr');
row.addDropdown('coachLevel', {
label: 'Coach Experience',
options: [
{ id: 'assistant', name: 'Assistant Coach' },
{ id: 'certified', name: 'Certified Coach' },
{ id: 'experienced', name: 'Experienced (5+ years)' },
{ id: 'elite', name: 'Elite/Former Pro' },
{ id: 'professional', name: 'Professional Coach' }
],
defaultValue: 'certified'
}, '1fr');
});
 
// Session Details Section
const sessionSection = form.addSubform('session', { title: '⏰ Session Details' });
 
sessionSection.addRow(row => {
row.addDropdown('sessionLength', {
label: 'Session Length',
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('frequency', {
label: 'Sessions 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: '5x per week' }
],
defaultValue: '1'
}, '1fr');
});
 
sessionSection.addRow(row => {
row.addDropdown('packageType', {
label: 'Package Type',
options: [
{ id: 'single', name: 'Single Session' },
{ id: '5-pack', name: '5 Session Pack (5% off)' },
{ id: '10-pack', name: '10 Session Pack (10% off)' },
{ id: '20-pack', name: '20 Session Pack (15% off)' },
{ id: 'monthly', name: 'Monthly Unlimited' }
],
defaultValue: 'single'
}, '1fr');
row.addDropdown('location', {
label: 'Training Location',
options: [
{ id: 'facility', name: 'Training Facility' },
{ id: 'school', name: 'School/Park' },
{ id: 'home', name: 'At Your Location' },
{ id: 'virtual', name: 'Virtual/Online' }
],
defaultValue: 'facility'
}, '1fr');
});
 
// Additional Services Section
const servicesSection = form.addSubform('services', { title: '✨ Additional Services' });
 
servicesSection.addRow(row => {
row.addCheckbox('videoAnalysis', {
label: 'Video Analysis',
defaultValue: false,
tooltip: 'Film review and technique analysis'
}, '1fr');
row.addCheckbox('strengthConditioning', {
label: 'Strength & Conditioning',
defaultValue: false,
tooltip: 'Sport-specific fitness training'
}, '1fr');
});
 
servicesSection.addRow(row => {
row.addCheckbox('mentalCoaching', {
label: 'Mental Performance Coaching',
defaultValue: false,
tooltip: 'Sports psychology and mindset training'
}, '1fr');
row.addCheckbox('nutritionGuidance', {
label: 'Nutrition Guidance',
defaultValue: false,
tooltip: 'Sport-specific nutrition advice'
}, '1fr');
});
 
servicesSection.addRow(row => {
row.addCheckbox('gameAnalysis', {
label: 'Game/Competition Analysis',
defaultValue: false,
tooltip: 'Review of game footage and strategy'
}, '1fr');
row.addCheckbox('equipmentProvided', {
label: 'Equipment Provided',
defaultValue: false,
tooltip: 'Coach provides training equipment'
}, '1fr');
});
 
// Camp/Clinic Options (conditional)
const campSection = form.addSubform('camp', {
title: '🏕️ Camp/Clinic Details',
isVisible: () => formatSection.radioButton('coachingType')?.value() === 'camp'
});
 
campSection.addRow(row => {
row.addDropdown('campType', {
label: 'Camp Type',
options: [
{ id: 'half-day', name: 'Half Day (3-4 hours)' },
{ id: 'full-day', name: 'Full Day (6-8 hours)' },
{ id: 'overnight', name: 'Overnight Camp' }
],
defaultValue: 'half-day'
}, '1fr');
row.addInteger('campDays', {
label: 'Number of Days',
min: 1,
max: 14,
defaultValue: 5
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Results Section
const resultsSection = form.addSubform('results', { title: '📊 Pricing Breakdown', isCollapsible: false });
 
const calculatePricing = () => {
const sport = sportSection.dropdown('sport')?.value() || 'soccer';
const skillLevel = sportSection.dropdown('skillLevel')?.value() || 'beginner';
const coachingType = formatSection.radioButton('coachingType')?.value() || 'private';
const coachLevel = formatSection.dropdown('coachLevel')?.value() || 'certified';
const sessionLength = parseInt(sessionSection.dropdown('sessionLength')?.value() || '60');
const frequency = parseInt(sessionSection.dropdown('frequency')?.value() || '1');
const packageType = sessionSection.dropdown('packageType')?.value() || 'single';
const location = sessionSection.dropdown('location')?.value() || 'facility';
const participants = formatSection.integer('participants')?.value() || 2;
 
// Base hourly rate by coach level
const coachRates = {
'assistant': 35,
'certified': 55,
'experienced': 80,
'elite': 120,
'professional': 175
};
let baseRate = coachRates[coachLevel];
 
// Sport premium
const sportPremiums = {
'golf': 1.4,
'tennis': 1.2,
'skiing': 1.5,
'gymnastics': 1.3,
'swimming': 1.1,
'hockey': 1.2,
'soccer': 1.0,
'basketball': 1.0,
'baseball': 1.0,
'volleyball': 1.0,
'martial-arts': 1.1,
'track': 1.0,
'other': 1.0
};
baseRate *= sportPremiums[sport];
 
// Skill level adjustment
const skillMultipliers = {
'beginner': 1.0,
'intermediate': 1.1,
'advanced': 1.2,
'competitive': 1.3,
'elite': 1.5
};
baseRate *= skillMultipliers[skillLevel];
 
// Coaching type adjustment
let sessionRate = baseRate;
if (coachingType === 'semi-private') {
sessionRate = (baseRate * 1.4) / participants; // Per person
} else if (coachingType === 'small-group') {
sessionRate = (baseRate * 2.0) / participants; // Per person
} else if (coachingType === 'team') {
sessionRate = baseRate * 2.5 / Math.max(participants, 10); // Team rate per person
}
 
// Session length adjustment
const lengthMultiplier = sessionLength / 60;
let perSessionCost = sessionRate * lengthMultiplier;
 
// Location adjustment
if (location === 'home') perSessionCost += 25;
if (location === 'virtual') perSessionCost *= 0.8;
 
// Additional services
let addOnsCost = 0;
if (servicesSection.checkbox('videoAnalysis')?.value()) addOnsCost += 30;
if (servicesSection.checkbox('strengthConditioning')?.value()) addOnsCost += 40;
if (servicesSection.checkbox('mentalCoaching')?.value()) addOnsCost += 50;
if (servicesSection.checkbox('nutritionGuidance')?.value()) addOnsCost += 25;
if (servicesSection.checkbox('gameAnalysis')?.value()) addOnsCost += 35;
if (servicesSection.checkbox('equipmentProvided')?.value()) addOnsCost += 15;
 
perSessionCost += addOnsCost;
 
// Camp pricing
if (coachingType === 'camp') {
const campType = campSection.dropdown('campType')?.value() || 'half-day';
const campDays = campSection.integer('campDays')?.value() || 5;
const campDailyRates = {
'half-day': 85,
'full-day': 150,
'overnight': 250
};
perSessionCost = campDailyRates[campType] * campDays;
}
 
// Package discounts
const packageDiscounts = {
'single': 0,
'5-pack': 0.05,
'10-pack': 0.10,
'20-pack': 0.15,
'monthly': 0.20
};
const discount = packageDiscounts[packageType];
const discountedRate = perSessionCost * (1 - discount);
 
// Package quantities
const packageQuantities = {
'single': 1,
'5-pack': 5,
'10-pack': 10,
'20-pack': 20,
'monthly': frequency * 4
};
const sessions = packageQuantities[packageType];
 
const packageTotal = discountedRate * sessions;
const weeklyTotal = discountedRate * frequency;
const monthlyTotal = weeklyTotal * 4;
 
return {
perSession: Math.round(perSessionCost),
discountedSession: Math.round(discountedRate),
packageTotal: Math.round(packageTotal),
weeklyTotal: Math.round(weeklyTotal),
monthlyTotal: Math.round(monthlyTotal),
discount: discount * 100,
sessions,
addOnsCost: Math.round(addOnsCost)
};
};
 
resultsSection.addRow(row => {
row.addPriceDisplay('perSession', {
label: 'Per Session (Base)',
computedValue: () => calculatePricing().perSession,
variant: 'default'
}, '1fr');
row.addPriceDisplay('discountedSession', {
label: 'Per Session (After Discount)',
computedValue: () => calculatePricing().discountedSession,
variant: 'success',
isVisible: () => calculatePricing().discount > 0
}, '1fr');
});
 
resultsSection.addRow(row => {
row.addTextPanel('discountInfo', {
computedValue: () => {
const discount = calculatePricing().discount;
return discount > 0 ? `${discount}% package discount applied` : 'No package discount';
},
customStyles: { 'font-size': '0.9rem', 'color': '#059669', 'text-align': 'center' }
});
});
 
resultsSection.addRow(row => {
row.addPriceDisplay('addOns', {
label: 'Add-On Services (per session)',
computedValue: () => calculatePricing().addOnsCost,
variant: 'default',
isVisible: () => calculatePricing().addOnsCost > 0
});
});
 
// Summary Section
const summarySection = form.addSubform('summary', {
title: '🏆 Investment Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
summarySection.addRow(row => {
row.addPriceDisplay('packageTotal', {
label: () => `Package Total (${calculatePricing().sessions} sessions)`,
computedValue: () => calculatePricing().packageTotal,
variant: 'large'
}, '1fr');
row.addPriceDisplay('monthlyTotal', {
label: 'Monthly Estimate',
computedValue: () => calculatePricing().monthlyTotal,
variant: 'success'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addTextPanel('note', {
computedValue: () => 'Pricing varies by coach availability and specific program requirements.',
customStyles: { 'font-size': '0.8rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
form.configureSubmitButton({
label: 'Find a Coach'
});
}
 

Frequently Asked Questions

How much do private sports lessons cost?

Private lessons typically range from $40-150 per hour depending on the sport, coach experience, and location. Elite or professional coaches may charge $200+ per hour.

Are group lessons more affordable?

Yes, group lessons typically cost 30-50% less per person than private lessons while still providing quality instruction and a social learning environment.

What age should kids start sports coaching?

Many sports offer programs starting at age 4-5 for basic skills. Specialized coaching typically begins around age 7-8, with intensive training from ages 10-12.

Do coaches offer package discounts?

Most coaches offer discounts for purchasing multiple sessions upfront. Common packages include 5, 10, or 20 session bundles with 10-20% savings.

Can I customize this calculator for my coaching business?

Yes! Coaches and sports academies can customize sports, pricing, and packages to match their offerings and embed it on their website.