0
自然數條件如何減少術語減少配以鑑於假設</p> <pre><code>H0 : n <> 0 </code></pre> <p>在COQ
...
if match n with
| 0 => false
| S m' => n =? m'
end
then
...
在目標?
自然數條件如何減少術語減少配以鑑於假設</p> <pre><code>H0 : n <> 0 </code></pre> <p>在COQ
...
if match n with
| 0 => false
| S m' => n =? m'
end
then
...
在目標?
你也應該看看答案following question on destruct and case_eq
戰術destruct n as [|p]
將引領你在正確的方向。這將產生兩個目標,一個與
H0 : 0 <> 0
==========
if false then ...
一個與
H0 : S p <> 0
==========
if n =? p then ...
第一目標應該是可以解決的由case H0
。