Fast Cat Points Calculator

Fast CAT Points Calculator .fc-calculator-container { max-width: 600px; margin: 0 auto; padding: 20px; background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; font-family: Arial, sans-serif; } .fc-input-group { margin-bottom: 15px; } .fc-input-group label { display: block; font-weight: bold; margin-bottom: 5px; color: #333; } .fc-input-group input, .fc-input-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .fc-btn { width: 100%; padding: 12px; background-color: #2c3e50; color: white; border: none; border-radius: 4px; font-size: 18px; cursor: pointer; transition: background-color 0.3s; } .fc-btn:hover { background-color: #34495e; } .fc-results { margin-top: 20px; padding: 15px; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; display: none; } .fc-result-item { margin-bottom: 10px; font-size: 18px; border-bottom: 1px solid #eee; padding-bottom: 5px; } .fc-result-item span { font-weight: bold; color: #2c3e50; float: right; } .fc-article { margin-top: 40px; font-family: Georgia, serif; line-height: 1.6; color: #333; } .fc-article h2 { font-family: Arial, sans-serif; color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; } .fc-article h3 { font-family: Arial, sans-serif; color: #444; margin-top: 25px; } .fc-article ul { list-style-type: disc; padding-left: 20px; } .fc-highlight { background-color: #fff3cd; padding: 2px 5px; border-radius: 3px; }

Fast CAT Points Calculator

Enter the precise time from the 100-yard dash.
18 inches or greater (Handicap: 1.0) 12 inches to under 18 inches (Handicap: 1.5) Under 12 inches (Handicap: 2.0) Select your dog's height division to apply the correct handicap.
Speed: 0.00 MPH
Handicap Multiplier: 1.0
Total Points: 0.00
function calculateFastCatPoints() { // Get inputs var timeInput = document.getElementById('fcTime'); var heightInput = document.getElementById('fcHeight'); var resultsDiv = document.getElementById('fcResults'); var time = parseFloat(timeInput.value); var handicap = parseFloat(heightInput.value); // Validation if (isNaN(time) || time <= 0) { alert("Please enter a valid run time greater than 0 seconds."); return; } // AKC Fast CAT Formula: MPH = 204.545 / Time var mph = 204.545 / time; // Points Formula: MPH * Handicap var points = mph * handicap; // Display Results document.getElementById('resSpeed').innerHTML = mph.toFixed(2) + " MPH"; document.getElementById('resHandicap').innerHTML = handicap.toFixed(1) + "x"; document.getElementById('resPoints').innerHTML = points.toFixed(2); // Show result box resultsDiv.style.display = "block"; }

Understanding Fast CAT Scoring

The Fast CAT (Coursing Ability Test) is a timed 100-yard dash where dogs run individually, chasing a lure. It is one of the American Kennel Club's (AKC) fastest-growing sports. While the concept is simple—run as fast as possible—the scoring system involves a specific mathematical formula that levels the playing field for dogs of different sizes.

The Formula

Your dog's score is based on their speed in miles per hour (MPH), converted into points. The official calculation used to determine MPH is:

204.545 / Time (seconds) = MPH

Once the MPH is established, it is multiplied by a handicap based on the dog's height to determine the final points awarded for the run.

Height Handicaps Explained

To ensure fairness, smaller dogs are given a handicap multiplier because they physically cannot cover ground as quickly as larger breeds. The points are calculated as MPH × Handicap.

  • Under 12 inches: Handicap of 2.0 (Points = MPH × 2)
  • 12 inches to under 18 inches: Handicap of 1.5 (Points = MPH × 1.5)
  • 18 inches and over: Handicap of 1.0 (Points = MPH × 1)

Earning Titles

Points are accumulated over time to earn suffix titles. These points do not expire. The titling structure is as follows:

  • BCAT: 150 Points
  • DCAT: 500 Points
  • FCAT: 1,000 Points
  • FCAT#: For every additional 500 points after reaching FCAT.

Example Calculation

If a dog that is 14 inches tall runs the 100-yard dash in 8.5 seconds:

  1. Calculate Speed: 204.545 / 8.5 = 24.06 MPH
  2. Determine Handicap: 14 inches falls in the "12 to under 18" bracket, so the handicap is 1.5.
  3. Calculate Points: 24.06 × 1.5 = 36.09 Points.

Use the calculator above to quickly determine how many points your dog earned in their latest run and track your progress toward the next title.

Leave a Reply

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