I would like to aplly successively to reudction percentage to a price and I want to find the "global" reduction.
Apply a reduction of 19.6% and a 20% is different to apply a reduction of 39.6%.
So, i try to calculate the cumulative coefficient reduction $( 1 - 0.196) * ( 1 - 0.2 ) = 0.804 * 0.8 = 0.6432$
I thought it was a reduction of $(1 - 0.6432) * 100 = 35.68%$ ... but I think I do a mistake because
$(100 / 1.196) / 1.2 = 69.68$ And $100/1.3568 = 73.70$
So... what is a good way to calculate the global percentage of 2 successives reductions ?
My OK calculation is Price / (1.196 x 1.20) ... and my "removal percentage" is in fact 43.52% and not 35.38%. $1.196x1.20 = 1.4352$
– Raphaël Oct 08 '13 at 10:27