Simple Selections
With no index, unsorted: Must essentially scan the whole relation; cost is M (#pages in R).
With an index on selection attribute: Use index to find qualifying data entries, then retrieve corresponding data records. (Hash index useful only for equality selections.)
(Size of R) * reduction factor.