This document summarizes Andrew Ng's lecture notes on supervised learning and linear regression. It begins with examples of supervised learning problems like predicting housing prices from living area size. It introduces key concepts like training examples, features, hypotheses, and cost functions. It then describes using linear regression to predict prices from area and bedrooms. Gradient descent and stochastic gradient descent are introduced as algorithms to minimize the cost function. Finally, it discusses an alternative approach using the normal equations to explicitly minimize the cost function without iteration.