Y by Danielzh
The figure below depicts a regular 7-gon inscribed in a unit circle.
![[asy]
import geometry;
unitsize(3cm);
draw(circle((0,0),1),linewidth(1.5));
for (int i = 0; i < 7; ++i) {
for (int j = 0; j < i; ++j) {
draw(dir(i * 360/7) -- dir(j * 360/7),linewidth(1.5));
}
}
for(int i = 0; i < 7; ++i) {
dot(dir(i * 360/7),5+black);
}
[/asy]](//latex.artofproblemsolving.com/9/2/e/92ecdecb16bc7556a4fcda2df737b19e1d80013e.png)
What is the sum of the 4th powers of the lengths of all 21 of its edges and diagonals?

![[asy]
import geometry;
unitsize(3cm);
draw(circle((0,0),1),linewidth(1.5));
for (int i = 0; i < 7; ++i) {
for (int j = 0; j < i; ++j) {
draw(dir(i * 360/7) -- dir(j * 360/7),linewidth(1.5));
}
}
for(int i = 0; i < 7; ++i) {
dot(dir(i * 360/7),5+black);
}
[/asy]](http://latex.artofproblemsolving.com/9/2/e/92ecdecb16bc7556a4fcda2df737b19e1d80013e.png)
What is the sum of the 4th powers of the lengths of all 21 of its edges and diagonals?

This post has been edited 1 time. Last edited by jlacosta, Nov 17, 2022, 6:24 PM
Reason: changed to official wording
Reason: changed to official wording