From d44c3995b7f3db5faa74e0e4b8b75a86d9fe6d47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Mon, 11 May 2020 02:21:24 +0200 Subject: [PATCH] Fix induction axiom in example 2 --- examples/example-2.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/example-2.spec b/examples/example-2.spec index 064833b..00fd568 100644 --- a/examples/example-2.spec +++ b/examples/example-2.spec @@ -1,7 +1,7 @@ input: n -> integer. axiom: forall N1, N2, N3 (N1 > N2 and N3 > 0 -> N1 * N3 > N2 * N3). -axiom: p(0) and forall N (N >= 0 and p(N) -> p(N + 1)). +axiom: (p(0) and forall N (N >= 0 and p(N) -> p(N + 1))) -> (forall N p(N)). assume: n >= 0.