I want to write $x$ is greater than $a$ or $b$, which ever is greater of the two. Should I write it like $x>\max(a,b)$.
Thank you.
I want to write $x$ is greater than $a$ or $b$, which ever is greater of the two. Should I write it like $x>\max(a,b)$.
Thank you.
$x>\max\{a,b\}$$x>\max{a,b}$. – Jan 26 '23 at 13:56