Warning : “Set this option from the IDE menu instead” in coq...
Read MoreCreating Coq tactic: how to use a newly generated name?...
Read MoreWhy does Coq remove/clear my asserted lemmas in my proof after the base case is proved?...
Read MoreHow can I rewrite "+ 1" (plus one) to "S" (succ) in Coq?...
Read MoreWhat is the right proof term so that the ssreflect tutorial work with the exact: hAiB example?...
Read Morecoq: Tactic to replace true hypothesis in 'and' statement...
Read MoreTactic for existential hypothesis...
Read MoreRemove useless hypothesis from context...
Read MoreHow do you selectively simplify arguments to each time a function is called, without evaluating the ...
Read MoreCoq: goal is just a type (when using theorems with unnecessary arguments)...
Read MoreCoq: prove while is equivalent to repeat...
Read MoreCoq: How are the equality tacticts symmetry and transitivity defined?...
Read MoreProof of "less equal" transitive law in Coq...
Read MoreHow can I write a tactic which works both in a goal and a hypothesis?...
Read MoreHow to save the current goal / subgoal as an `assert` lemma...
Read MoreHow to Import Coq library HoTT in CoqIde...
Read MoreCoq/SSReflect: standard way to case on (x < y) + (x == y) + (y < x)?...
Read MoreCoq seemingly refuses to recognize a simple substitution of a propositional formula for a propositio...
Read MoreHow to replace a term with some property of the term?...
Read MoreHow to try a tactic in Ltac, but continue if it fails...
Read MoreWhat is the tactic that does nothing?...
Read MoreCoq: why do I need to manually unfold a value even though it has a `Hint Unfold` on it?...
Read MoreHow to prove Theorem plus_lt : forall n1 n2 m, n1 + n2 < m -> n1 < m /\ n2 < m...
Read MoreCan't figure out why re-write does not work...
Read MoreHow to prove `plus_le_compat_l : forall n m p, n <= m -> p + n <= p + m.`...
Read MoreWhat does the tactic destruct do in the proof below?...
Read MoreHow to tell Coq that it's okay to remove the `n`s?...
Read MoreHow to split equality of two lists?...
Read More