I have some data that looks like:
| $x_i$ | $y_i$ |
|---|---|
| 10 | 20 |
| 11 | 21 |
| 12 | 25 |
| 1000 | 2001 |
The current method for forecasting an unseen $y'$ based on a known $x'$ is to estimate it as: $$\hat y' = \frac{1}{n} \sum_{i=1}^n \frac{y_i}{x_i} x'$$
That is, we take the arithmetic mean of the ratio of $y$ to $x$ and apply it to $x'$.
This "model" is specified somewhat informally as a procedure and I'd like to restate it in more formal terms, so that I can determine whether other models that I am considering are generalizations of this model or different models.
So, is there a model of the form $y = \alpha x + \varepsilon$ or maybe $y = \alpha x \varepsilon$ or something, where the maximum likelihood estimator is the arithmetic mean of $y_i/x_i$?