In GeoGebra, is there a way to define a function of two variables which is the pointwise minimum of two functions.
Like h(x, y):= min(x² + y², x + y)
.
(The GeoGebra Min
command does something different.)
I could work around by means of the abs
function, whichis available, using min(a, b) = (a + b - |a - b|) / 2
, but this is not very convenient (actually I need to take the minimum of more than two functions).