Purchased Life Annuity Rates Calculator

.pla-calculator-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 #e1e1e1; border-radius: 8px; background-color: #f9f9f9; color: #333; } .pla-calculator-container h2 { color: #2c3e50; margin-top: 0; border-bottom: 2px solid #3498db; padding-bottom: 10px; } .pla-input-group { margin-bottom: 15px; } .pla-input-group label { display: block; font-weight: bold; margin-bottom: 5px; } .pla-input-group input, .pla-input-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } .pla-btn { background-color: #3498db; color: white; padding: 12px 20px; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; width: 100%; } .pla-btn:hover { background-color: #2980b9; } .pla-results { margin-top: 25px; padding: 20px; background-color: #fff; border-radius: 4px; border-left: 5px solid #3498db; display: none; } .pla-results h3 { margin-top: 0; color: #2c3e50; } .pla-data-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; } .pla-data-row:last-child { border-bottom: none; } .pla-data-label { font-weight: 500; } .pla-data-value { font-weight: bold; color: #27ae60; } .pla-article { margin-top: 40px; line-height: 1.6; } .pla-article h3 { color: #2c3e50; } .pla-example { background: #f0f7fb; padding: 15px; border-radius: 4px; margin: 15px 0; }

Purchased Life Annuity (PLA) Rates Calculator

Calculation Results

Total Annual Gross Income:
Capital Element (Tax-Free):
Interest Element (Taxable):
Tax Payable:
Net Annual Income:

Understanding Purchased Life Annuities (PLA)

A Purchased Life Annuity (PLA) is a financial product typically bought with a lump sum of non-pension capital (such as savings, inheritance, or the proceeds from a house sale). Unlike a standard pension annuity, which is taxed as earned income in its entirety, a PLA receives highly favorable tax treatment.

The core advantage of a PLA is that the tax office recognizes that a portion of the payments you receive is simply the return of your original capital. This portion is known as the Capital Element and is completely tax-free. Only the remainder—the Interest Element—is subject to income tax.

Realistic Example:
If a 70-year-old invests 100,000 in a PLA with a gross rate of 7%, they receive 7,000 annually. Based on actuarial tables, the tax office might determine that 5,500 of that 7,000 is a return of capital. Therefore, the individual only pays income tax on the remaining 1,500.

Factors Affecting Your PLA Rate

  • Age: Generally, the older you are when you start the annuity, the higher the annual rate, as your remaining life expectancy is shorter.
  • Premium Amount: The larger the initial lump sum, the higher the absolute income payments.
  • Interest Rates: Providers base their rates on government bond yields and prevailing economic conditions.
  • Payment Options: Choosing "level" payments provides more initially, while "escalating" payments start lower but increase to protect against inflation.

How the Capital Element is Calculated

The Capital Element is fixed at the start of the contract. It is calculated by dividing the purchase price by a specific "life expectancy" figure provided by government actuarial tables. This tax-free amount remains constant for the life of the annuity, even if you live much longer than the projected expectancy.

function calculatePLA() { var purchasePrice = parseFloat(document.getElementById('purchasePrice').value); var age = parseFloat(document.getElementById('currentAge').value); var annuityRate = parseFloat(document.getElementById('annuityRate').value); var taxRate = parseFloat(document.getElementById('taxRate').value); if (isNaN(purchasePrice) || isNaN(age) || isNaN(annuityRate) || isNaN(taxRate)) { alert("Please enter valid numerical values in all fields."); return; } // 1. Calculate Gross Annual Income var grossIncome = purchasePrice * (annuityRate / 100); // 2. Estimate Capital Element // In actual practice, this uses HMRC/Actuarial tables. // A simplified standard formula for estimation is Purchase Price / (Expectancy at Age) // We use a simplified proxy for life expectancy: (95 – current age) var lifeExpectancy = 95 – age; if (lifeExpectancy grossIncome) { capitalElement = grossIncome * 0.85; // Defaulting to a high percentage if math skews } // 3. Interest Element var interestElement = grossIncome – capitalElement; // 4. Tax Calculation var taxPayable = interestElement * (taxRate / 100); // 5. Net Income var netIncome = grossIncome – taxPayable; // Display Results document.getElementById('resGrossIncome').innerText = formatCurrency(grossIncome); document.getElementById('resCapitalElement').innerText = formatCurrency(capitalElement); document.getElementById('resInterestElement').innerText = formatCurrency(interestElement); document.getElementById('resTaxPayable').innerText = formatCurrency(taxPayable); document.getElementById('resNetIncome').innerText = formatCurrency(netIncome); document.getElementById('plaResults').style.display = 'block'; } function formatCurrency(num) { return num.toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 }); }

Leave a Comment