In the elements of statistical learning book the lasso is written like this:
$\hat{\beta}^{lasso}=\operatorname{argmin}\left \{ \frac{1}{2}\sum_{i=1}^{N}(y_i-\beta_0-\sum_{j=1}^{p}x_{ij}\beta_j)^2 +\lambda \sum_{j=1}^{p}|\beta_j| \right \}$
Note that before the sum 1/2 is used. In some cases I see it as 1/(2N). Like e.g. this equation:
$\hat{\beta}^{lasso}=\operatorname{argmin}\left \{ \frac{1}{2N}\sum_{i=1}^{N}(y_i-\sum_{j=1}^{p}x_{ij}\beta_j)^2 +\lambda \sum_{j=1}^{p}|\beta_j| \right \}$
I don't understand what this would represent if I divide with the number of observations? I would very much appreciate any clarification.