OCaml : List length and reverse
Recall our function for reversing a list:
let rec reverse l = match l with
| [ ] -> [ ]
| x::xs -> reverse xs @ [x]
Using induction show that
length (reverse l) = length l
Your proof may refer to the denition of length in the previous problem. Your proof must explicitly and clearly indicate the base case you prove, the inductive case you prove and what the inductive hypothesis provides in the proof.
Each step in your proof must be accompanied by a justication describing why that step could be taken.