<div dir="ltr"><div><div><div>Hello,<br><br></div>  I'm trying to follow along in the very good paper "Dependent Types At Work" written by Ana Bove and Peter Dybjer. I'm stuck at trying to prove "eq-succ", which is one of the exercises in Section 4.4. The closest I can make it is the following:<br><br><span style="font-family:courier new,monospace">{- proof of eq-succ -}<br>eq-succ : {n m : Nat} → n == m → succ n == succ m<br>eq-succ (refl m) = natrec {(\k → (k + m) == (plus k m))} (refl m) (\i h → ((succ i) + m) == (plus (succ i) m)) m<br><br></span></div><span style="font-family:courier new,monospace"><font face="arial,helvetica,sans-serif">But this does not typecheck</font>, I get the error:<br><br>Set !=< (succ i + m) == plus (succ i) m of type Setâ‚<br>when checking that the expression (succ i + m) == plus (succ i) m<br>has type (succ i + m) == plus (succ i) m<br><br></span></div><span style="font-family:courier new,monospace"><font face="arial,helvetica,sans-serif">I'm stuck -- I don't quite understand what I'm supposed to create an element of Set_1 that has a signature of </font></span><span style="font-family:courier new,monospace">(succ i + m) == plus (succ i) m, <span style="font-family:arial,helvetica,sans-serif">(if that's what I'm supposed to do). Any hints would be appreciated!</span><br></span><div><div><div><br></div><div>-andrew<br></div></div></div></div>