Logo
Published on

Arithmetic pricing model

Authors
  • avatar
    Name
    Vu Hung
    Twitter

Problem Statement

An installer charges $400 for the first window and $100 for each additional window.

  • Write the total cost for 1, 2, 3, and 4 windows.
  • Find a formula for the total cost AnA_n for nn windows.
  • Find A15A_{15}.
  • If the budget is strictly less than $10,000, what is the maximum number of windows?

Hints

Model AnA_n as an arithmetic sequence with first term 400400 and difference 100100.


Solutions

An=400+(n1)100=100n+300.A_n=400+(n-1)100=100n+300.

So A15=1800A_{15}=1800. For the budget:

100n+300<10000    n<97,100n+300<10000 \implies n<97,

hence the maximum integer is n=96n=96.


Further Readings


Connect with me