The document summarizes three simple classification methods: Naive Rule, Naive Bayes, and k-Nearest Neighbor (k-NN). It provides examples of using each method to predict fraudulent financial reports, delayed flights, and purchasing a riding mower. Naive Rule classifies everything as the most common class. Naive Bayes improves on this by using predictor variables. k-NN identifies the k closest training examples and classifies based on their majority class. The document discusses evaluating and choosing k for k-NN.