If an item costs $x$, What is the price of an item after $5$ consecutive $10$% discounts?
A common step-by-step calculation will take time.
After $1$st $10$% discount: $\frac{90x}{100}$.
After $2$nd $10$% discount: $\frac{81x}{100}$.
After $3$rd $10$% discount: ... ...
what is the faster (or, fastest) method to solve this?
After the $n$-th discount the price of $x$ will be $0.9^n x$. Hence, for $n=5$ you will have $$0.9^5 x = 0.59049 x.$$
Note that at $n=0$ (i.e. before any discount) we have $$0.9^0 x=1 \cdot x =x.$$