HaltMTM and HaltTM 1 are undecidable


Lemma HaltTM_1_undec :
  undecidable (HaltTM 1).
Proof.
  intros d. exact d.
Qed.

Lemma HaltMTM_undec :
  undecidable HaltMTM.
Proof.
  apply (undecidability_from_reducibility HaltTM_1_undec).
  eapply nTM_to_MTM.
Qed.