In strong Induction for the induction hypothesis you assume for all K, p(k) for k
If for example I am working with trees and not natural numbers can I still use this style of proof?
For example if I want my induction hypothesis to be that p(k) for k < n where n is a node in the tree and everything smaller than/bellow it (The nodes children,k) is assumed to be true.
In the proof would I have to define what the < operator does for two nodes?
Induction, and strong induction, are used to prove statements that are indexed by the natural numbers $\mathbb{N}=\{1,2,3,\ldots\}$. $k$ and $n$ need to be natural numbers, with a minimum value ($0$ or $1$ are the usual choices). The statements need not be natural numbers, for example, the first statement $p(1)$ could be that "node number 1 satisfies property x" and the second statement $p(2)$ could be that "nodes number 1 and 2 satisfy property x" etc.