Home
Places
Index
Miscellaneous

Solar convex core

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 solar convex core?

Algorithm

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.

Results

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
The edges of the polyhedron mapped out in the sky. Made with Stellarium.
Source

Here are some properties of these stars:

Edges

Sorting the stars 0–8 by distance, 0 being Proxima Centauri, raw edge data is as follows:

1,8;7,8;1,7;6,8;6,1;0,1;1,2;0,2;0,7;2,4;0,4;4,7;3,4;2,3;4,6;3,6;1,3;5,7;4,5;5,6;5,8

An approximation of this in Stellarium, only using HIP stars, shown in the above image is:

87937 111913 111913 114046 114046 87937 111913 117129 117129 87937 70890 87937 87937 53420 53420 70890 114046 70890 53420 32349 32349 70890 114046 32349 32349 54035 54035 53420 32349 117129 117129 54035 54035 87937 114046 7718 7718 32349 117129 7718 111913 7718

Faces

Using the same numbering system as above:

1,8,7;1,8,6;0,1,2;1,7,0;0,2,4;0,7,4;2,4,3;3,4,6;1,2,3;1,6,3;4,7,5;4,6,5;7,8,5;6,8,5

This allows us to build a 3D model of the polyhedron: