Types 向Agda证明我们';我们在谈论同一件事

Types 向Agda证明我们';我们在谈论同一件事,types,proof,agda,Types,Proof,Agda,我试图证明一个矛盾,但我遇到了一个问题,试图向Agda证明-wt inv返回的sigma域类型与前面证明中看到的相同。 我希望uniq类型的证明在这方面对我有所帮助,但我无法将它们组合在一起 我希望下面代码中的注释提供足够的上下文 -- given a type for (f ⟨⟩), we can derive that f is a function type -- and we can prove that the context yields σ ⟨⟩-wt-inv : ∀ {n m

我试图证明一个矛盾,但我遇到了一个问题,试图向Agda证明
-wt inv
返回的sigma域类型与前面证明中看到的相同。 我希望uniq类型的证明在这方面对我有所帮助,但我无法将它们组合在一起

我希望下面代码中的注释提供足够的上下文

-- given a type for (f ⟨⟩), we can derive that f is a function type
-- and we can prove that the context yields σ 
⟨⟩-wt-inv : ∀ {n m f τ} {K : Ktx n m} → K ⊢ (f ⟨⟩) ∶ τ → 
            ∃ λ σ → K Δ↝ σ × K ⊢ f ∶ (σ ⇒ τ)
⟨⟩-wt-inv (_⟨_⟩ {τ = σ} K⊢f∶σ⇒τ KΔ↝σ) = σ , (KΔ↝σ , K⊢f∶σ⇒τ)

uniq-type : ∀ {n m} {K : Ktx n m} {t τ τ'} → K ⊢ t ∶ τ → K ⊢ t ∶ τ' → τ ≡ τ'

-- excerpt from the typeof decision procedure
typeof : ∀ {n m} (K : Ktx n m) t → Dec (HasType K t)
typeof (Γ , Δ) (f ⟨⟩)   with typeof (Γ , Δ) f
typeof (Γ , Δ) (f ⟨⟩) | yes (σ ⇒ τ , _)     with (Δ-resolve (Γ , Δ) σ)
typeof (Γ , Δ) (f ⟨⟩) | yes (σ ⇒ τ , f∶φ) | no KΔ↝̸σ = 
  -- I'm trying to derive a contraction based on the fact that we've proven that
  -- K Δ↝̸ σ, but assuming a type for (f ⟨⟩) will yield an instance of K Δ↝ σ' (see ⟨⟩-wt-inv)
  -- the problem is that I don't know how to make agda see that σ' ≡ σ
  -- such that the following typechecks.
  -- (while agda will now complain that the σ in the wt-inv is not the
     same one as used in the KΔ↝̸σ instance, which is sensible)
  -- I think I have to use the uniq-type prove on f somewhere...
  no $ KΔ↝̸σ ∘ proj₁ ∘ proj₂ ⟨⟩-wt-inv ∘ proj₂
非常感谢#agda频道上的任何帮助

Saizan非常友好,为我指明了正确的方向:使用函数
subst
使用等式证明,在我必须获得KΔ实例的证明中,用σ“替换”σ↝σ与KΔ之差↝σ':

typeof (Γ , Δ) (f ⟨⟩) | yes (σ ⇒ τ , f∶φ) | no KΔ↝̸σ = 
  no $ KΔ↝̸σ ∘ helper
    where
      helper : (HasType (Γ , Δ) (f ⟨⟩)) → (Γ , Δ) Δ↝ σ
      helper p with (⟨⟩-wt-inv ∘ proj₂) p
      helper p | (σ' , KΔ↝σ' , f∶φ') = subst (λ s → (Γ , Δ) Δ↝ s) σ'≡σ KΔ↝σ' 
        where
          σ'≡σ : σ' ≡ σ
          σ'≡σ = ≡⇒dom $ uniq-type f∶φ' f∶φ