This document discusses relational algebra operations including select, project, union, set difference, cartesian product, and rename. It provides examples of how to write queries using these operations on sample relations like loan and borrower. The select operation filters tuples based on a predicate, project returns a relation with some attributes removed, union combines the tuples from two relations, set difference returns tuples in one relation not in another, cartesian product combines all tuples from two relations, and rename assigns a new name to the result of an expression. The goal is to help students understand relational algebra and how to write queries using its basic operations.