将假设应用于变量

Applying hypotesis to a variable

假设我正在进行证明并且我有如下假设:

a : nat
b : nat
c : nat
H : somePred a b

和 somePred 的定义说:

Definition somePred (p:nat) (q:nat) : Prop := forall (x : nat), P(x, p, q).

如何将 H 应用到 c 并获得 P(c, a, b)

答案是:

specialize H with c.