This document provides an overview of AVL tree rotations, including left, right, left-right, and right-left rotations. It explains how each rotation type works by restructuring the tree nodes. Examples are given with diagrams to illustrate single and double rotations. Guidelines are presented for determining which rotation type is needed based on whether the tree is right or left heavy and the balance of subtrees. The document aims to clarify rotations, an area that can be confusing when implementing AVL trees.