Fix induction axiom in example 2

This commit is contained in:
Patrick Lühne 2020-05-11 02:21:24 +02:00
parent c787a5881b
commit d44c3995b7
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 1 additions and 1 deletions

View File

@ -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.