Inspect the Arithmetic — CCPC Tax Calculator

Version 1.0
Last updated: March 2026

Transparent arithmetic is the operating system of this calculator.

This document publishes the formulae, computational structure, and assumptions used to generate the outputs displayed on the CCPC calculator page.

No opinions. No hidden assumptions. Just arithmetic.

Purpose

This calculator estimates the combined tax burden for a Canadian Controlled Private Corporation (CCPC) and its shareholder(s) for the 2025 tax year. It models:

Definitions

Let:

Corporate Tax Arithmetic

Corporate tax is computed by the pure engine function calculateCorporateTax(taxableIncome, province) in corporate.engine.js, using corporate tax data from federal-corporate.json and provinces-corporate.json.

1. Corporate Taxable Income

Icorp = max(0, R − X)

Negative results (where expenses exceed revenue) are clipped to 0 for this calculator. Salaries or bonuses paid to shareholders are assumed to already be included in deductible business expenses (X). The calculator does not deduct salary again when computing corporate taxable income. Loss carryforwards, loss carrybacks, and passive investment income rules are out of scope.

2. Federal and Provincial Corporate Tax

The engine applies a simple two‑tier structure based on the small business deduction limit SBDLimit:

If Icorp ≤ SBDLimit:
  All income taxed at SBD rates.

Else:
  Income up to SBDLimit taxed at SBD rates.
  Income above SBDLimit taxed at general rates.

Federal side:

FedSBDIncome = min(Icorp, SBDLimit)
FedGenIncome = max(0, Icorp − SBDLimit)
Taxfed,corp = FedSBDIncome × rfed,SBD + FedGenIncome × rfed,gen

Provincial side (using province‑specific rates and SBD limit where applicable):

ProvSBDIncome = min(Icorp, SBDLimit)
ProvGenIncome = max(0, Icorp − SBDLimit)
Taxprov,corp = ProvSBDIncome × rprov,SBD + ProvGenIncome × rprov,gen

Total corporate tax and after‑tax cash:

Taxcorp = Taxfed,corp + Taxprov,corp
Cashafter = Icorp − Taxcorp

Distributions and Retained Earnings

3. Single‑Shareholder Scenario

For a single shareholder, the calculator treats the salary and dividends the shareholder receives as distributions out of the corporate after‑tax cash:

Distsingle = S + Delig + Dne
RetEarn = max(0, Cashafter − Distsingle)

If modeled distributions exceed after‑tax corporate cash, retained earnings are clipped to zero rather than displaying negative corporate equity. The corporate side does not enforce balance‑sheet constraints beyond this max‑zero clipping; over‑distributions relative to Cashafter are not flagged separately in this version.

4. Two‑Shareholder (Income Splitting) Scenario

When “income splitting” is enabled:

Distsplit = (S1 + Delig,1 + Dne,1) + (S2 + Delig,2 + Dne,2)
RetEarn = max(0, Cashafter − Distsplit)

Personal Tax Arithmetic

Personal tax for each shareholder is computed by the shared personal tax engine computePersonalTax() in tax.engine.js, using the same brackets, credits, CPP/EI logic, and dividend rules as the standalone Canada Personal Income Tax Calculator.

5. Mapping Corporate Inputs to Personal Inputs

For each shareholder, the CCPC bridge module computeCCPCTax() constructs a personal tax input object:

The personal engine then follows the methodology documented in the personal income tax methodology page: it computes taxable income, federal and provincial tax, dividend gross‑up and DTC, CPP/EI, and marginal/average rates.

6. Personal Outputs Used by the CCPC Calculator

From each personal tax run, the bridge reads:

The CCPC UI surfaces a simplified summary for each shareholder: total personal tax, total burden, and net take‑home pay.

Combined Burden and Effective Rate

7. Single‑Shareholder Combined View

For a single shareholder, the bridge computes:

Taxpers = output of personal engine (total income tax)
Taxcorp = total corporate tax (federal + provincial)
Burdentotal = Taxcorp + Taxpers
Rateeff = \[ \begin{cases} 0, & \text{if } R = 0 \\ \dfrac{Burden\_{total}}{R}, & \text{otherwise} \end{cases} \]
NetPersonalTakeHome = take‑home income from personal engine

The effective rate is expressed relative to gross corporate revenue (R), not corporate profit. This shows the combined corporate + personal tax burden relative to the total income generated by the business.

8. Two‑Shareholder Combined View

For two shareholders, the bridge computes:

Taxpers,1, Taxpers,2 = total income tax for each shareholder
Taxcorp = total corporate tax
Burdentotal = Taxcorp + Taxpers,1 + Taxpers,2
Rateeff = \[ \begin{cases} 0, & \text{if } R = 0 \\ \dfrac{Burden\_{total}}{R}, & \text{otherwise} \end{cases} \]
NetPersonalTakeHome = take‑home1 + take‑home2

The calculator displays corporate results (taxable income, tax, after‑tax cash, retained earnings), per‑shareholder results (personal tax and net take‑home), and the combined totals and effective rate.

Assumptions and Limitations

  1. Tax year is fixed at 2025; corporate and personal parameters are loaded from JSON data files for that year only.
  2. The calculator models active business income only; investment income, passive income rules, and refundable taxes on investment income are not included.
  3. No associated‑corporation rules or grind‑downs of the SBD limit are modeled; the small business limit is applied as‑is from the data files.
  4. Loss carryforwards, loss carrybacks, and integration with previous or future years are out of scope.
  5. RRSP, FHSA, and other registered‑account interactions for shareholders are not modeled; the CCPC calculator passes zero for those fields into the personal engine.
  6. Source deductions (withholding at source) and installments are not modeled; tax paid is treated as 0 and the focus is on the structural burden rather than balances owing or refunds.
  7. Shareholder province of residence is assumed to match the corporate province for personal tax purposes in this version.
  8. All amounts are in Canadian dollars, and bracket thresholds and rates are taken directly from the data files; any corrections to those data sources will flow through to this calculator.
  9. Rounding is applied at the display layer and in some bracket summaries; internal computations use full floating‑point precision.

Implementation Notes

If any discrepancy is identified between this documentation and the live CCPC calculator, the engine modules (corporate.engine.js, tax.engine.js, and ccpc.bridge.js) are the source of truth. This page will be updated to match them.