<div dir="ltr">I&#39;m not sure why you are leaving out cases. If you give all the appropriate cases lemma1 goes through with no problems. Here&#39;s my version (with slightly different definitions from yours):<div><br></div>

<div><div>lemma1 : âˆ€ x y xs â†’ x âˆˆ append y xs â†’ x â‰¡ y âˆ¨ x âˆˆ xs</div><div>lemma1 x .x [] here = inl refl</div><div>lemma1 x y [] (there p) = inr p</div><div>lemma1 x y (.x âˆ· xs) here = inr here</div><div>lemma1 x y (x₁ âˆ· xs) (there p) with lemma1 x y xs p</div>

<div>lemma1 x y (xâ‚‚ âˆ· xs) (there p) | inl x=y = inl x=y</div><div>lemma1 x y (xâ‚‚ âˆ· xs) (there p) | inr x∈xs = inr (there x∈xs)</div></div><div><br></div><div>The reason you get the &quot;I&#39;m not sure...&quot; error is that Agda gets confused when trying to figure out which patterns are missing. I get the same error for lemma0 though.</div>

<div><br></div><div>/ Ulf</div><div><br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Dec 18, 2013 at 6:52 PM, Andreas Abel <span dir="ltr">&lt;<a href="mailto:andreas.abel@ifi.lmu.de" target="_blank">andreas.abel@ifi.lmu.de</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">As always, self-contained code is appreciated to answer your question. --Andreas<div class="HOEnZb"><div class="h5"><br>


<br>
On 18.12.2013 12:23, Sergei Meshveliani wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Can anybody explain, please, why the below Â lemma1 Â is more difficult to<br>
prove to Agda than Â lemma0<br>
?<br>
<br>
append0 : List â„• â†’ List â„•<br>
append0 [] Â  Â  Â  = Â 0 âˆ· []<br>
append0 (x âˆ· xs) = Â x âˆ· (append0 xs)<br>
<br>
append : â„• â†’ List â„• â†’ List â„•<br>
append x [] Â  Â  Â  = Â x âˆ· []<br>
append x (y âˆ· xs) = Â y âˆ· (append x xs)<br>
<br>
open module Mem-â„• = Membership natSetoid using (_∈_)<br>
<br>
------------------------------<u></u>------------------------------<u></u>---------<br>
lemma0 : (x : â„•) â†’ (xs : List â„•) â†’ x âˆˆ (append0 xs) â†’ x â‰¡ 0 âŠŽ (x âˆˆ xs)<br>
<br>
lemma0 _ [] (here x=y) = Â inj₁ x=y<br>
...<br>
-- skip other patterns<br>
<br>
------------------------------<u></u>------------------------------<u></u>--------<br>
lemma1 : (x y : â„•) â†’ (xs : List â„•) â†’ x âˆˆ (append y xs) â†’<br>
  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  x â‰¡ y âŠŽ (x âˆˆ xs)<br>
lemma1 _ _ [] (here x=y) = Â inj₁ x=y<br>
------------------------------<u></u>------------------------------<u></u>--------<br>
<br>
lemma0 Â is proved in a natural way, and is type-checked.<br>
<br>
For Â lemma1,<br>
I expected of the checker to report of &quot;missing patterns&quot; -- which will<br>
mean that the first pattern is all right.<br>
<br>
And the Â  development Agda of November ~20 2013<br>
reports<br>
&quot;<br>
I&#39;m not sure if there should be a case for the constructor here,<br>
because I get stuck when trying to solve the following unification<br>
problems (inferred index â‰Ÿ expected index):<br>
  Â x₁ âˆ· xs₁ â‰Ÿ append y xs<br>
when checking the definition of lemma1<br>
&quot;.<br>
<br>
I fix the proof by writing a strange complicated code instead of the<br>
first pattern:<br>
<br>
  Â lemma1 x y [] x∈app-y-xs = Â inj₁ x=y<br>
  Â  Â where<br>
  Â  Â x=y : x â‰¡ y<br>
  Â  Â x=y Â with x∈app-y-xs<br>
  Â  Â ... | here eq = eq<br>
  Â  Â ... | there ()<br>
<br>
This looks strange: the checker is sure and &quot;is not sure&quot; in a pattern<br>
which is actually the same.<br>
I guess that for the first pattern, it is not sure that Â append y []<br>
is non-empty. But it follows only from normalization.<br>
<br>
Does this present a bug?<br>
<br>
Thanks,<br>
<br>
------<br>
Sergei<br>
<br>
<br>
______________________________<u></u>_________________<br>
Agda mailing list<br>
<a href="mailto:Agda@lists.chalmers.se" target="_blank">Agda@lists.chalmers.se</a><br>
<a href="https://lists.chalmers.se/mailman/listinfo/agda" target="_blank">https://lists.chalmers.se/<u></u>mailman/listinfo/agda</a><br>
<br>
</blockquote>
<br>
<br></div></div><span class="HOEnZb"><font color="#888888">
-- <br>
Andreas Abel Â &lt;&gt;&lt; Â  Â  Â Du bist der geliebte Mensch.<br>
<br>
Theoretical Computer Science, University of Munich<br>
Oettingenstr. 67, D-80538 Munich, GERMANY<br>
<br>
<a href="mailto:andreas.abel@ifi.lmu.de" target="_blank">andreas.abel@ifi.lmu.de</a><br>
<a href="http://www2.tcs.ifi.lmu.de/~abel/" target="_blank">http://www2.tcs.ifi.lmu.de/~<u></u>abel/</a></font></span><div class="HOEnZb"><div class="h5"><br>
______________________________<u></u>_________________<br>
Agda mailing list<br>
<a href="mailto:Agda@lists.chalmers.se" target="_blank">Agda@lists.chalmers.se</a><br>
<a href="https://lists.chalmers.se/mailman/listinfo/agda" target="_blank">https://lists.chalmers.se/<u></u>mailman/listinfo/agda</a><br>
</div></div></blockquote></div><br></div>