Calculate Time and a Half

Time and a Half Calculator

Payroll Summary

Overtime Rate:
Regular Pay:
Overtime Pay:
Gross Total Pay:
function calculateOvertimePay() { var rate = parseFloat(document.getElementById('hourlyRate').value); var regHrs = parseFloat(document.getElementById('regularHours').value); var otHrs = parseFloat(document.getElementById('overtimeHours').value); var resultDiv = document.getElementById('payResult'); if (isNaN(rate) || isNaN(regHrs) || rate <= 0) { alert('Please enter a valid hourly rate and regular hours.'); return; } if (isNaN(otHrs)) { otHrs = 0; } var overtimeRate = rate * 1.5; var regularTotal = rate * regHrs; var overtimeTotal = overtimeRate * otHrs; var grossTotal = regularTotal + overtimeTotal; document.getElementById('otRateDisplay').innerText = '$' + overtimeRate.toFixed(2) + ' /hr'; document.getElementById('regPayDisplay').innerText = '$' + regularTotal.toFixed(2); document.getElementById('otPayDisplay').innerText = '$' + overtimeTotal.toFixed(2); document.getElementById('totalPayDisplay').innerText = '$' + grossTotal.toFixed(2); resultDiv.style.display = 'block'; }

How to Calculate Time and a Half Pay

Understanding "time and a half" is essential for both employers and employees to ensure fair compensation according to labor laws like the Fair Labor Standards Act (FLSA). Essentially, time and a half is a premium pay rate for any hours worked beyond the standard work week, which is typically 40 hours.

The Time and a Half Formula

To calculate your overtime rate, you simply multiply your base hourly wage by 1.5. The steps for calculating total gross pay are as follows:

  • Step 1: Identify your regular hourly rate (e.g., $20.00).
  • Step 2: Calculate the overtime rate: $Rate \times 1.5$ (e.g., $20.00 \times 1.5 = $30.00).
  • Step 3: Multiply regular hours (up to 40) by the regular rate.
  • Step 4: Multiply overtime hours by the overtime rate.
  • Step 5: Add both totals together to get your gross pay.

Real-World Example

Let's say Sarah earns $25.00 per hour and worked 48 hours this week.

Regular Pay: 40 hours × $25.00 = $1,000.00
Overtime Rate: $25.00 × 1.5 = $37.50
Overtime Pay: 8 hours × $37.50 = $300.00
Total Gross Pay: $1,000.00 + $300.00 = $1,300.00

Common Overtime Questions

Does overtime apply to weekends?
Under federal law, overtime is usually based on the total number of hours worked in a 7-day work week, not which specific days you work. However, some union contracts or state laws (like in California) may require daily overtime pay if you work more than 8 hours in a single day.

Who is eligible for time and a half?
Most "non-exempt" hourly employees are entitled to overtime pay. "Exempt" employees, often salaried professionals or managers, may not be eligible depending on their job duties and salary level.

Leave a Comment