In[1]:= Minimize[z, {x, y, z} \[Element] Tetrahedron[]]
Dur
ing evaluation of In[1]:= Minimize::natt: The minimum is not attained at any point satisfying the given constraints.
Out[1]= {-\[Infinity], {x -> Indeterminate, y -> Indeterminate,
z -> Indeterminate}}
Sure, all of the problems are caused by the same typo in the implicit region description (as seen in the region member function): 1/(2 Sqrt[6]) + z <= 0 should be >=0
During evaluation of In[1]:= Minimize::natt: The minimum is not attained at any point satisfying the given constraints.
Out[1]= {-\[Infinity], {x -> Indeterminate, y -> Indeterminate,
z -> Indeterminate}}
In[2]:= Minimize[z, {x, y, z} \[Element] Sphere[]]
Out[2]= {-1, {x -> 0, y -> 0, z -> -1}}
Out[7]= RegionMember[Octahedron[], {x, y, z}]
In[13]:= FindMinimum[{z, RegionMember[#, {x, y, z}]}, {x, y,
z}] & /@ {Tetrahedron[], Cube[], Dodecahedron[], Icosahedron[]}
During evaluation of In[13]:= FindMinimum::dinfeas: The dual is infeasible, which implies that the primal optimization is either unbounded or infeasible.
During evaluation of In[13]:= FindMinimum::ubnd: The problem is unbounded.
During evaluation of In[13]:= FindMinimum::dinfeas: The dual is infeasible, which implies that the primal optimization is either unbounded or infeasible.
During evaluation of In[13]:= FindMinimum::dinfeas: The dual is infeasible, which implies that the primal optimization is either unbounded or infeasible.
During evaluation of In[13]:= General::stop: Further output of FindMinimum::dinfeas will be suppressed during this calculation.
Out[13]= {{-\[Infinity], {x -> Indeterminate, y -> Indeterminate,
z -> Indeterminate}}, {-\[Infinity], {x -> Indeterminate,
y -> Indeterminate,
z -> Indeterminate}}, {-\[Infinity], {x -> Indeterminate,
y -> Indeterminate,
z -> Indeterminate}}, {-\[Infinity], {x -> Indeterminate,
y -> Indeterminate, z -> Indeterminate}}}
In[1]:= NMinValue[z, {x, y, z} [Element] Tetrahedron]
Out[1]= -0.204124
In[2]:= NMinValue[z, {x, y, z} \[Element] Tetrahedron[],
Method -> "SimulatedAnnealing"]
During evaluation of In[2]:= NMinValue::cvdiv: Failed to converge to a solution. The function may be unbounded.
Out[2]= -7.28737*10^104