Use when assessing tire condition — measuring tread depth, interpreting wear patterns, calculating remaining safe life, and determining when tires need replacement based on safety and legal standards.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add jeffreytse/grimoire-core --skill calculate-tire-wear-assessment --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Calculate Tire Wear Assessment?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jeffreytse-calculate-tire-wear-assessment)More formats (shields.io, HTML) on the badges page.
---
name: calculate-tire-wear-assessment
description: Use when assessing tire condition — measuring tread depth, interpreting wear patterns, calculating remaining safe life, and determining when tires need replacement based on safety and legal standards.
source: NHTSA Tire Safety Guide (DOT HS 811 093); USTMA (U.S. Tire Manufacturers Association) Tire Care Guide; Michelin Tire Maintenance Guide; ISO 28580 (rolling resistance measurement)
tags: [tires, automotive-safety, maintenance, tread-depth, wear-patterns, vehicle-safety]
---
# Calculate Tire Wear Assessment
Measure tread depth, interpret wear pattern type, calculate remaining safe life, and determine whether tires require immediate replacement using NHTSA safety thresholds and systematic wear pattern diagnosis.
## Why This Is Best Practice
**Why best:** Tread depth thresholds and systematic wear-pattern diagnosis catch both the immediate safety risk (inadequate wet-traction) and the root cause (alignment, inflation, suspension) — replacing tires without fixing the cause just repeats the failure.
**Adopted by:** NHTSA (National Highway Traffic Safety Administration) mandates minimum 2/32" tread depth in the US; EU regulations require 1.6mm (≈2/32"). AAA recommends proactive replacement at 4/32" for wet-weather safety. Fleet operators (UPS, FedEx, airline ground vehicles) use systematic tire assessment schedules to prevent blowout-related incidents.
**Impact:** NHTSA data shows tires contribute to ~664 fatal crashes annually in the US — most due to worn tread, under-inflation, or damage. Wet stopping distance at 4/32" tread is 50% longer than at 8/32"; at 2/32" it doubles relative to new tires. Beyond safety, misidentifying the cause of uneven wear leads to repeat failure — worn tires are a symptom; the root cause (alignment, inflation, suspension) must also be corrected.
## Steps
### 1. Measure tread depth
**Tread depth gauge (most accurate):** insert probe into tread groove at the shallowest point; read in 32nds of an inch (US) or mm (EU).
**Penny test (emergency check):** insert a US penny (Lincoln head down) into the tread. If you see the top of Lincoln's head, tread is ≤2/32" — replace immediately.
**Quarter test:** insert a US quarter (Washington head down). If you see the top of Washington's head, tread is ≤4/32" — replace soon; wet-weather performance is significantly compromised.
New tire tread depth: typically 10/32" to 11/32" for passenger; 14/32" for light truck.
Measure at 3 points across the tread width (inner, center, outer) and at 4 locations around the circumference. Record all measurements.
### 2. Interpret wear patterns and diagnose root cause
| Wear pattern | Diagnosis | Root cause |
|---|---|---|
| Center wear (middle worn, edges fine) | Over-inflation | Reduce to door-jamb placard PSI |
| Edge wear (both edges worn, center fine) | Under-inflation | Inflate to placard PSI; check for leaks |
| One-sided edge wear | Camber misalignment | Front-end alignment service |
| Diagonal/feathering (waves across tread) | Toe misalignment | Alignment service |
| Cup/scallop (high-low spots) | Worn shocks/struts | Replace shocks or struts |
| Patch wear (flat spot) | Wheel lockup / hard braking | Check brake system; rotate or replace |
Never replace tires without correcting the root cause — new tires on a misaligned vehicle will wear identically.
### 3. Calculate remaining safe life
Estimate remaining mileage based on current depth vs. replacement threshold:
```
Remaining tread = current depth (32nds) − replacement threshold (4/32" recommended)
Wear rate = (new depth − current depth) / miles driven
Remaining miles = remaining tread / wear rate
```
Example: new at 10/32", now at 6/32" after 20,000 miles:
```
Wear rate = (10 − 6) / 20,000 = 0.0002 per mile
Remaining to 4/32" = (6 − 4) = 2/32"
Remaining miles = 2 / 0.0002 = 10,000 miles
```
Note: wear rate is not linear — the last 2/32" wear faster if driving conditions are unchanged.
### 4. Check for other replacement triggers
Tread depth alone doesn't determine replacement. Also inspect:
- **Age:** replace tires older than 6 years regardless of tread depth (rubber degrades internally); some manufacturers recommend 10 years maximum
- **Cracks/sidewall bulges:** replace immediately — indicate structural failure risk
- **Embedded objects:** nails or screws — assess if in the repairable zone (center tread, not sidewall); plugging is temporary; patching from inside is the correct repair
- **DOT date code:** four digits on sidewall (e.g., 2420 = 24th week of 2020)
### 5. Assess inflation simultaneously
Tire pressure affects tread wear directly (Step 2) and contributes to safety:
- Check pressure cold (driven < 1 mile)
- Reference: driver's door jamb sticker (not the max PSI on the tire sidewall)
- Seasonal adjustment: pressure drops ~1 PSI per 10°F temperature decrease — check monthly and before trips
- TPMS warning lights: triggered at ~25% under-inflation; do not rely on TPMS for proactive maintenance
## Common Mistakes
- **Using only the penny test:** The penny test only detects the 2/32" absolute legal minimum — already at dangerous wet-weather performance. Use a gauge; replace at 4/32".
- **Replacing tires without alignment check:** New tires on a misaligned car wear to the same uneven pattern within 5,000–10,000 miles. Always align after replacement if wear was uneven.
- **Ignoring age for lightly-used tires:** A 7-year-old tire with 4/32" tread remaining may have hardened, cracked rubber that provides no wet-weather grip. Date + depth, not depth alone.
## When NOT to Use
- Fleet or commercial vehicle tires: commercial tire assessment requires DOT regulations, retreading evaluation, and load-index compliance standards beyond this consumer framework.Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!