Applied problems: discounts, taxes, simple interest

LVL: FREE

MODULE: Fractions, Proportions, and Percentages

[EXEC: MICRO_CORE]

✖️ 1. Calculating markups, markdowns, sales tax, and final sale prices

🏷️ Markups, Markdowns, Sales Tax, and Final Prices

  • Markup means adding a percentage to the original price.
  • Markdown (discount) means subtracting a percentage from the original price.
  • Sales tax is added after any discounts are applied.
  • To find the final price: apply discount first, then add tax to the discounted price.
  • Formula: Final Price = (Original Price × (1 - Discount Rate)) × (1 + Tax Rate).

A shirt costs 40 dollars. With a 25% discount and 8% tax: Discounted = 40 × 0.75 = 30 dollars. Final = 30 × 1.08 = 32.40 dollars.

💡 Discounts shrink the base, then tax grows the new base.

[EXEC: DEEP_COMPUTE]

1. Calculating markups, markdowns, sales tax, and final sale prices

Calculating Markups, Markdowns, Sales Tax, and Final Sale Prices

A markup increases an original price by a percentage, while a markdown (or discount) decreases it. Sales tax is a percentage added to a price after discounts are applied.

Intuition: Each percentage operation multiplies the current price by (1+r)(1 + r) for increases or (1r)(1 - r) for decreases, where rr is the rate as a decimal.

Core Rules:

  • Markup: New price = Original ×(1+markup rate)\times (1 + \text{markup rate})
  • Markdown: Sale price = Original ×(1discount rate)\times (1 - \text{discount rate})
  • Sales tax: Final price = Sale price ×(1+tax rate)\times (1 + \text{tax rate})
  • Apply discounts before tax; tax is computed on the discounted amount

Consequence: The order of operations matters: discounts reduce the base on which tax is calculated, lowering the final cost compared to taxing first.

Example: A 200 dollar item with 25% discount and 8% tax: Sale price = 200×0.75=150200 \times 0.75 = 150 dollars. Final = 150×1.08=162150 \times 1.08 = 162 dollars.

TASK_1[0 / 3]
LVL_2
MOD: TRANSLATE

A jacket has an original price of 50 dollars. It is on sale for a 20 percent markdown. What is the sale price in dollars?

DEEP_COMPUTE
ULTRA
[EXEC: MICRO_CORE]

✖️ 2. Successive percentage changes and why they are not strictly additive

🔄 Successive Percentage Changes Are NOT Additive

  • Applying two percentage changes in a row does not simply add the percentages.
  • Each percentage change applies to the new amount, not the original.
  • A +20% increase followed by a -20% decrease gives you less than you started with.
  • Formula: Final = Original × (1 + r₁) × (1 + r₂), where r₁ and r₂ are decimal rates.
  • The order of operations matters only if the base changes between steps.

Start with 100. Increase by 20%: 100 × 1.2 = 120. Decrease by 20%: 120 × 0.8 = 96. Net change is -4%, not 0%.

💡 Each percent eats or grows a different base—never just add them.

[EXEC: DEEP_COMPUTE]

2. Successive percentage changes and why they are not strictly additive

Successive Percentage Changes and Non-Additivity

Successive percentage changes apply multiple percentage operations sequentially, each acting on the result of the previous change. They are not additive because each percentage is computed on a different base.

Intuition: A 20% increase followed by a 20% decrease does not return to the original value because the decrease applies to the already-increased amount.

Core Rules:

  • Sequential multiplication: Apply (1+r1)(1+r2)(1 + r_1)(1 + r_2)\cdots to the original value
  • Net change r1+r2\neq r_1 + r_2: The combined effect is (1+r1)(1+r2)1(1 + r_1)(1 + r_2) - 1, not r1+r2r_1 + r_2
  • Order independence: Multiplication is commutative, so order does not affect the final result

Consequence: Successive changes compound multiplicatively, often yielding counterintuitive results compared to naive addition of percentages.

Example: Starting at 100: increase 20% gives 100×1.2=120100 \times 1.2 = 120. Then decrease 20%: 120×0.8=96120 \times 0.8 = 96, not 100. Net change: 4%-4\%, not 0%0\%.

TASK_1[0 / 3]
LVL_3
MOD: MULTI_STEP

A store item costs 200 dollars. Its price is increased by 10 percent, and then the new price is discounted by 10 percent during a sale. What is the final price in dollars?

DEEP_COMPUTE
ULTRA
[EXEC: MICRO_CORE]

✖️ 3. The simple interest formula and calculating total accumulated amount

