Linear Regression with One Variable
Linear regression is one of the most famous way to describe your data and make predictions on it. As the name implies, linear regression solves a regression problem. In other words, the goal is to build a system that can take a vector as input and predict the value of a scalar
as its output. The output of linear regression is a linear function of the input.
Model representation
To establish notation for future use, we will use to denote the “input” variables (living area in this example), also called input features, and
to denote the “output” or target variable that we are trying to predict (price). A pair
is called a training example, and the dataset that we’ll be using to learn - a list of m training examples
- is called a training set. Note that the superscript
; in the notation is simply an index into the training set, and has nothing to do with exponentiation. We will also use
to denote the space of input values, and
to denote the space of output values. In this example,
.
To describe the supervised learning problem slightly more formally, our goal is, given a training set, to learn a function so that
is a “good” predictor for the corresponding value of
. For historical reasons, this function
is called a hypothesis. Seen pictorially, the process is therefore like this:

The Hypothesis Function
The hypothesis function must have a formula, like any other function in the world. That is:
Theta's ( in general) are the parameters of the function. Usually the theta subscript gets dropped and the hypothesis function is simply written as
In our humble hypothesis function there is only one variable, that is . For this reason our task is often called linear regression with one variable. Experts call it also univariate linear regression, where univariate means "one variable".
Cost Function
We can measure the accuracy of our hypothesis function by using a cost function. This takes an average difference (actually a fancier version of an average) of all the results of the hypothesis with inputs from and the actual output
.
This function is otherwise called the "Squared error function", or "Mean squared error". The mean is halved as a convenience for the computation of the gradient descent, as the derivative term of the square function will cancel out the 1/2 term.
Gradient Descent
So we have our hypothesis function and we have a way of measuring how well it fits into the data. Now we need to estimate the parameters in the hypothesis function. That's where gradient descent comes in.
Imagine that we graph our hypothesis function based on its fields and
(actually we are graphing the cost function as a function of the parameter estimates). We are not graphing
and
itself, but the parameter range of our hypothesis function and the cost resulting from selecting a particular set of parameters.
We put on the
axis and
on the
axis, with the cost function on the vertical
axis. The points on our graph will be the result of the cost function using our hypothesis with those specific theta parameters. The graph below depicts such a setup.

We will know that we have succeeded when our cost function is at the very bottom of the pits in our graph, i.e. when its value is the minimum. The red arrows show the minimum points in the graph.
The way we do this is by taking the derivative (the tangential line to a function) of our cost function. The slope of the tangent is the derivative at that point and it will give us a direction to move towards. We make steps down the cost function in the direction with the steepest descent. The size of each step is determined by the parameter , which is called the learning rate.
For example, the distance between each 'star' in the graph above represents a step determined by our parameter . A smaller
would result in a smaller step and a larger
results in a larger step. The direction in which the step is taken is determined by the partial derivative of
. Depending on where one starts on the graph, one could end up at different points. The image above shows us two different starting points that end up in two different places.
The gradient descent algorithm is:
repeat until convergence:
where represents the feature index number.
At each iteration , one should simultaneously update the parameters
. Updating a specific parameter prior to calculating another one on the
iteration would yield to a wrong implementation.
Gradient Descent For Linear Regression
When specifically applied to the case of linear regression, a new form of the gradient descent equation can be derived. We can substitute our actual cost function and our actual hypothesis function and modify the equation to :
repeat until convergence:
where is the size of the training set,
a constant that will be changing simultaneously with
and
,
are values of the given training set (data).
The point of all this is that if we start with a guess for our hypothesis and then repeatedly apply these gradient descent equations, our hypothesis will become more and more accurate.
So, this is simply gradient descent on the original cost function . This method looks at every example in the entire training set on every step, and is called batch gradient descent. Note that, while gradient descent can be susceptible to local minima in general, the optimization problem we have posed here for linear regression has only one global, and no other local, optima; thus gradient descent always converges (assuming the learning rate α is not too large) to the global minimum. Indeed,
is a convex quadratic function. Here is an example of gradient descent as it is run to minimize a quadratic function.

The ellipses shown above are the contours of a quadratic function. Also shown is the trajectory taken by gradient descent, which was initialized at (48,30). The in the figure (joined by straight lines) mark the successive values of
that gradient descent went through as it converged to its minimum.