Problem statement:
Assume there are two constants $\alpha, \beta \in \mathbb{R}$ and two functions $$f: A\times B \rightarrow \mathbb{R} \text{ and } g: A\times B \rightarrow \mathbb{R}$$ non-negative, continuous, and bounded, $A$ and $B$ non-empty, such that $\forall b \in B, \exists a\in A$ with $\alpha \leq f(a,b)$ and $\forall a \in A, \exists b \in B$ with $\beta \leq g(a,b)$, then there exists a pair $(a,b) \in A \times B$ such that $$\alpha \leq f(a,b) \text{ and } \beta \leq g(a,b).$$
My attempt:
The statement seems like it should be trivial, but I find myself making what seems like a circular argument.
Proof:
Let $b\in B$, then by assumption there is an $a_b \in A$ such that $\alpha \leq f(a_b, b)$. Now, with $a_b$, there exists a $b_{a_b} \in B$ such that $\beta \leq g(a_b, b_{a_b})$. If $b=b_{a_b}$, then $g(a_b, b) = g(a_b, b_{a_b})$ and $$\alpha \leq f(a_b, b) \text{ and } \beta \leq g(a_b, b)$$ and so $(a_b, b)$ is a pair that satisfies the statement.
Comment:
My issue is, can I just write "if $b = b_{a_b}$"? Nothing prevents this from happening and since I just need existence this argument seems valid...