As with Caspar, however, I found the explanation from my tutorial (slightly edited) a little more understandable.
[LRU belongs] to a class of page replacement algorithms called stack algorithms [which] can never exhibit the Beladys anomaly.
The stack algorithm is an algorithm for which it can be shown that the set of pages in memory for N frames is always a subset of the set of pages that will be in memory with frames N + 1. [Therefore, an additional frame will never cause an additional page error.]
To replace LRU, the set of pages in memory will be the N most recent links. If the number of frames is increased, these N pages will still be the last, and they will still be in memory.
Silberschatz, A., Galvin, PB and Gagne, G. (2014). Operating System Concepts (9th ed.). Singapore: Wiley.
Asmodean
source share