How to calculate per second versus per minute billing?
December 15, 2005 4:04 PM
Subscribe
Telcos bill calls in varying minimum time increments (e.g. per second, per 6 seconds, per 30 seconds). Is there a formula to tell the difference this makes? Bonus points if it is on a web page or spreadsheet I can download.
I guess an even distribution of call lengths would need to be assumed, or perhaps it could take into account mean or median call duration?
posted by bystander to technology (8 comments total)
if they round up, as most probably do, and assuming the cost-per-minute is the same from one telco to the next:
take the per-minute charge and divide by 60 to get the per-second charge.
the number of seconds per call, modulo the billing increment, will be random. all call times within the increment are equally likely, so the amount you are overcharged is, in the limit of many calls, half of the increment * the number of calls * cost per second.
posted by sergeant sandwich at 4:14 PM on December 15, 2005