Method and source check
Last checked:
Source and implementation check; this is not professional review or advice.
Method
The calculator supports percentage of a number, percentage change from an original value, and finding what percentage one value is of another.
part = (percentage / 100) × whole
percentage change = ((new − original) / original) × 100
percentage = (part / whole) × 100
Variables and units
- part
- the amount being compared
- whole
- the reference amount
- original / new
- starting / ending values
Worked example
A change from 50 to 60 is ((60 − 50) / 50) × 100 = 20%.
Limitations
- The reference denominator must not be zero. Results are general arithmetic and do not include domain-specific tax, financial, medical, or statistical rules.