To calculate a value from a base amount and percent, divide the percent
by 100 to get a decimal, and multiply that by the base amount. This is
useful for calculating tips, taxes, commissions, etc.
For example, your restaurant bill is $25, and you want to leave a 15%
tip, which is extra money given to service workers. To calculate the
tip amount, do the following:
base = $25
percent = 15
decimal = 15 ÷ 100 = 0.15
tip = $25 × 0.15 = $3.75