I understand how logical right shift works. Given an unsigned binary number $n = a_{n-1}a_{n-2}...a_0$, digit $a_k$ contributes $a_k\times 2^k$ to the value of the $n$. after applying a logical right shift, this digit will contribute $a^k\times 2^{k-1}$ and the result will be $\lfloor\dfrac{n}{2}\rfloor$ (rounding towards zero because we lose $2^0$).
I also understand how two's complement works, but have yet to understand how arithmetic right shift divides a negative number by $2$ and rounds down towards negative infinity (as mentioned in Wikipedia).