Fast Cat Calculator

.fast-cat-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 600px; margin: 20px auto; padding: 25px; border: 1px solid #e1e4e8; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .fast-cat-container h2 { color: #1a1a1a; text-align: center; margin-bottom: 25px; font-size: 24px; } .input-group { margin-bottom: 20px; } .input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #444; } .input-group input, .input-group select { width: 100%; padding: 12px; border: 2px solid #ddd; border-radius: 8px; box-sizing: border-box; font-size: 16px; transition: border-color 0.3s; } .input-group input:focus { border-color: #007bff; outline: none; } .calc-btn { width: 100%; background-color: #28a745; color: white; padding: 15px; border: none; border-radius: 8px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .calc-btn:hover { background-color: #218838; } .result-box { margin-top: 25px; padding: 20px; background-color: #f8f9fa; border-radius: 8px; display: none; } .result-item { display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .result-item:last-child { border-bottom: none; } .result-label { font-weight: 600; color: #555; } .result-value { font-weight: bold; color: #007bff; font-size: 1.1em; } .article-content { margin-top: 40px; line-height: 1.6; color: #333; } .article-content h3 { color: #1a1a1a; margin-top: 25px; }

AKC Fast CAT Speed Calculator

18 inches or greater (Handicap 1.0) 12 inches to under 18 inches (Handicap 1.5) Under 12 inches (Handicap 2.0)
Speed (MPH):
Handicap Multiplier:
Total Points Earned:

Understanding Fast CAT Math

The AKC Fast CAT (Coursing Ability Test) is a timed 100-yard dash where dogs run individually in a straight line. To understand how your dog's performance translates into titles, you need to convert their time into miles per hour (MPH) and then apply a handicap based on the dog's height.

The Fast CAT Formula

The standard formula used by the AKC to calculate speed from a 100-yard dash is:

204.545 / Time (seconds) = MPH

For example, if your dog runs the 100 yards in 10 seconds flat, the calculation would be 204.545 / 10 = 20.45 MPH.

Handicaps and Point Systems

Because smaller dogs have shorter strides, the AKC applies a handicap multiplier to ensure the competition is fair across all breeds:

  • 18″ or taller: Handicap of 1.0 (Points = MPH x 1.0)
  • 12″ to under 18″: Handicap of 1.5 (Points = MPH x 1.5)
  • Under 12″: Handicap of 2.0 (Points = MPH x 2.0)

Example Calculation

Imagine a Beagle standing 13 inches tall (Handicap 1.5) who completes the course in 8.5 seconds.

  1. Speed: 204.545 / 8.5 = 24.06 MPH
  2. Points: 24.06 x 1.5 = 36.09 Points

Fast CAT Titles

Points accumulated in Fast CAT events lead to specific AKC titles:

  • BCAT: 150 points
  • DCAT: 500 points
  • FCAT: 1,000 points
  • FCAT#: Every additional 500 points after the initial FCAT
function calculateFastCat() { var time = parseFloat(document.getElementById("runTime").value); var handicap = parseFloat(document.getElementById("dogHeight").value); var resultBox = document.getElementById("resultBox"); if (isNaN(time) || time <= 0) { alert("Please enter a valid run time greater than zero."); return; } // AKC Formula: 204.545 / time in seconds = MPH var mph = 204.545 / time; var points = mph * handicap; document.getElementById("mphResult").innerText = mph.toFixed(2); document.getElementById("handicapResult").innerText = handicap.toFixed(1); document.getElementById("pointsResult").innerText = points.toFixed(2); resultBox.style.display = "block"; }

Leave a Reply

Your email address will not be published. Required fields are marked *