Problem set
Given $k\in\mathbb{N}$ (positive integer) I want to find the minimum sum over $k$ different pairs, where the pairs are of the form $\left(a_{i},b_{i}\right)\in\mathbb{N}\times\mathbb{N}$, meaning finding:
$$\min_{\left(a_{i},b_{i}\right)\in\mathbb{N}\times\mathbb{N}}\sum_{i=1}^{k}a_{i}+b_{i}$$ $$\forall i\neq j\,\,\,\,\,\left(a_{i},b_{i}\right)\neq\left(a_{j},b_{j}\right)$$
So for examples I have:
- $k=1 \Rightarrow$ the minimum sum is 2 since $(1,1)$ is the minimum pair possible.
- $k=2 \Rightarrow$ the minimum sum is 5: $(1,1), (1,2)$ is a possible solution.
- $k=4 \Rightarrow$ the minimum sum is 12: $(1,1), (1,2), (2,1), (2,2)$ is a possible solution.
Intuition
So my thoughts on this problem are that the best possible solution is to take always the pair whose sum is minimal, meaning, using greedy algorithm. I'm trying to prove it by greedy choice property or some induction on the choices but I'm not quite sure this is the right proof (e.g. mimic Kruskal proof of correctness).
Another try is to follow through with bijection $f:\mathbb{N}\times\mathbb{N}\rightarrow\mathbb{N}$, similar to the bijection here: Bijective Function from N to N x N and then impose the optimization problem into optimization over $\mathbb{N}$ which is much simpler (But I didn't know how to prove that minimization over one soltuon will give the same minimum over the other problem meaning: if $x$ is solution to one problem, $f(x)$ is a solution to the other.)
I would like to hear you thoughts on this.