Zulip Chat Archive

Stream: general

Topic: well founded recursion is an axiom right?


Huỳnh Trần Khanh (Jun 29 2021 at 03:15):

hmm maybe I should stop posting in the new members stream because I'm not new anymore :smile: is well founded recursion an axiom or can it be expressed through structural induction/recursion?

Mario Carneiro (Jun 29 2021 at 03:57):

You can use #print to see what happens to definitions by well founded recursion yourself. There are no new axioms, it all comes down to the recursion principle for the carefully constructed inductive type docs#acc

Gihan Marasingha (Jun 29 2021 at 11:08):

It's all in the function well_founded.fix. That fix creates a function with the desired property is the lemma well_founded.fix_eq. Explaining this will be my next blog post on the topic.


Last updated: Dec 20 2023 at 11:08 UTC