Bélády's Anomaly is the phenomenon in which increasing the number of page frames results in an increase in the number of page faults for certain memory access patterns. This phenomenon is commonly experienced when using the first-in first-out (FIFO) page replacement algorithm.
1, 2, 3, 4, 1, 2, 5, 1, 2, 3, 4, 5
The cache miss count (X) is 9
------------------------------------------------------------------------------------------------------------
| 1 | X || 2 | X || 3 | X || 4 | X || 1 | X || 2 | X || 5 | X || 1 | ✓ || 2 | ✓ || 3 | X || 4 | X || 5 | ✓ |
------------------------------------------------------------------------------------------------------------
The cache miss count (X) is 10
------------------------------------------------------------------------------------------------------------
| 1 | X || 2 | X || 3 | X || 4 | X || 1 | ✓ || 2 | ✓ || 5 | X || 1 | X || 2 | X || 3 | X || 4 | X || 5 | X |
------------------------------------------------------------------------------------------------------------