Regular Rate of Pay Calculation Example

Regular Rate of Pay Calculator

Calculate FLSA-compliant overtime rates including bonuses and commissions.

Calculation Summary

Total Straight-Time Earnings:
Regular Rate of Pay:
Time-and-a-Half Rate (1.5x):
Total Weekly Gross Pay:

Understanding the Regular Rate of Pay Calculation

In payroll and employment law, specifically under the Fair Labor Standards Act (FLSA), the "Regular Rate of Pay" is not always simply the employee's base hourly wage. It is a weighted average of all remuneration paid to the employee for work performed during the workweek.

Why is this calculation important?

Many employers make the mistake of calculating overtime (1.5x) based solely on the base hourly rate. However, if an employee earns commissions or non-discretionary bonuses (bonuses promised for reaching certain production or quality goals), these must be factored into the regular rate of pay before calculating overtime premiums.

The Regular Rate Formula

Regular Rate = (Total Straight-Time Compensation) / (Total Hours Worked in the Workweek)

Regular Rate of Pay Calculation Example

Let's look at a realistic scenario for a production worker:

  • Base Hourly Rate: $20.00/hour
  • Hours Worked: 50 hours
  • Production Bonus: $100.00

Step 1: Calculate Straight-Time Earnings
(50 hours × $20.00) + $100.00 Bonus = $1,100.00 total earnings.

Step 2: Determine Regular Rate
$1,100.00 / 50 hours = $22.00 per hour. (Note: This is higher than the $20 base rate because of the bonus).

Step 3: Calculate Overtime Premium
The employee has already been paid the straight-time rate for all 50 hours. Now they need the "half-time" premium for the 10 overtime hours.
$22.00 × 0.5 = $11.00 (Half-time premium)
$11.00 × 10 hours = $110.00 (Total Overtime Premium).

Step 4: Total Gross Pay
$1,100.00 (Straight-time) + $110.00 (OT Premium) = $1,210.00.

Frequently Asked Questions

What should be excluded from the regular rate?
Under the FLSA, items such as discretionary gifts, reimbursement for business expenses, paid time off (vacation/sick), and certain benefit plan contributions are typically excluded.

Is a shift differential included?
Yes. If an employee receives an extra $2/hour for working the night shift, that differential must be included in the regular rate calculation for overtime purposes.

function calculateRegularRate() { var hours = parseFloat(document.getElementById('rr_hours').value); var baseRate = parseFloat(document.getElementById('rr_base_rate').value); var bonuses = parseFloat(document.getElementById('rr_bonuses').value) || 0; var commissions = parseFloat(document.getElementById('rr_commissions').value) || 0; if (isNaN(hours) || isNaN(baseRate) || hours 40) { otHours = hours – 40; // The half-time premium is half of the Regular Rate // multiplied by the number of overtime hours overtimePremium = otHours * (regularRate * 0.5); } // 4. Total Gross Pay var totalGrossPay = totalStraightTime + overtimePremium; // Display Results document.getElementById('rr_results').style.display = 'block'; document.getElementById('res_total_straight').innerText = '$' + totalStraightTime.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('res_regular_rate').innerText = '$' + regularRate.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 4}) + ' / hr'; document.getElementById('res_ot_rate').innerText = '$' + (regularRate * 1.5).toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + ' / hr'; document.getElementById('res_total_pay').innerText = '$' + totalGrossPay.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); // Smooth scroll to results document.getElementById('rr_results').scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment