Calculation Methodology

How the Stamp Duty Calculator works — formulas, rate schedules, concession logic, and data sources used to produce every result.

Updated for FY 2025-26
Last reviewed:April 2026
Engine version:V1
Financial year:2025-26

Calculation Pipeline Overview

The calculator uses a deterministic 9-step pipeline to compute stamp duty for any Australian state or territory. Each step produces intermediate values that feed into the next, culminating in the final duty payable. The pipeline is designed to handle every combination of state, property type, buyer intent, and eligibility status.

  1. 1Determine dutiable value — the higher of the purchase price or market value override
  2. 2Select rate schedule — choose between owner-occupier, investor, or standard bracket tables based on eligibility
  3. 3Calculate base duty — apply marginal bracket rates, flat-on-entire-value rates, or the NT quadratic formula
  4. 4Apply FHB concession — full exemption, sliding scale, stepped reduction, hard cliff, or income-tested scheme
  5. 5Apply other concessions — off-the-plan and pensioner concessions (placeholder in V1)
  6. 6Calculate net duty before surcharge — base duty minus all concessions, floored at zero
  7. 7Apply foreign buyer surcharge — calculated on the original dutiable value, not the net duty
  8. 8Calculate total duty — net duty plus foreign surcharge
  9. 9Apply minimum duty floor — enforce state-specific minimum (e.g. $20 in NSW) unless FHB exemption applies

The final output includes the dutiable value, base duty, FHB concession amount, foreign surcharge, total duty payable, effective duty rate, and a full line-item breakdown explaining each component.

Determining the Dutiable Value

Under Australian stamp duty legislation, duty is assessed on the dutiable value of the property, which is the higher of the purchase price and the market value as assessed by the relevant state revenue office. This rule exists to prevent duty avoidance through artificially low purchase prices.

dutiableValue = max(propertyValue, marketValueOverride)

In most standard transactions, the purchase price and market value are the same and the buyer enters a single figure. The calculator accepts an optional market value override for situations where the revenue office may assess a different value:

  • Related-party or family transfers where the sale price is below market value
  • Gifted property where there is no purchase price
  • Off-the-plan purchases where the land and construction components may be valued separately
  • Transactions where the revenue office has issued a market valuation notice

The dutiable value established in this step is used as the basis for all subsequent calculations, including the foreign surcharge in Step 7.

Rate Schedule Selection

Each state's configuration defines one or more bracket schedules. The calculator selects the applicable schedule based on the buyer's intent (owner-occupier vs investor) and eligibility status. The selection follows this decision tree:

  1. 1If the buyer is an owner-occupier and the state defines separate owner-occupier brackets, use the owner-occupier schedule (subject to state-specific value thresholds)
  2. 2If the buyer is an investor and the state defines separate investor brackets, use the investor schedule
  3. 3Otherwise, use the standard bracket schedule

Most states use a single rate schedule regardless of buyer intent. The exceptions are:

  • Victoria — PPR (principal place of residence) rates apply for owner-occupiers purchasing below $550,000. Above $550,000, the entire calculation reverts to general rates
  • Queensland — a “home concession” schedule with lower rates across all brackets applies for owner-occupiers
  • ACT — entirely separate rate tables for owner-occupiers and non-owner-occupiers at all price points
  • NSW, WA, SA, TAS, NT — same rates for all buyer types

How Marginal Bracket Duty Works

Stamp duty in Australia uses a marginal bracket system, similar in concept to income tax. The property's value is divided into portions, and each portion is taxed at a progressively higher rate. You do not pay the top rate on the entire purchase price — only on the amount that falls within each bracket.

Each bracket specifies a base amount (the cumulative duty from all lower brackets) plus a rate per $100 applied to the excess above the bracket's lower threshold:

excess = dutiableValue − (bracket.min − 1)
roundedExcess = ceil(excess / 100) × 100
duty = bracket.base + (roundedExcess / 100) × bracket.ratePerHundred

Where:

  • bracket.min = lower threshold of the applicable bracket
  • bracket.base = fixed duty accumulated from all lower brackets
  • bracket.ratePerHundred = marginal rate expressed as dollars per $100
  • roundedExcess = the excess amount rounded up to the nearest $100 (see Per $100 Rounding)

Worked example: $500,000 property in NSW

A $500,000 property falls into the $372,001–$1,240,000 bracket. Base duty = $11,152. Excess = $500,000 − $372,000 = $128,000. Rounded excess = $128,000 (already a multiple of 100). Marginal duty = ($128,000 / 100) × $4.50 = $5,760. Total duty = $11,152 + $5,760 = $16,912.

BracketBaseRate per $100
$0 – $17,000$0$1.25
$17,001 – $37,000$212$1.50
$37,001 – $99,000$512$1.75
$99,001 – $372,000$1,597$3.50
$372,001 – $1,240,000$11,152$4.50
$1,240,001 – $3,721,000$50,212$5.50

The table above shows NSW transfer duty brackets as an example. Each of the eight states and territories publishes its own schedule with different thresholds, base amounts, and rates.

Some brackets use special calculation modes instead of the standard marginal formula. A bracket marked as isFlat charges a fixed dollar amount regardless of value (e.g. Tasmania charges a flat $50 for properties under $3,000). A bracket marked as isFlatOnEntireValue applies its rate to the entire property value, not just the marginal excess (used in Victoria and ACT for high-value properties).

Per $100 Rounding Rule

Australian stamp duty rates are expressed as “per $100 or part thereof”. This means the excess amount within each bracket is rounded up to the nearest $100 before the marginal rate is applied. If the excess is $128,001, it rounds up to $128,100.

ceilTo100(amount) = Math.ceil(amount / 100) × 100

Key details:

  • Rounding is applied to the excess within each bracket, not to the total property value
  • All states and territories except the NT use per-$100 ceiling rounding
  • The NT uses a quadratic formula where rounding is not applicable
  • This rounding can produce slightly higher duty than a simple percentage calculation

Rounding impact

The per-$100 rounding can cause minor differences compared to revenue office calculators that may use different rounding conventions. In practice, the difference is at most a few dollars and is always conservative (rounding up slightly overstates duty rather than understating it).

NT Quadratic Formula

The Northern Territory is the only Australian jurisdiction that calculates stamp duty using a mathematical formula rather than bracket tables. For property values up to $525,000, duty is calculated using a quadratic equation that produces a smooth, continuously increasing duty curve:

D = (0.06571441 × V2) + (15 × V)

Where:

  • D = stamp duty in dollars
  • V = property value in thousands (e.g. $400,000 → V = 400)

Above $525,000, the NT switches to flat percentage rates applied to the entire property value:

Value RangeRate (on entire value)
$525,001 – $2,999,9994.95%
$3,000,000 – $4,999,9995.75%
$5,000,000+5.95%

Worked example: $400,000 property in NT

V = 400. D = (0.06571441 × 4002) + (15 × 400) = (0.06571441 × 160,000) + 6,000 = $10,514.31 + $6,000 = $16,514.31.

The NT also uniquely has no foreign purchaser surcharge, no land tax, and offers a $50,000 HomeGrown Territory grant in lieu of stamp duty concessions for eligible buyers.

First Home Buyer Concession Types

Every state and territory offers some form of stamp duty relief for first home buyers, but the mechanism varies dramatically. The calculator supports seven distinct concession types, each with its own formula and eligibility rules. The concession is applied in Step 4 of the pipeline after base duty has been calculated.

Sliding Scale (NSW, VIC, WA)

Below the full exemption threshold, duty is completely waived. Between the threshold and the ceiling, the concession reduces proportionally. Above the ceiling, no concession applies.

fraction = (value − exemptionThreshold) / slidingDivisor
reducedDuty = Math.round(baseDuty × fraction)
concession = baseDuty − reducedDuty
StateFull ExemptionCeilingDivisor
NSW (homes)$800,000$1,000,000$200,000
NSW (land)$350,000$450,000$100,000
VIC$600,000$750,000$150,000
WA (land)$350,000$450,000$100,000

VIC special rule: The sliding concession is always calculated using general (non-PPR) rate duty, even if the buyer is an owner-occupier eligible for the lower PPR rates. This is a deliberate design choice in the Victorian legislation.

Stepped Concession (QLD — Established Homes)

Queensland uses a lookup table of fixed dollar concessions that decrease in steps as the property value rises. The concession is subtracted from the home-concession-rate duty calculation.

  • Up to $504,999: flat $8,750 concession
  • $505,000 to $549,999: concession decreases to ~$7,175
  • $700,000 to $799,999: concession decreases from $17,350 to $1,735 in $10K bands
  • Above $800,000: no concession for established homes

Full Exemption — No Value Cap (QLD New Homes, SA New Homes)

Both Queensland (from 1 May 2025 for new homes, off-the-plan, and vacant land) and South Australia (from 13 February 2025 for new homes) offer 100% stamp duty relief with no property value cap for eligible first home buyers purchasing new dwellings. South Australia provides zero relief on established homes.

Hard Cliff (Tasmania)

Tasmania uses a binary cliff: purchases at or below $750,000 receive a full exemption ($0 duty), while purchases at $750,001 or above pay full standard duty with no partial relief. There is no sliding scale or gradual phase-out.

if value ≤ $750,000 → concession = 100% (duty = $0)
if value > $750,000 → concession = $0 (full standard duty)

This creates a significant cliff effect: a $750,000 purchase attracts $0 duty, while a $751,000 purchase attracts approximately $27,810 in duty.

First Home Owner Rate (WA)

Western Australia uses a unique concessional rate mechanism rather than a discount on standard duty. Below the exemption threshold ($500,000), duty is fully waived. Between $500,000 and the ceiling, a reduced rate per $100 is applied to the excess over $500,000:

concessionalDuty = Math.round((excess / 100) × concessionalRate)
concession = standardDuty − concessionalDuty
RegionRate per $100Ceiling
Metro / Peel$13.63$700,000
Regional$11.89$750,000

Home Buyer Concession Scheme (ACT)

The ACT's concession is income-tested and capped. Eligible buyers receive the lesser of the full base duty or a maximum concession of $35,238. The property must be valued at $1,020,000 or less, and the buyer's household income must fall below a threshold that increases with the number of dependent children:

DependantsIncome Threshold
0$250,000
1$254,600
2$259,200
3$263,800
4$268,400
5+$273,000+

The income threshold increases by $4,600 per additional dependent child. The ACT abolished the First Home Owner Grant on 1 July 2019.

No Duty Concession (NT)

The Northern Territory does not offer any first home buyer stamp duty concession. Instead, eligible buyers can apply for the $50,000 HomeGrown Territory grant, which is separate from the duty calculation and is not deducted from duty payable. The grant is reported as supplementary information only.

Foreign Buyer Surcharge

Most Australian states impose an additional stamp duty surcharge on foreign buyers (non-citizens and non-permanent residents) purchasing residential property. The surcharge is calculated as a flat percentage of the original dutiable value from Step 1:

foreignSurcharge = Math.round(dutiableValue × surchargeRate)

Critical calculation detail

The foreign surcharge is calculated on the dutiable value, not on the net duty after concessions. This means FHB concessions do not reduce the surcharge base. A first home buyer who is also a foreign buyer will receive their FHB concession on the standard duty but still pay the full foreign surcharge on the property's entire value.

StateSurcharge RateNotes
NSW9%Increased from 8% on 1 January 2025
VIC8%Spouse exemption available
QLD8%NZ citizens on SCV 444 visa exempt
WA7%Developer exemption available
SA7%Applies to residential & primary production
TAS8%Additional 1.5% on primary production
NTNoneNo foreign surcharge — unique among mainland states
ACTNoneUses annual land tax surcharge (0.75%) instead

The surcharge is added to the net duty (after FHB concessions) in Step 8 to produce the total duty payable. For a $750,000 property in NSW, the foreign surcharge alone would be $67,500 on top of the standard duty.

Off-the-Plan Concessions

Several states offer stamp duty concessions for off-the-plan (OTP) property purchases, though the mechanism varies. These concessions are designed to incentivise new housing supply. The calculator accepts “off the plan” as a property type; however, the Step 5 concession calculation is a placeholder in V1 and the OTP concession is not yet computed automatically.

The following outlines how each state's OTP concession works for reference:

Victoria — Value Reduction

The dutiable value is reduced by a percentage based on the development type before duty is calculated. Expires 21 October 2026.

  • Single lot subdivision: 45% deduction
  • Low-rise development: 60% deduction
  • High-rise development: 75% deduction

Western Australia — Percentage Reduction

Duty is reduced by a percentage based on construction stage and value. Expires 30 June 2026. Maximum concession capped at $50,000.

  • Pre-construction, value up to $750K: 100% duty waived
  • Pre-construction, value above $850K: 50% duty waived
  • Under construction: 75% or 37.5% depending on value

Tasmania — 50% Reduction

50% duty reduction for apartments and units valued at $750,000 or less. Expires 30 June 2026.

NSW — Deferral Only

NSW does not reduce the duty amount for off-the-plan purchases. Instead, buyers may be eligible to defer payment for up to 12–15 months from the date of contract exchange.

Owner-Occupier vs Investor Rates

While most states apply the same stamp duty rates regardless of whether the buyer is an owner-occupier or investor, three states offer materially different rate schedules for owner-occupiers. Understanding these differences is critical because the rate selection occurs in Step 2 and fundamentally changes the base duty calculation.

Victoria — PPR Cliff at $550,000

Victoria offers lower “principal place of residence” (PPR) rates for owner-occupiers, but only for properties valued at $550,000 or below. This creates a cliff effect: a property at $550,000 is calculated using the favourable PPR brackets (with lower rates in the $130K–$440K and $440K–$550K bands), while a property at $550,001 reverts to the general rate schedule for the entire calculation — not just the excess above $550K. This can result in a significant jump in duty for properties near the threshold.

Queensland — Home Concession Rates

Queensland provides a separate “home concession” rate schedule for owner-occupiers that applies at all price points. The concession schedule has lower rates across every bracket — for example, $1.00 per $100 in the lowest bracket compared to $1.50 per $100 under standard rates. Unlike Victoria, there is no value threshold or cliff effect.

ACT — Separate Rate Tables

The ACT maintains entirely separate rate tables for owner-occupiers and non-owner-occupiers. The owner-occupier schedule starts at just $0.28 per $100 in the lowest bracket (compared to $1.20 for non-owner-occupiers), producing significant savings at all price points. Both schedules converge at the top end, where properties above $1,455,000 attract a flat 4.54% rate on the entire value regardless of buyer type.

Minimum Duty Rules

Step 9 of the pipeline checks whether the calculated total duty meets the state's minimum duty threshold. If the total duty is greater than zero but less than the minimum, it is raised to the minimum amount.

if totalDuty > 0 and totalDuty < minimumDuty → totalDuty = minimumDuty

Minimum duty amounts by state:

  • NSW: $20 minimum duty
  • TAS: $50 minimum duty (built into the flat $50 first bracket)
  • All other states: $0 minimum (no floor)

The minimum duty does not override a genuine $0 result from a first home buyer exemption. If the FHB concession produces exactly $0 in duty and there is no foreign surcharge, the total remains $0 — the minimum floor is not applied. This ensures that FHB exemptions are fully honoured.

State-Specific Edge Cases

Several states have calculation rules that deviate from the standard marginal bracket model. These edge cases are handled by special flags in the bracket configuration and can produce counterintuitive results if not understood:

VIC Flat 5.5% ($960,000 – $2,000,000)

Properties valued between $960,001 and $2,000,000 in Victoria are charged a flat 5.5% on the entire property value, not just the marginal excess. This is marked as isFlatOnEntireValue: true in the bracket configuration. This can produce a higher effective rate than properties just above $2,000,000, which revert to marginal bracket calculation.

ACT Flat 4.54% (Above $1,455,000)

Properties above $1,455,000 in the ACT attract a flat 4.54% on the entire value. This uses the same isFlatOnEntireValue mechanism. Both owner-occupier and non-owner-occupier schedules converge at this threshold.

NSW Premium Property Duty (Above $3,721,000)

Properties valued above $3,721,000 in NSW attract “premium property” duty: a base of $186,667 plus $7.00 per $100 on the excess above $3,721,000. This is a significantly higher marginal rate (7.0%) than the standard top bracket (5.5%). The $3,721,000 threshold is indexed annually by CPI and applies to residential property only.

SA Commercial/Industrial Exemption

South Australia abolished stamp duty on commercial and industrial property transfers on 1 July 2018. The calculator's SA configuration restricts duty calculations to residential property only. This exemption is unique to South Australia among the states.

TAS Flat $50 Bracket

Tasmania charges a flat $50 for properties valued at $3,000 or below, using the isFlat: true bracket flag. This replaces the standard marginal calculation for very low-value transfers and also functions as the state's minimum duty.

Locked Assumptions & Limitations

The following assumptions are built into the calculation engine and applied consistently across all states. They cannot be changed by the user and are documented here for transparency:

AssumptionValue
Dutiable value basisHigher of purchase price or market value
Rate sourceState revenue office published schedules
Rounding methodPer $100 ceiling (all states except NT)
Financial year2025-26
Property type categoriesExisting home, new home, vacant land, off-the-plan
FHB concession applied toBase duty (not net duty after other concessions)
Foreign surcharge baseDutiable value (not net duty)
Minimum dutyApplied after all concessions and surcharges
Off-the-plan concessionsPlaceholder (V1) — not yet calculated
Pensioner concessionsNot modelled in V1
Stamp duty on LMINot modelled
FHOG (First Home Owner Grant)Reported as information only — not deducted from duty
WA region defaultMetro/Peel (unless regional explicitly selected)
ACT income testSelf-reported by user, not validated

Limitations

  • Does not model non-residential transactions (except SA commercial exemption acknowledgment)
  • Does not model transfer of business goodwill or intellectual property
  • Does not model partial interest transfers (e.g. purchasing a 50% share)
  • Off-the-plan and pensioner concessions are not yet computed in V1
  • Rate schedules may change during the financial year — always verify with your state revenue office before making financial decisions
  • Does not account for stamp duty on the mortgage (applicable in some states for older mortgages)

Data Sources & References

All rate schedules, concession rules, and surcharge rates are sourced from official state and territory revenue office publications. The calculator is updated when new rates take effect, typically at the start of each financial year or when mid-year legislative changes are enacted.