The command Tetrahedron[] seems to work fine for the 3-d case. But how can we get hyper-tetrahedron for 4-d case in terms of inequality? Take for example the points:
P[0]={0,0,0,0}; P[1]={1,0,0,0}; P[2]={0,1,0,0}; P[3]={0,0,1,0}; P[4]={0,0,0,1}; The hyper-tetrahedron formed by these 5 points can be found out manually to be x1>0 && x2>0 && x3>0 && x4>0 && x1+x2+x3+x4<1. But how can we get it easily for any set of 5 points in 4-d using Mathematica?
ConvexHull? Does the solution you received there not work here? $\endgroup$Tetrahedron[]. You're actually showing aSimplex[3]. If you want a regular one see here for the coordinates: en.wikipedia.org/wiki/5-cell $\endgroup$