4

How should I go about proving P(x,y) $\forall x,y$ using complete induction? I couldn't find an example for this kind yet. (Some posts in here used normal induction, something like. a) P(0,0), b) for some x, y: $P(x,y) \rightarrow P(x+1,y)$ and c) for some x, y: $P(x,y) \rightarrow P(x,y+1)$. )

In my case, with P(x,y) alone I can not conclude P(x+1,y) or P(x, y+1). Thus, I wish to assume P(u,v) $\forall u,v < x, y$ in order to prove P(x,y).

Would the following scheme valid?

  1. prove P(0,0)
  2. prove P(0,y) $\forall y$
  3. prove P(x,0) $\forall x$
  4. assume P(u,y) $\forall u < x$ and $\forall y$, prove P(x,y)
  5. assume P(x,v) $\forall x$ and $\forall v < y$, prove P(x,y)

then conclude from 1-5 that P(x,y) $\forall x,y$.

Thanks

  • 1
    Welcome to Math Stack Exchange. Write your questions clearly. Please use MathJax . See https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference – nmasanta Jan 09 '20 at 17:36
  • 1
    Could you induct on e.g. $x+y$? We could better advise you if we knew $P$. – J.G. Jan 09 '20 at 18:09
  • No, because the variables represent different aspects in my problem domain. I would choose to separate them. – user2579326 Jan 09 '20 at 19:53

1 Answers1

3

You're overcomplicating this; notice that if we let $Q(x)=\forall y\,P(x,y)$, then proving $Q$ for all $x$ using strong induction is the same as showing that for every natural number $x$, we have that $\forall x' < x[Q(x')]$ implies $Q(x)$ (note that this wraps in the base case, since if $x=0$, the assumption is empty). Written out more fully, what you need to show $\forall x\,Q(x)$ by strong induction is:

Fix an arbitrary $x$ and $y$. Assume that $P(x',y')$ is true for every $x' < x$ and every $y'$. Prove $P(x,y)$.

This is exactly your step (4) - which encompasses step (2) as the case where $x=0$. In particular, step (4) alone suffices to show that $P(x,y)$ for every $x,y$.

Similarly, step (5) is strong induction applied to $R(y)=\forall x P(x,y)$, and also, by itself, suffices to show $P(x,y)$ for all $x,y$.

Milo Brandt
  • 60,888