This answer provides a simple useful trick: unfold ">="
is the same as unfold ge
but does not require you to know that >=
is the notation for ge
.
Can you do the same for notations within a scope?
Require Import NArith.
Goal forall x, (x >= x)%N.
unfold ">=".
Here unfold ">="
does not do anything because it tries to unfold ge
, not N.ge
.
I have found the following solution:
Open Scope N.
unfold ">=".
But is there a syntax allowing to unfold this notation without first opening the scope?