How to generate 6 points on the perimeter of the circle with mathemathica? The points should not be equally distributed. Thank you very much
Asked
Active
Viewed 89 times
0
-
Mathematical experts can answer your question here: https://math.stackexchange.com/. – Muhammad Tariq Apr 11 '21 at 04:20
1 Answers
0
Is this what you are looking for?
Table[{t=RandomReal[{0,2Pi}];Cos[t],Sin[t]},{6}]
or are you trying to display those like this?
Graphics[Point[Table[{t=RandomReal[{0,2Pi}];Cos[t],Sin[t]},{6}]]]
or
points=Table[p=RandomReal[{0,2Pi}];{Cos[p],Sin[p]},{6}];
Print[points]
ParametricPlot[{Cos[phi],Sin[phi]},{phi,0,2Pi},
Epilog->{PointSize[Large],Map[Point,points]}]

Bill
- 3,664
- 1
- 12
- 9
-
Thank you. The second version looks like what i need. But they would have to be on a circle. I dont know how can I see the coordinates of those points – Mary Apr 10 '21 at 16:42