Our galaxy is full of stars, the Sun being one of them. Around the Sun, they are distributed at a rate of roughly one per 250 cubic light years or so.[1] With their random distribution within space, this did make me wonder: if you could form a shape placing vertices on other stars, what is the largest convex shape you could form without any stars except the Sun? In other words, what is the
The algorithm to find the solar convex core (SCC) obviously requires a list of stars with their position S. I sourced the list from Wikipedia's List of nearest stars. We then create a list of "filtered" stars F, which initially contains every star in S. Every star a in F is then checked, for every star b in F, if star a is farther from the Sun than star b, a is removed from F. After the process, the vertices of solar convex core are the stars left in F. I have written an implementation of this algorithm in C, found in solarconvexcore.c.
The solar convex core is composed of nine stars:
Star | Distance | Constellation | X position | Y position | Z position |
---|---|---|---|---|---|
Proxima Centauri | 4.2465 ly | Centaurus | -1.6183 ly | -1.2386 ly | -3.7255 ly |
Barnard's Star | 5.9629 ly | Ophiuchus | -0.0568 ly | -5.9426 ly | +0.4879 ly |
Wolf 359 | 7.8558 ly | Leo | -7.4995 ly | +2.1332 ly | +0.9594 ly |
Lalande 21185 | 8.3044 ly | Ursa Major | -6.5166 ly | +1.6448 ly | +4.8777 ly |
Sirius | 8.7094 ly | Canis Major | -1.6444 ly | +8.2389 ly | -2.2958 ly |
Gliese 65 | 8.7240 ly | Cetus | +7.6135 ly | +3.5107 ly | -2.4119 ly |
Ross 248 | 10.3057 ly | Andromeda | +7.3684 ly | -0.5828 ly | +7.1815 ly |
Lacaille 9352 | 10.7241 ly | Piscis Austrinus | +8.6288 ly | -2.0769 ly | -6.0196 ly |
EZ Aquarii | 11.1090 ly | Aquarius | +10.0458 ly | -3.7282 ly | +2.9312 ly |
Here are some properties of these stars:
Sorting the stars 0–8 by distance, 0 being Proxima Centauri, raw edge data is as follows:
An approximation of this in Stellarium, only using HIP stars, shown in the above image is:
Using the same numbering system as above:
This allows us to build a 3D model of the polyhedron: