<div dir="ltr">Ok, so I figured it out. Typical, struggle for awhile, give up and ask the question, figure it out shortly after.<div><br></div><div>In the pdf there is a note that an implicit argument needs to be given. I ignored it at the time because I didn&#39;t understand what was meant but then it clicked. So where I had:</div>
<div><br></div><div>eq-plus-rec n m = natrec (refl m) (\ k&#39; ih -&gt; {! !}) n</div><div><br></div><div>I needed to have:</div><div><br></div><div>eq-plus-rec n m = natrec {\k -&gt; (k + m) == (plus k m)} (refl m) (\ k&#39; ih -&gt; {! !}) n</div>
<div><br></div><div>When I do this and then type &#39;c-c c-l&#39;  a lot less text comes up. This is cause giving the necessary argument explicitly solves a bunch of metas. I didn&#39;t realize that&#39;s what they were but now I can complete the exercise. </div>
<div><br></div><div>Sorry for the noise.</div></div>