Your proof must explicitly and clearly indicate the base


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.

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: Your proof must explicitly and clearly indicate the base
Reference No:- TGS02878100

Expected delivery within 24 Hours