This document provides simple tests and tricks for determining if a number is divisible by certain integers between 2 and 11. It explains that to check divisibility by: - 2, look at the last digit - 3, sum the digits and check if divisible by 3 - 4, check if the last two digits are divisible by 4 - 5, check if the last digit is 0 or 5 - 6, check if divisible by both 2 and 3 - 8, check if the last three digits are divisible by 8 - 9, sum the digits and check if divisible by 9 - 10, check if it ends in 0 - 11, take the difference of sums of odd and even place digits.