Irs Mileage Rate 2020 Calculator

.mileage-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 12px; background-color: #f9f9f9; color: #333; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .mileage-calc-container h2 { margin-top: 0; color: #1a73e8; text-align: center; font-size: 24px; } .mileage-input-group { margin-bottom: 20px; } .mileage-input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; } .mileage-input-group input, .mileage-input-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; font-size: 16px; } .mileage-calc-btn { width: 100%; padding: 15px; background-color: #1a73e8; color: white; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; } .mileage-calc-btn:hover { background-color: #1557b0; } .mileage-result-box { margin-top: 25px; padding: 20px; background-color: #e8f0fe; border-radius: 8px; text-align: center; } .mileage-result-box h3 { margin: 0; font-size: 18px; color: #1967d2; } #mileageResult { font-size: 32px; font-weight: 800; color: #1a73e8; margin: 10px 0; } .mileage-info-table { width: 100%; border-collapse: collapse; margin-top: 30px; } .mileage-info-table th, .mileage-info-table td { padding: 12px; border: 1px solid #ddd; text-align: left; } .mileage-info-table th { background-color: #f1f3f4; } .article-section { line-height: 1.6; margin-top: 40px; } .article-section h3 { color: #222; border-bottom: 2px solid #1a73e8; padding-bottom: 5px; }

2020 IRS Mileage Rate Calculator

Business (57.5 cents / mile) Medical or Moving (17 cents / mile) Charitable (14 cents / mile)

Estimated Tax Deduction

$0.00

Understanding the 2020 IRS Mileage Rates

The Internal Revenue Service (IRS) provides standard mileage rates annually to help taxpayers calculate the deductible costs of operating an automobile for business, charitable, medical, or moving purposes. For the tax year 2020, the rates saw a slight decrease from the 2019 levels due to lower fuel costs and changes in vehicle depreciation trends.

Category 2020 Rate (per mile)
Business 57.5 cents
Medical or Moving 17 cents
Charitable 14 cents

How to Use This Calculator

To determine your total deduction or reimbursement value for 2020, follow these steps:

  1. Enter Miles: Input the total number of miles driven for the specific purpose. Note that personal commuting miles are generally not deductible.
  2. Select Category: Choose whether the miles were for Business, Medical/Moving, or Charitable work. Each has a specific legal rate set by the IRS.
  3. Review Result: The calculator multiplies your mileage by the corresponding 2020 rate to give you a total dollar amount.

Who Can Claim These Deductions?

In 2020, following the Tax Cuts and Jobs Act, the rules for who can claim these deductions remained specific. Most employees cannot claim a deduction for unreimbursed employee business expenses. However, self-employed individuals, small business owners, and independent contractors (like 1099 workers) can use these rates to offset their taxable income.

Example Calculation

If you were a freelance consultant in 2020 and drove 2,500 miles for client meetings (Business), your calculation would be:

2,500 miles × $0.575 = $1,437.50

If you drove 500 miles for a qualified charitable organization:

500 miles × $0.14 = $70.00

Record Keeping Requirements

To satisfy IRS requirements, you should maintain a contemporaneous log of your mileage. This log should include the date of the trip, the destination, the business purpose, and the number of miles driven. Digital apps or physical logbooks are both acceptable forms of documentation.

function calculateMileage() { var miles = document.getElementById("milesDriven").value; var rate = document.getElementById("tripCategory").value; var resultDisplay = document.getElementById("mileageResult"); var detailsDisplay = document.getElementById("calculationDetails"); var container = document.getElementById("resultContainer"); // Validation if (miles === "" || isNaN(miles) || parseFloat(miles) < 0) { alert("Please enter a valid number of miles."); return; } var milesNum = parseFloat(miles); var rateNum = parseFloat(rate); // Calculation var totalDeduction = milesNum * rateNum; // Formatting result var formattedResult = totalDeduction.toLocaleString('en-US', { style: 'currency', currency: 'USD' }); // Displaying output resultDisplay.innerHTML = formattedResult; detailsDisplay.innerHTML = milesNum.toLocaleString() + " miles @ $" + rateNum.toFixed(3) + " per mile"; container.style.display = "block"; }

Leave a Comment