RedBaron
The original assumption of breaking point is IMO correct, but I do believe that the math you laid out does not math-out.
The even breaking point of CHF1700 is used as a baseline of a ticket price per day and need to be adjusted for when given HTP expires. As at that point the customer will have to pay the full price. Therefore simple example for HTP1000 vs HTP2000 breaking point is:
- The price commuter would pay per day in average per year: 1700 / 365 = 4.65
- With HTP 2000 person would in sum pay per year: if(4.65 * 365 > 2000) { /* more than 2000, not important now */ } else { 1500 }
- This will make the person pay exactly
HTP_2000 = CHF 1'500.00
- With HTP 1000 person would in sum pay per year: if(4.65 * 365 > 1000) { 800 + ( 4.65 * 365 - 1000 ) } else { /* not important now */ }
- This will make the person pay exactly
HTP_1000 = CHF 1'497.25 (since we rounded the avg price per day above, the value is tiny bit different
Since HTP_1000 == HTP_2000, weâve proven that, indeed, the breaking point between HTP 1000 and HTP 2000 is exactly CHF 1'700.
If you still disagree, please do fork my sheet and adjust the formula so that the math works in a way you think is correct and we can discuss over that.
Furthermore: This even more proves that SBB should provide a way for users to +- gauge the best breaking points, as even people nerding out about this canât agree on the correct values and someone is making not optimal decisions based on their calculations.