Hacker News new | ask | show | jobs
by sheriff 5435 days ago
If the average is currently $X after N purchases, that means they have taken in $(N * X). When the next person pays $(X + 1), the total is now $((N * X) + (X + 1)) == $(((N + 1) * X) + 1). The new average is $(X + (1 / (N + 1))), which is guaranteed to be higher than the previous average, even if $(X + 1) < $10.
1 comments

Yes, the average after purchase (AAP) would be greater than the average before purchase (ABP). However, the AAP of $10 is greater than the AAP of $X+1.

The question is to what extent the $X+1 purchases depress greater purchases, as well as to what extent the $X+1 purchases increase smaller purchases.

The answer can only be determined by actually testing it.