Start with:
a real-world question, e.g. ‘Do people who have higher education earn higher wages’
Method:
Many possible ways to describe the relation, economist so happen to love to model relation in a linear model (basically, $y = a + bx$)
If we are willing to model relationship as a linear model, we can write:
$$ wage_i = \beta_0 + \beta_1 educ_i +u_i $$

Where
⭐️ More generally
$$ y_i = \beta_0 + \beta_1 x_i + u_i $$
Why linear?
What linear doesn’t mean:
It doesn’t mean the world is actually linear.
Also parameters can be NON-linear & we are modeling the relationship in a linear equation
Example:
$log(wage_i) = \\beta_0 + \\beta_1 educ_i + \\beta_2 educ_i^2 + u_i$
where $log(wage_i), educ_i^2$ are clearly non linear
Assumptions (keep in mind for now)
Generalisation:
‼️ OLS is ONE framework, not “simple” vs. “multiple.”
with more variables just add more x
👉 Learn the simple regression logic first and then apply it to all OLS
When you take more advanced econometrics, everything will be done in linear algebra and the model will become
$$ y = \mathbf{X}\beta + \varepsilon $$
→ note that it looks almost identical to simple OLS