コラッツ予想がとけたらいいな2

自分の考察を書いていきます。

Entries from 2018-02-22 to 1 day

3x < 5x

Coq

Coqでやってみた。 Require Import Arith. (* ring_simplify *) Require Import Omega. (* omega *) Theorem t1 (x:nat) : 3*(x+1) < 5*(x+1). Proof. omega. Qed. Theorem t1' (x:nat) : 3*(x+1) < 5*(x+1). Proof. induction x. simpl. auto. (* View -> Q…