2

For weak induction, we are wanting to show that a discrete parameter n holds for some property P such that P(n) implies P(n+1).

For strong induction, we are wanting to show that a discrete parameter n holds for some property P such that (P(1) ^ P(2) ^ ... ^ P(n))implies P(n+1), i.e. stronger assumption set.

For structural induction, we are wanting to show that for a discrete parameter n holds such that: (∀n, n∈S)P(n)

Strong induction and weak inductions are instances of the more general structural induction form. The different inductive forms are equivalent in power any any proof written in one inductive form can be written in the other inductive forms.

Certain properties or recurrences need to be approached in certain ways using the listed inductive techniques. Some properties are much harder to prove with weak induction, but are more straight forward with strong induction or structural induction; however, with strong induction even if the recurrence isn't quite visible one could use the "Master Theorem", (Intro to Algo, Cormen [et al.]- 3rd edition), to solve for the recurrence, and then approach it with weak induction or structural induction.

Are certain types of properties, recurrences, or recursive definitions best suited for certain inductive techniques and does a problem space indicate which technique should be used?

  • The terms "weak induction", "strong induction", and "structural induction" are all usually vague terms, but you seem to be using them in specific ways. It would help if you included the definitions you are using. – Andrew Dudzik Sep 22 '14 at 22:22
  • @foxtrotAlpha: Regardless of how "well known proving techniques" these might be, if your unknowing of "the term's vagueness" doesn't permit you to give specific definitions, Readers will rightly consider the Question unclear as posed. – hardmath Sep 23 '14 at 01:43
  • @hardmath You're correct, I am quite unclear of "the term's vagueness" which is why I asked for an example of it. There are many syntactic differences in representing the induction techniques but the semantics of which are not vague in my opinion. I would prefer this topic be discussed with respect to knowing when to use which techniques, best ways to approach certain problems, do's and do not's, and any rules of thumb rather than discuss what the definitions of the proving techniques are. –  Sep 23 '14 at 01:55
  • 1
    @foxtrotAlpha: Out of respect, you claim to be the expert. You are asking the Question. Define your terms. – hardmath Sep 23 '14 at 01:57
  • @hardmath: Is this sufficient? –  Sep 26 '14 at 21:08
  • @foxtrotAlpha Use what works. Do lots of proofs. Try doing the same proof using each kind of induction and decide which seems most natural. Develop your own intuition about which kind fits best in any situation, and don't worry too much if other people criticize your choice of inductions, since as you say, they can be used to prove the same things. – genisage Sep 26 '14 at 21:19
  • 2
    I realize that's not a very satisfying answer, but any attempt to classify problems which are best solved by a particular method of induction will have almost too many exceptions to be useful. I can tell you that strong/weak is often the way to go when you have a "bottom" element and a "successor" function. And I usually start with strong and switch to weak if it turns out I only needed one previous element. – genisage Sep 26 '14 at 21:29
  • @foxtrotAlpha, fyi see also: transduction (Vapnik) and coinduction (Rutten). – alancalvitti Nov 15 '14 at 00:37

1 Answers1

1

This was from a slide I studied earlier this semester. Maybe it will help:

Normal(weak) induction is good for when you are shrinking the problem size by exactly one.

  • Peeling one Final Term off a sum
  • Making one weighing on a scale
  • Considering one more action on a string

Strong induction is good when you are shrinking the problem, but you can't be sure by how much.

  • Splitting a set into two smaller sets
  • Taking the remainder of one number divided by another

Weak Induction is a consequence of the Well Order Principle and a special case of Structural Induction as you mentioned before. Structural induction is appropriately used to build sets from recursive definitions, or given a recursive function a solution may have a unique closed form solution that can be shown using structural induction: see Binet's Formula for the nth Fibonacci Number.

But as a general thoughts: induction is used to show that all elements of an infinite set have a specified property, your inductive hypothesis may have more to do with your inductive technique rather than the problem space in general (although they do seem every related), and mathematical induction is is an instance of structural induction, not just over natural numbers, but of inductively-defined types. (For instance you can think of the natural numbers as an inductively-defined type and give a structural induction to show this is the case.) Most everything else will come after working 100 different problems of different types, being able produce these proofs quickly, and then given a problem you will make your own inductive reasoning about its property, or rather its property and your experience having worked so many problems will lend a hand in the inductive approach you will use. (I hope at least one sentence helped. I've been there.)