(atomic macro) generate subgoals using induction
Examples: induct, (induct t) -- induct according to a heuristically-chosen scheme, creating a new subgoal for each base and induction step (induct (append (reverse x) y)) -- as above, but choose an induction scheme based on the term (append (reverse x) y) rather than on the current goal General Form: (induct &optional term)
Induct as in the corresponding
Remark: As usual, abbreviations are allowed in the term.
Remark: