<div style="font-family: Arial; font-size: 12px; color: rgb(0, 0, 0);">Hi, everyone. I need to prove that if <span>x ā‰ˆ y and y < z, then x < z.</span> But i can't use a rewrite, because x <span>ā‰ˆ</span> y is not the same as x <span>ā‰”</span> y. So, my question is: how can i prove it?</div><div style="font-family: Arial; font-size: 12px; color: rgb(0, 0, 0);"><br></div><div style="font-family: Arial; font-size: 12px; color: rgb(0, 0, 0);"><span style="font-family: Menlo, Consolas, Courier New, monospace;">open import Relation.Binary using (StrictTotalOrder)</span><div><br></div><div><span style="font-family: Menlo, Consolas, Courier New, monospace;">module Test</span></div><div><span style="font-family: Menlo, Consolas, Courier New, monospace;">    {a š“ā‚ š“ā‚‚} (strictTotalOrder : StrictTotalOrder a š“ā‚ š“ā‚‚) where</span></div><div><br></div><div><span style="font-family: Menlo, Consolas, Courier New, monospace;">open StrictTotalOrder strictTotalOrder renaming (Carrier to A)</span></div><div><br></div><div><span style="font-family: Menlo, Consolas, Courier New, monospace;">xā‰ˆyāˆ§y<zā‡’x<z : āˆ€ {x y z : A} ā†’ x ā‰ˆ y ā†’ y < z ā†’ x < z</span></div><span style="font-family: Menlo, Consolas, Courier New, monospace;">xā‰ˆyāˆ§y<zā‡’x<z xā‰ˆy x<z = ?</span><br></div>