Inspect the Arithmetic — CCPC Income Tax Calculator

Version 1.1
Last verified: May 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

Ppre = max(0, R − X)
Icorp = max(0, Ppre − S − CPPemp)   (one shareholder; S = salary to that shareholder)
Icorp = max(0, Ppre − (S1 + S2) − (CPPemp,1 + CPPemp,2))   (two shareholders)

Negative results are clipped to 0. Salary and employer CPP are deductible corporate expenses and are modeled from the salary inputs (not from X). Employee CPP and EI remain on the personal side only. 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

Salary is already reflected in Icorp (and in Cashafter). Retained earnings compare after‑tax corporate cash only to dividends paid from post‑corporate‑tax funds:

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

If modeled dividends 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, the same rule applies using total dividends to both shareholders:

Distsplit = (Delig,1 + Dne,1) + (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 /calculators/canada-income-tax/js/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 on the Canada Personal Income Tax Calculator 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 corporate engine, canonical personal tax engine, and CCPC bridge (corporate.engine.js, /calculators/canada-income-tax/js/tax.engine.js, and ccpc.bridge.js) are the source of truth. This page will be updated to match them.

What This Calculator Does Not Include

Sources and References