Tire Service Calculator

Get accurate tire service estimates with this comprehensive calculator. Whether you need new tires, a simple rotation, or complete wheel alignment, see all costs upfront. Compare different tire brands and service packages. Perfect for tire dealers, auto shops, and customers planning their tire purchase.

Automotive

Try the Calculator

Tire Service Calculator
🚗 Vehicle Information
🔧 Service Type
 
🛞 Tire Selection
⚙️ Installation Services
➕ Additional Services

📊 Price Breakdown
$ 360.00
$90 each
$ 108.00
$ 25.00
💰 Total Estimate
$ 493.00
Prices may vary based on exact tire size and current inventory. Call 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
405
406
407
408
409
410
411
412
export function tireServiceCalculator(form: FormTs) {
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Tire Service Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Vehicle Information Section
const vehicleSection = form.addSubform('vehicle', { title: '🚗 Vehicle Information' });
 
vehicleSection.addRow(row => {
row.addDropdown('vehicleType', {
label: 'Vehicle Type',
options: [
{ id: 'sedan', name: 'Sedan/Compact' },
{ id: 'suv', name: 'SUV/Crossover' },
{ id: 'truck', name: 'Pickup Truck' },
{ id: 'van', name: 'Minivan/Van' },
{ id: 'sports', name: 'Sports Car' },
{ id: 'luxury', name: 'Luxury Vehicle' },
{ id: 'commercial', name: 'Commercial Vehicle' }
],
defaultValue: 'sedan',
isRequired: true
}, '1fr');
row.addDropdown('tireSize', {
label: 'Tire Size Category',
options: [
{ id: 'small', name: 'Small (15" and under)' },
{ id: 'medium', name: 'Medium (16"-17")' },
{ id: 'large', name: 'Large (18"-19")' },
{ id: 'xlarge', name: 'Extra Large (20"+)' }
],
defaultValue: 'medium',
isRequired: true
}, '1fr');
});
 
vehicleSection.addRow(row => {
row.addDropdown('driveType', {
label: 'Drive Type',
options: [
{ id: 'fwd', name: 'Front-Wheel Drive' },
{ id: 'rwd', name: 'Rear-Wheel Drive' },
{ id: 'awd', name: 'All-Wheel Drive' },
{ id: '4wd', name: '4-Wheel Drive' }
],
defaultValue: 'fwd'
}, '1fr');
row.addCheckbox('tpms', {
label: 'Has TPMS (Tire Pressure Monitoring)',
defaultValue: true,
tooltip: 'Most vehicles 2008+ have TPMS'
}, '1fr');
});
 
// Service Type Section
const serviceSection = form.addSubform('service', { title: '🔧 Service Type' });
 
serviceSection.addRow(row => {
row.addRadioButton('serviceType', {
label: 'Primary Service',
options: [
{ id: 'new-tires', name: 'New Tires' },
{ id: 'rotation', name: 'Tire Rotation' },
{ id: 'balance', name: 'Balance Only' },
{ id: 'flat-repair', name: 'Flat Repair' },
{ id: 'alignment', name: 'Alignment Only' }
],
defaultValue: 'new-tires',
isRequired: true
});
});
 
serviceSection.addRow(row => {
row.addDropdown('tireCount', {
label: 'Number of Tires',
options: [
{ id: '1', name: '1 Tire' },
{ id: '2', name: '2 Tires (Axle)' },
{ id: '4', name: '4 Tires (Full Set)' }
],
defaultValue: '4',
isVisible: () => ['new-tires', 'balance', 'flat-repair'].includes(serviceSection.radioButton('serviceType')?.value() || '')
});
});
 
// Tire Selection Section (for new tires)
const tireSection = form.addSubform('tires', {
title: '🛞 Tire Selection',
isVisible: () => serviceSection.radioButton('serviceType')?.value() === 'new-tires'
});
 
tireSection.addRow(row => {
row.addDropdown('tireType', {
label: 'Tire Type',
options: [
{ id: 'all-season', name: 'All-Season' },
{ id: 'summer', name: 'Summer Performance' },
{ id: 'winter', name: 'Winter/Snow' },
{ id: 'all-terrain', name: 'All-Terrain' },
{ id: 'mud-terrain', name: 'Mud-Terrain' },
{ id: 'touring', name: 'Touring/Comfort' }
],
defaultValue: 'all-season',
isRequired: true
}, '1fr');
row.addDropdown('tireBrand', {
label: 'Brand Tier',
options: [
{ id: 'economy', name: 'Economy Brand' },
{ id: 'mid-range', name: 'Mid-Range Brand' },
{ id: 'premium', name: 'Premium Brand' },
{ id: 'ultra-premium', name: 'Ultra-Premium/Performance' }
],
defaultValue: 'mid-range',
isRequired: true
}, '1fr');
});
 
tireSection.addRow(row => {
row.addDropdown('warranty', {
label: 'Mileage Warranty',
options: [
{ id: 'none', name: 'No Warranty' },
{ id: '40k', name: '40,000 Miles' },
{ id: '60k', name: '60,000 Miles' },
{ id: '80k', name: '80,000 Miles' }
],
defaultValue: '60k'
}, '1fr');
row.addCheckbox('runFlat', {
label: 'Run-Flat Tires',
defaultValue: false,
tooltip: 'Run-flat tires cost 30-50% more'
}, '1fr');
});
 
// Installation Services Section
const installSection = form.addSubform('installation', {
title: '⚙️ Installation Services',
isVisible: () => serviceSection.radioButton('serviceType')?.value() === 'new-tires'
});
 
installSection.addRow(row => {
row.addCheckbox('mounting', {
label: 'Mount & Balance',
defaultValue: true,
tooltip: 'Required for new tire installation'
}, '1fr');
row.addCheckbox('valveStems', {
label: 'New Valve Stems',
defaultValue: true,
tooltip: 'Recommended with new tires'
}, '1fr');
});
 
installSection.addRow(row => {
row.addCheckbox('disposal', {
label: 'Old Tire Disposal',
defaultValue: true,
tooltip: 'Environmentally responsible disposal'
}, '1fr');
row.addCheckbox('roadHazard', {
label: 'Road Hazard Protection',
defaultValue: false,
tooltip: 'Covers tire damage from road debris'
}, '1fr');
});
 
// Additional Services Section
const additionalSection = form.addSubform('additional', { title: '➕ Additional Services' });
 
additionalSection.addRow(row => {
row.addCheckbox('alignment', {
label: 'Wheel Alignment',
defaultValue: false,
tooltip: 'Recommended with new tires'
}, '1fr');
row.addDropdown('alignmentType', {
label: 'Alignment Type',
options: [
{ id: '2-wheel', name: '2-Wheel (Front)' },
{ id: '4-wheel', name: '4-Wheel Alignment' }
],
defaultValue: '4-wheel',
isVisible: () => additionalSection.checkbox('alignment')?.value() === true ||
serviceSection.radioButton('serviceType')?.value() === 'alignment'
}, '1fr');
});
 
additionalSection.addRow(row => {
row.addCheckbox('rotation', {
label: 'Tire Rotation',
defaultValue: false,
isVisible: () => serviceSection.radioButton('serviceType')?.value() !== 'rotation' &&
serviceSection.radioButton('serviceType')?.value() !== 'new-tires'
}, '1fr');
row.addCheckbox('tpmsService', {
label: 'TPMS Sensor Service',
defaultValue: false,
tooltip: 'Reset or replace TPMS sensors',
isVisible: () => vehicleSection.checkbox('tpms')?.value() === true
}, '1fr');
});
 
additionalSection.addRow(row => {
row.addCheckbox('nitrogenFill', {
label: 'Nitrogen Fill',
defaultValue: false,
tooltip: 'Better pressure retention vs air'
}, '1fr');
row.addCheckbox('brakeInspection', {
label: 'Free Brake Inspection',
defaultValue: true,
tooltip: 'Complimentary with tire service'
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Results Section
const resultsSection = form.addSubform('results', { title: '📊 Price Breakdown', isCollapsible: false });
 
const calculatePricing = () => {
const vehicleType = vehicleSection.dropdown('vehicleType')?.value() || 'sedan';
const tireSize = vehicleSection.dropdown('tireSize')?.value() || 'medium';
const hasTpms = vehicleSection.checkbox('tpms')?.value() || false;
const serviceType = serviceSection.radioButton('serviceType')?.value() || 'new-tires';
const tireCount = parseInt(serviceSection.dropdown('tireCount')?.value() || '4');
 
let tireCost = 0;
let installationCost = 0;
let additionalCost = 0;
 
// New tire pricing
if (serviceType === 'new-tires') {
const tireType = tireSection.dropdown('tireType')?.value() || 'all-season';
const tireBrand = tireSection.dropdown('tireBrand')?.value() || 'mid-range';
const runFlat = tireSection.checkbox('runFlat')?.value() || false;
 
// Base tire prices by size
const sizePrices = {
'small': 60,
'medium': 90,
'large': 130,
'xlarge': 180
};
let baseTirePrice = sizePrices[tireSize];
 
// Brand multiplier
const brandMultipliers = {
'economy': 0.7,
'mid-range': 1.0,
'premium': 1.5,
'ultra-premium': 2.2
};
baseTirePrice *= brandMultipliers[tireBrand];
 
// Tire type premium
const typePremiums = {
'all-season': 0,
'summer': 20,
'winter': 30,
'all-terrain': 40,
'mud-terrain': 60,
'touring': 15
};
baseTirePrice += typePremiums[tireType];
 
// Run-flat premium
if (runFlat) baseTirePrice *= 1.4;
 
// Vehicle type adjustment
const vehiclePremiums = {
'sedan': 1.0,
'suv': 1.15,
'truck': 1.2,
'van': 1.1,
'sports': 1.3,
'luxury': 1.4,
'commercial': 1.25
};
baseTirePrice *= vehiclePremiums[vehicleType];
 
tireCost = Math.round(baseTirePrice) * tireCount;
 
// Installation services
if (installSection.checkbox('mounting')?.value()) {
installationCost += 20 * tireCount; // Mount & balance per tire
}
if (installSection.checkbox('valveStems')?.value()) {
installationCost += 3 * tireCount;
}
if (installSection.checkbox('disposal')?.value()) {
installationCost += 4 * tireCount;
}
if (installSection.checkbox('roadHazard')?.value()) {
installationCost += 15 * tireCount;
}
}
 
// Service-only pricing
if (serviceType === 'rotation') {
installationCost = 30;
} else if (serviceType === 'balance') {
installationCost = 15 * tireCount;
} else if (serviceType === 'flat-repair') {
installationCost = 25 * tireCount;
} else if (serviceType === 'alignment') {
const alignType = additionalSection.dropdown('alignmentType')?.value() || '4-wheel';
installationCost = alignType === '2-wheel' ? 70 : 100;
}
 
// Additional services
if (additionalSection.checkbox('alignment')?.value() && serviceType !== 'alignment') {
const alignType = additionalSection.dropdown('alignmentType')?.value() || '4-wheel';
additionalCost += alignType === '2-wheel' ? 70 : 100;
}
if (additionalSection.checkbox('rotation')?.value() && serviceType !== 'rotation') {
additionalCost += 30;
}
if (additionalSection.checkbox('tpmsService')?.value() && hasTpms) {
additionalCost += 10 * tireCount;
}
if (additionalSection.checkbox('nitrogenFill')?.value()) {
additionalCost += 8 * (serviceType === 'new-tires' ? tireCount : 4);
}
 
const subtotal = tireCost + installationCost + additionalCost;
const tax = Math.round(tireCost * 0.07); // Tax on tires only
const total = subtotal + tax;
 
return {
tireCost,
installationCost,
additionalCost,
subtotal,
tax,
total,
perTire: tireCount > 0 ? Math.round(tireCost / tireCount) : 0
};
};
 
resultsSection.addRow(row => {
row.addPriceDisplay('tireCost', {
label: 'Tires',
computedValue: () => calculatePricing().tireCost,
variant: 'default',
isVisible: () => serviceSection.radioButton('serviceType')?.value() === 'new-tires'
}, '1fr');
row.addTextPanel('perTire', {
label: 'Per Tire',
computedValue: () => `$${calculatePricing().perTire} each`,
customStyles: { 'font-size': '1rem', 'color': '#64748b' },
isVisible: () => serviceSection.radioButton('serviceType')?.value() === 'new-tires'
}, '1fr');
});
 
resultsSection.addRow(row => {
row.addPriceDisplay('installationCost', {
label: () => serviceSection.radioButton('serviceType')?.value() === 'new-tires' ? 'Installation Services' : 'Service Cost',
computedValue: () => calculatePricing().installationCost,
variant: 'default'
}, '1fr');
row.addPriceDisplay('additionalCost', {
label: 'Additional Services',
computedValue: () => calculatePricing().additionalCost,
variant: 'default',
isVisible: () => calculatePricing().additionalCost > 0
}, '1fr');
});
 
resultsSection.addRow(row => {
row.addPriceDisplay('tax', {
label: 'Estimated Tax',
computedValue: () => calculatePricing().tax,
variant: 'default',
isVisible: () => calculatePricing().tax > 0
});
});
 
// Summary Section
const summarySection = form.addSubform('summary', {
title: '💰 Total Estimate',
isCollapsible: false,
sticky: 'bottom'
});
 
summarySection.addRow(row => {
row.addPriceDisplay('total', {
label: 'Total Estimate',
computedValue: () => calculatePricing().total,
variant: 'large'
});
});
 
summarySection.addRow(row => {
row.addTextPanel('note', {
computedValue: () => 'Prices may vary based on exact tire size and current inventory. Call for exact pricing.',
customStyles: { 'font-size': '0.8rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
form.configureSubmitButton({
label: 'Schedule Service'
});
}
 

Frequently Asked Questions

How much do new tires cost?

Tire prices vary widely based on size and quality. Economy tires start around $50-80 each, mid-range $100-150, and premium performance tires $200-400+ each.

How often should I rotate my tires?

Most manufacturers recommend tire rotation every 5,000-7,500 miles or with every oil change. Regular rotation extends tire life and ensures even wear.

Do I need a wheel alignment with new tires?

It's recommended but not always required. If your vehicle pulls to one side or has uneven tire wear, alignment is essential. Otherwise, it helps maximize new tire life.

What's included in tire mounting?

Standard mounting includes removing old tires, mounting new tires, computer balancing, new valve stems, and disposal of old tires.

Can I customize this calculator for my tire shop?

Yes! Tire shops can customize pricing, brands, and services to match their inventory and embed it on their website for instant customer quotes.