💰 Simple Interest Formula

  • Simple interest is calculated only on the original principal, not on accumulated interest.
  • Formula: I=PRTI = PRT, where PP = principal, RR = annual rate (as a decimal), TT = time in years.
  • Total amount accumulated: A=P+I=P(1+RT)A = P + I = P(1 + RT).
  • Interest grows linearly over time (same amount added each period).
  • Use this for short-term loans or basic savings without compounding.

Principal = 500 dollars, rate = 6% per year, time = 3 years. Interest = 500 × 0.06 × 3 = 90 dollars. Total = 500 + 90 = 590 dollars.

💡 Simple interest = straight line growth, not exponential.

[EXEC: DEEP_COMPUTE]

3. The simple interest formula and calculating total accumulated amount

The Simple Interest Formula (I=PRTI = PRT) and Total Amount

Simple interest is interest calculated only on the principal amount PP, using the formula I=PRTI = PRT, where RR is the annual rate (as a decimal) and TT is time in years. The total amount AA accumulated is A=P+I=P(1+RT)A = P + I = P(1 + RT).

Intuition: Interest grows linearly with time; each year adds the same fixed amount PRPR to the total.

Core Rules:

  • Interest earned: I=P×R×TI = P \times R \times T
  • Total amount: A=P+PRT=P(1+RT)A = P + PRT = P(1 + RT)
  • Units consistency: RR must be annual rate; convert TT to years if given in months or days
  • No compounding: Interest does not earn interest; the base remains PP throughout

Consequence: Simple interest is used for short-term loans and straightforward calculations where compounding is negligible or contractually excluded.

Example: Principal 1000 dollars at 5% annual rate for 3 years: I=1000×0.05×3=150I = 1000 \times 0.05 \times 3 = 150 dollars. Total = 1000+150=11501000 + 150 = 1150 dollars.

TASK_1[0 / 3]
LVL_2
MOD: TRANSLATE

A student deposits 2000 dollars into a savings account that earns a 4% annual simple interest rate. Calculate the total interest earned after 5 years.

DEEP_COMPUTE
ULTRA
[EXEC: MICRO_CORE]

✖️ 4. Applications: Financial literacy, evaluating trading/investment volatility, and retail economics

🌍 Real-World Applications of Percentage Problems

  • Financial literacy: Understanding loan interest, credit card rates, and savings growth.
  • Investment volatility: Successive gains and losses show why recovering from a loss requires a larger percentage gain.
  • Retail economics: Stores use markups and discounts to manage inventory and profit margins.
  • Comparing percentage changes helps evaluate risk in stocks, currencies, and commodities.
  • Always calculate the actual dollar impact, not just the percentage, to make informed decisions.

A stock drops 50% from 100 to 50. To recover, it must gain 100% (not 50%) to return to 100.

💡 Percentages reveal patterns, but dollars pay the bills.

[EXEC: DEEP_COMPUTE]

4. Applications: Financial literacy, evaluating trading/investment volatility, and retail economics

Applications: Financial Literacy, Volatility, and Retail Economics

Financial literacy involves understanding how percentages model real-world transactions: loans, investments, pricing strategies, and tax obligations. Volatility in trading refers to successive percentage gains and losses, which compound multiplicatively and can erode value even if average changes appear neutral. Retail economics uses markups and markdowns to balance profit margins and consumer demand.

Intuition: Percentage-based models reveal hidden costs (e.g., tax on inflated prices) and risks (e.g., asymmetric recovery after losses).

Core Rules:

  • Loan evaluation: Compare total repayment A=P(1+RT)A = P(1 + RT) across offers
  • Volatility impact: Successive ±x%\pm x\% changes reduce principal due to non-additivity
  • Retail strategy: Markup must exceed markdown to maintain profit after discounts
  • Tax awareness: Final cost depends on whether tax applies pre- or post-discount

Consequence: Mastery of applied percentages enables informed financial decisions and recognition of misleading claims.

Example: An investment alternates +10%+10\% and 10%-10\% yearly. After two years: 100×1.1×0.9=99100 \times 1.1 \times 0.9 = 99 dollars, a net loss despite zero average change.

TASK_1[0 / 3]
LVL_3
MOD: MULTI_STEP

A trader buys a stock for $200$ dollars. The next day, the stock's value increases by $20$ percent. The following day, the new value decreases by $20$ percent. What is the final value of the stock in dollars?

DEEP_COMPUTE
ULTRA

AWAITING_CONFIRMATION

CONFIRM KNOWLEDGE ACQUISITION TO UPDATE SYSTEM ANALYTICS.