I am trying to re-write the following arg_min expression in Isabelle (2020) into the more convenient ARG_MIN syntax.
lemma "1 = arg_min (λ(x::int). x*x) ((<) 0)"
What I have so far is:
lemma "1 = (ARG_MIN ((x::int)*x). 0 < x)"
But it's giving me an "Inner syntax error".
I am just wondering what the correct way is to use ARG_MIN above.