Idris-dev/test/proof001/test029.idr
Edwin Brady 43127b17a7 Move Fin, Vect and So from prelude to base
They can be imported from the modules Data.Fin, Data.Vect, and Data.So
respectively.

The general thinking here is that not every program is going to need
these, and they are often used especially by newcomers in place of
something more appropriate. Also, all of them are useful for teaching,
which means it is instructive for tutorials to introduce them and have
people implement them themselves.
2014-12-31 20:18:02 +00:00

43 lines
830 B
Idris

module simple
import Data.Vect
plus_comm : (n : Nat) -> (m : Nat) -> (n + m = m + n)
-- Base case
-- (Z + m = m + Z) <== plus_comm = -- broken by typecase check
plus_comm Z m =
rewrite ((m + Z = m) <== plusZeroRightNeutral) ==>
(Z + m = m) in Refl
-- Step case
-- (S k + m = m + S k) <== plus_comm =
plus_comm (S k) m =
rewrite ((k + m = m + k) <== plus_comm) in
rewrite ((S (m + k) = m + S k) <== plusSuccRightSucc) in
Refl
-- QED
append : Vect n a -> Vect m a -> Vect (m + n) a
append [] ys ?= ys
append (x :: xs) ys ?= x :: append xs ys
---------- Proofs ----------
simple.append_lemma_2 = proof {
intros;
compute;
rewrite (plusSuccRightSucc m n);
trivial;
}
simple.append_lemma_1 = proof {
intros;
compute;
rewrite sym (plusZeroRightNeutral m);
exact value;
}