The induction tag has no wiki summary.
11
votes
5answers
276 views
Showing two different fibonacci functions are equivalent
I'm trying to learn exactly what it means to prove a program correct. I'm starting from scratch and getting hung up on the first steps/the introduction to the topic.
In this paper on total functional ...
4
votes
3answers
125 views
What's wrong with this inductive proof that mergesort is O(n)?
Comparison based sorting is big omega of nlog(n), so we know that mergesort can't be O(n). Nevertheless, I can't find the problem with the following proof:
Proposition P(n): For a list of length n, ...
3
votes
1answer
28 views
Termination of structural induction
I can't get Agda's termination checker to accept functions defined using structural induction.
I created the following as the, I think, simplest example exhibiting this problem.
The following ...
3
votes
2answers
153 views
Proof by Induction of Pseudo Code
I don't really understand how one uses proof by induction on psuedocode. It doesn't seem to work the same way as using it on mathematical equations.
I'm trying to count the number of integers that ...
1
vote
2answers
28 views
Inductive Specification: Top-down vs Botom-up vs Rules of Inference?
Please bear with me on this one. I am first going to describe an example from the book, and then ask my question at the end.
According to the text on Programming Language Paradigms:
Inductive ...
0
votes
3answers
51 views
Proof for number of internal nodes in a tree
I was reading about compressed tries and read the following:
a compressed trie is a tree which has L leaves and every internal node in the trie has at least 2 children.
Then the author wrote that a ...
0
votes
2answers
141 views
Proving a recurrence relation by induction [closed]
I have a test coming up, and I need some help with a practise question... Need to prove this by induction:
Reccurence relation: m(i) = m(i-1) + m(i - 3) + 1, i >= 3
Initial conditions: m(0) = 1, ...